Howdy,
I was wondering if anyone could give me an idea of what I'm doing wrong. I guess I need to know what Form Event this code should be in.
Me.ShowInTaskbar = False
Me.Hide()
I want to hide a form when someone clicks the minimize button. I have a notifyMenu with the following code to allow for double click show and hide.
If Me.Visible = True Then
Me.ShowInTaskbar = False
Me.Visible = False
Me.Hide()
Else
Me.ShowInTaskbar = True
Me.Visible = True
Me.Show()
End If
I was wondering if anyone could give me an idea of what I'm doing wrong. I guess I need to know what Form Event this code should be in.
Me.ShowInTaskbar = False
Me.Hide()
I want to hide a form when someone clicks the minimize button. I have a notifyMenu with the following code to allow for double click show and hide.
If Me.Visible = True Then
Me.ShowInTaskbar = False
Me.Visible = False
Me.Hide()
Else
Me.ShowInTaskbar = True
Me.Visible = True
Me.Show()
End If