use this 2 command to get what you need
long session.id
session.zoomindex = 2
session.id = start.synchronized.child( "your session name" ,"index field" , "value","index field" , "value","index field" , "value","index field" , "value")
Note :
session.zoomindex is a global variable you do not need to declare it.
session.id is type long hold the session ID
Next time you want to call the session again you just need to call
synchronize.with.child(session.id)
Oh before for end your program kill all the session child. This a clean programing
choice.end.program:
before.choice:
stop.synchronized.children()
choice.abort.program:
before.choice:
stop.synchronized.children()
function stop.synchronized.children()
{
if session.id then
dummy.return = stop.synchronized.child(session.id)
endif
}
I hope this would help
|