lorry.lu
24th January 2006, 10:25
Hello, everybody, i want to develop a maintain session, could someone give me a example script for a maintain session. I also create new table, and want to store the data to another table with some calculations. And if somebody has the script for the session tfgld1105s000, it will be good. Thanks in advance.
mr_suleyman
24th January 2006, 10:55
I think that you don't know tools programming. Then firstly try to use create maintain session (In tools Generate session) by using your created table. It is very easy to use. When you create maintain session you will be gotten script and source.
Good Luck !
mark_h
24th January 2006, 15:51
me suleyman is correct - first generate a maintain session. Second you can use the wiki attached to the board to see what sections you can use. Then play with what is available. You can search on main.table.io and see what types of things you can do with it - like after.rewrite you could run calculations and update another table.
lorry.lu
26th January 2006, 09:25
Thanks a lot. Another problem, I want check the balance of the account. Before end.program, if balance = 0 then exit, else modify the records, until it is balanced. how tho achieve this function?
mr_suleyman
26th January 2006, 13:03
I couldn't imagine your demand. What do you want to do ? and What did you do ?
Good luck !
Hitesh Shah
26th January 2006, 17:08
try following code .
choice.end.program:
before.choice:
if balance <> 0 then
message("Trx not balanced , please make it balanced !!"
choice.again()
endif
lorry.lu
14th December 2007, 15:25
Thanks a lot