Hide from taskbar

  • Thread starter Thread starter Henrik
  • Start date Start date
From code or manually. You could drag the top of the taskbar into the side
of the screen and hide it that way.
 
Henrik


In the Form Load event, set this.Visible to false (or this.Hide()) and
ShowInTaskbar to false.

consider something like this:

/* ********************** */
private void AnotherForm_Load(object sender, System.EventArgs e) {
ShowInTaskbar = false;
this.Hide();
}


regards
roy fine
 
Thx.. that helped!
-----Original Message-----
Henrik


In the Form Load event, set this.Visible to false (or this.Hide()) and
ShowInTaskbar to false.

consider something like this:

/* ********************** */
private void AnotherForm_Load(object sender, System.EventArgs e) {
ShowInTaskbar = false;
this.Hide();
}


regards
roy fine




.
 
Back
Top