P Peter Rilling Feb 1, 2004 #2 From code or manually. You could drag the top of the taskbar into the side of the screen and hide it that way.
From code or manually. You could drag the top of the taskbar into the side of the screen and hide it that way.
R Roy Fine Feb 1, 2004 #4 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
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
G Guest Feb 1, 2004 #5 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 . Click to expand...
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 . Click to expand...