Problem to Show and Hidden app.

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi All,

in a simple SmarthPhone App:

this.Hide() event is called on menu click event

but when I click again on the application start icon none
of the events is called and i'm not able to show again the
idden application.

I have also tryed to put this.Show() in the Activate event Hnd
but it doesn't work!

Is there a workaround to this problem?

Thank you in advance.
 
On the pocket Pc platform if a program is already in memory it would not
launch it again.
You could write the some code in
static void Main()

and search if the window already exists and bring the window to front (use
FindWindow and BringToFront)
 
Back
Top