i have two forms, form1 and form2. my form1 contains a command button with click event "DO FORM form2".
in my form 2 i have an option group and 2 command buttons "OK" and "CANCEL".
i have this in my click event for "OK".
Thisform.Release() && release my form2
Thisform.Savemode() && method i created in form1
whenever i run my form, i get an error that it cannot find my method savemode.
my question is, shouldn't my form1 be "activated" after i release my second form? if i do another DO FORM form1 after Thisform.Release(), i'm having 2 instances of my form, that is i have to click "X" twice to close the form.
pls enlighten me on this matter..