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




.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top