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"
Put a value in variable and field
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Re: Put a value in variable and field
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
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
ok thanks for the answer