Page 1 of 1
multiple text to table?
Posted: Thu Aug 28, 2008 12:20 pm
by smash
what is the script for asking multiple test boxes (info in text boxes) from one card, and being put into a column table on another page with a click of a button?
thank you
Posted: Thu Aug 28, 2008 5:11 pm
by Mark
Posted: Thu Aug 28, 2008 7:00 pm
by smash
LOL mark,
now i did try that LOL
but i cant work out the comand i need for this to happen.
this is not a choice combo box, but just a single button command.
so i want to simply click button, and many different text from different text buttons to go into a table.
i just keep getting error commands no matter what i try
cheers
Posted: Thu Aug 28, 2008 8:32 pm
by Mark
Smash,
You have to call the function. If you want it to run after a click of the mouse, you probably want to use the mouseUp handler. Put the following line in the mouseUp handler:
Code: Select all
put joinTable(fld 1,fld 2,fld 3, fld 88) into fld "Whatever" of cd "Some Card"
Of course, you will have to change the field references. You may need to refer to
field "Some field" of cd "Some Other Card" of stack "Some Stack"
or you can use field numbers if the current card contains these fields.
Best,
Mark
Posted: Thu Aug 28, 2008 8:39 pm
by smash
ok thanks mark
works a treat
thank you
Posted: Thu Aug 28, 2008 11:28 pm
by Mark
You're welcome :-)