Originally posted by aph Hi,
I have three (3) FORM (Developer/2000 6i)
Main
sub1
sub2
calling FORM sub1 from Main -Ok CALL_FORM('C:\abc\sub1.fmx');
calling FORM sub2 from sub1 -Not working CALL_FORM('C:\abc\sub2.fmx');
If I run program from main then it call sub1 not sub2 from sub1
If I run program from sub1 then it call sub2
Please state this more clearly.
You are running the main form and try to call form sub1. Do you get sub1? Can you call sub2 from the main?
Generally, if you can call one form from another (calling form - called form relationship), but are having a problem calling a different form from the same master or calling form, it is a syntax problem (spelling, typo, etc.).
Main (Calling Form) ---Press button
sub1 (Called Form by Main) ---This is ok
sub1 (Calling Form) ---Press button (remain on this Form)?
sub2 (Called Form by sub1) ---This is not (not executing)
Bookmarks