-
I have a program that is minimized to the taskbar on start.
The program will only show info on the taskbar.
I do not want the user to be able to see the form, even
if they click on the app in the taskbar.
You cannot hide the form because it makes it disappear on the taskbar.
How can I do this?
-
Me.Hide
or
Me.Visible = False
?
-
No, this removes the application from the taskbar.
I do not want that. I still want it visible in the
taskbar, but always invisible to the user.
-
How about changing the Left and Top properties so the form is way off the screen (make sure it's out of the screen for all resolutions).