Menu

String error trying to write to LCD

vmatthews
2014-03-07
2014-03-07
  • vmatthews

    vmatthews - 2014-03-07

    using an LCD I tried to send this line..
    Print "C=Range *=Cancel"

    Gives: Error in Main at 1: Missing closing double quote
    and this line is 70~80 lines down in the code
    and if I go to the Icon view and come back to the Text view, it changes the line to:

    Print "C=Range = Print "C=Range * Cancel"

    Thanks for a great (cow) program !

     
  • Anobium

    Anobium - 2014-03-07

    As a workaround please change your code to

    Print "C=Range "
    print "*"
    print "=Cancel"
    
     
  • vmatthews

    vmatthews - 2014-03-07

    Hey, I got it right !!
    I just came up to put that I found a work around, and you came up with the same.
    I must be learning, right ?

    what I used:
    Print "C=Range *"
    Locate 1,9
    Print "=Cancel"
    .....
    Thanks for replying.
    vic

     
  • Anobium

    Anobium - 2014-03-07

    😃

     

Log in to post a comment.