M
Martin M
Hello,
please take a look at this very simple program built up with VS2005 with the
form designer:
namespace TestHide
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
this.Hide ();
}
}
}
What happens when I click the button is that the form disappears but not
only from the desktop, also from the taskbar and also from the task manager |
applications tab. All that is left is that it is still in the task manager
processes tab. But there is no chance for me to get it back on the desktop.
I would have expected, that it would remain in the taskbar like when I click
the minimize button.
What did I do wrong or how can I achieve the desired function?
Thank you for any help
Martin
please take a look at this very simple program built up with VS2005 with the
form designer:
namespace TestHide
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
this.Hide ();
}
}
}
What happens when I click the button is that the form disappears but not
only from the desktop, also from the taskbar and also from the task manager |
applications tab. All that is left is that it is still in the task manager
processes tab. But there is no chance for me to get it back on the desktop.
I would have expected, that it would remain in the taskbar like when I click
the minimize button.
What did I do wrong or how can I achieve the desired function?
Thank you for any help
Martin