Hi! I am creating a application for Windows Mobile using C#.
I am a new guy in Windows Mobile.
I am facing a problen.
I have 3forms.
on the form 2 I code on click of back menu.
the program is running without any error.
The form 1 is also displayed and form 2 get hide.
But when I close the form 1(Mean directly close from the title bar) it again show the form2.
Why don't the form2 is closing permanently with the frm2.close();
method. Is there any othe method for this?
Plz tell me.
I am a new guy in Windows Mobile.
I am facing a problen.
I have 3forms.
on the form 2 I code on click of back menu.
Code:
form1 frm=new form1; form2 frm2=new form; frm2.close(); frm1.show();
The form 1 is also displayed and form 2 get hide.
But when I close the form 1(Mean directly close from the title bar) it again show the form2.
Why don't the form2 is closing permanently with the frm2.close();
method. Is there any othe method for this?
Plz tell me.
Comment