me.hide problem

S

sachin

hello everyone,
i am new to pocketpc development would u please help me out with this

i have a form now i want to minimize my application without using the
minimize button on the control box
i tried ME.HIDE my application hides but i am not able to activate it
again since the applications does not appear in the list of running
programs
and i am not able to activate it again by either clicking on the
application icon..

i came across a thread saying that this might be because i dont have a
text for my application so i also tried


Me.Text = "SHOWFORM"
Me.Hide()

i also tried

Me.Text = "SHOWFORM"
Me.Visible=false

but still the application does not appear in the list of running
programs..


please help me out with this problem..
 
S

sachin

hello fabein,
i think u did not get my problem

my problem is........

i have a form and i want to minimize my application programatically
without using the minimize button(ie X button) in the controlbox(ie the
blue bar present at the top) so i tried
ME.HIDE.
but when i tried to activate my application again by clicking on the
application icon my application does not open again.neither the
application is present in the list of RUNNING PROGRAMS.

so i made anew application with just one button and wrote the following
code on its click event

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click

ME.TEXT="SHOWFORM"
ME.HIDE

End Sub

the application gets hidden but i am not able to open the application
again by clicking on the application icon nor the application is
visible in the list of RUNNING PROGRAMS
then how do iactivate it again .
is it a known Bug if yes please help me out with this.

thank you.
sachin
 
F

Fabien

Hi,

What is the value of the property FormBorderStyle of your Form ?

Fabien

sachin a écrit :
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top