Window re-show

  • Thread starter Thread starter yxq
  • Start date Start date
Y

yxq

I use "Me.Hide" to hide a window, then show a icon in notify, in icon
double-click event, use "Me.Show", but the window only shown on Taskbar, but
not shown on desktop, i try

Me.Show
Me.Activate()
Me.Focus()

but it does not work, how to do?

Thanks
 
Hi YXQ,

can you add some more code,

How do you hide your form, the show should do it.
When your
me.WindowState =FormWindowState.Normal
or
me.WindowState =FormWindowState.Maximized

Of course,

Cor
 
* "yxq said:
I use "Me.Hide" to hide a window, then show a icon in notify, in icon
double-click event, use "Me.Show", but the window only shown on Taskbar, but
not shown on desktop, i try

Me.Show
Me.Activate()
Me.Focus()

but it does not work, how to do?

Does the form flash in the taskbar?
 
Back
Top