I made a SmartDevice
application that runs on startup and I want it to be hidden at first launch.
I've tried this.Hide()
, this.Visible = false
and ShowWindow(Handle, SW_HIDE)
in Form Load()
event and InitializeComponent()
with no luck.
Any help will be appreciated.