How to check if form is hide

  • Thread starter Thread starter Li Pang
  • Start date Start date
L

Li Pang

When a form is hide, I'd like to check if it's in hide
mode. How?

Thanks
 
Hi Li,

That is the easiest today

I think you get a lot of answers

\\\
if me.visible = false
///
And when you want in minimized state but that was not your queston
\\\
If Me.WindowState = FormWindowState.Minimized Then
///
Cor

" When a form is hide, I'd like to check if it's in hide
 
* "Li Pang said:
When a form is hide, I'd like to check if it's in hide
mode. How?

\\\
If Not Me.Visible Then
...
End If
///
 

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

Back
Top