open new winform with one icon in taskbar
-
I am developing window application, in which I am opening another winform on the click event of button. As we know that if we open a form in windows, we can see its icon in the task bar. But I am making An application in which I am not using MDI concept,and I dont want to see the icons of other forms, as it happens normally. How to solve this problem. I just wanna see only main icon in taskbar.
-
I am developing window application, in which I am opening another winform on the click event of button. As we know that if we open a form in windows, we can see its icon in the task bar. But I am making An application in which I am not using MDI concept,and I dont want to see the icons of other forms, as it happens normally. How to solve this problem. I just wanna see only main icon in taskbar.
-
I am developing window application, in which I am opening another winform on the click event of button. As we know that if we open a form in windows, we can see its icon in the task bar. But I am making An application in which I am not using MDI concept,and I dont want to see the icons of other forms, as it happens normally. How to solve this problem. I just wanna see only main icon in taskbar.
Form2 lobjNewForm = new Form2();
lobjNewForm.ShowInTaskbar = false;
lobjNewForm.Show();Manas Bhardwaj Please remember to rate helpful or unhelpful answers, it lets us and people reading the forums know if our answers are any good.