1) whats the difference between:
Me.Hide()
and
Me.visible=False
(same for me.show() and me.visible=true)...
2) both wont work in the form.Load event
I need to hide the form at startup (just show the tray icon)
(i used some trick on the activate event so that its triggered only
at startup)
If startup Then
startup = False
Me.Hide()
End If
how would you do it?
3) finaly I need the form to Hide (not close) when the close button of the form is clicked.
would greatly appreciate help
Me.Hide()
and
Me.visible=False
(same for me.show() and me.visible=true)...
2) both wont work in the form.Load event
I need to hide the form at startup (just show the tray icon)
(i used some trick on the activate event so that its triggered only
at startup)
If startup Then
startup = False
Me.Hide()
End If
how would you do it?
3) finaly I need the form to Hide (not close) when the close button of the form is clicked.
would greatly appreciate help