Code: Select all
put line 3 column 2 of field "mytable" into field "mytextfield"
Thanks!
CB
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Code: Select all
put line 3 column 2 of field "mytable" into field "mytextfield"
Code: Select all
set the itemdelimiter to tab
put "fred" into line 3 item 4 of field "myTableField"
Code: Select all
set the itemdelimiter to tab
put field "freqField" *(81/80) into line 2 item 3 of field "intervalTableField"
Code: Select all
put field "freqField" *(81/80) into item 3 of line 2 in field "intervalTableField"
Code: Select all
on start
put empty into card fld "freqField"
end start
Code: Select all
on start
put empty into fld "freqField"
end start
Code: Select all
on load
put empty into field "freqField"
end load
Code: Select all
on opencard
put empty into field "freqField"
end opencard
Thanks Berndbn wrote:Mario,
sorry, I did not pay attention to that. If you want to clear a field you could do that "on opencard".
You would put:into the script of the card the field is on.Code: Select all
on opencard put empty into field "freqField" end opencard
Than everytime you open this card = go to this card the field will be reset.
Also, if this is the first card of your stack this card, will get an opencard message when you open the stack, thus clearing the field.
You might want to look up the message hierarchy in the user guide, the pdf that comes with Rev. Accessible from the Help Menu.
If you still have trouble with this please post.
regards
Bernd