Hide Winform on Program Load

  • Thread starter Thread starter kawai davis
  • Start date Start date
K

kawai davis

This is a super nub question, but how do I get my winform to not show up on
Alt+Tab? I am using a NotifyIcon and trying to just hide the form but it
always rears its ugly head in Alt+Tab.

Any ideas?
 
This is a super nub question, but how do I get my winform to not show up on
Alt+Tab? I am using a NotifyIcon and trying to just hide the form but it
always rears its ugly head in Alt+Tab.

Set ShowInTaskbar to False and FormBorderStyle to FixedToolWindow or
SizableToolWindow.
 
Back
Top