Hello again,
I have a main form (Form 1), displaying a text file. A menu command calls a procedure in an external file, which processes the text file. Sometimes the procedure displays Form 2 to accept user input (DO Form2 WITH Params), appends a record and is RELEASEd (THISFORM.Release). No value is returned.
Debugger CallStack Window shows
Form2
actRead (Menu invoked procedure)
ON SELECTION BAR
main.prg
What should I do so that execution of the calling procedure (actRead)continues from the next line, which called Form 2? (Now the RELEASE command in Form 2 returns execution to READ EVENTS in Form 1.)
What if a button on Form 2 calls Form 3? After releasing them both, execution should continue from the calling procedure. How can I achieve this functionality?
Where can I read more on this topic?
VFP 9.0 SP2 on XP SP3
I have a main form (Form 1), displaying a text file. A menu command calls a procedure in an external file, which processes the text file. Sometimes the procedure displays Form 2 to accept user input (DO Form2 WITH Params), appends a record and is RELEASEd (THISFORM.Release). No value is returned.
Debugger CallStack Window shows
Form2
actRead (Menu invoked procedure)
ON SELECTION BAR
main.prg
What should I do so that execution of the calling procedure (actRead)continues from the next line, which called Form 2? (Now the RELEASE command in Form 2 returns execution to READ EVENTS in Form 1.)
What if a button on Form 2 calls Form 3? After releasing them both, execution should continue from the calling procedure. How can I achieve this functionality?
Where can I read more on this topic?
VFP 9.0 SP2 on XP SP3