Page 1 of 1

Put a value in variable and field

Posted: Tue Oct 27, 2015 7:06 pm
by problème
Hello,
I wonder if it was possible to put " value " in variable and the field " field" instead of :
put value into variable
put value into the field "field"

Re: Put a value in variable and field

Posted: Tue Oct 27, 2015 7:11 pm
by Klaus
Bonjour problème,

no, that is not possible, you will need 2 lines for this!

HInt:
Do not use THE when accessing LC objects!
Bad: put xyz into THE field "a field"
Good: put xyz into fld "a field"

That is "reserved" for properties:
answer THE height of btn 1


Best

Klaus

Re: Put a value in variable and field

Posted: Tue Oct 27, 2015 11:26 pm
by problème
ok thanks for the answer