Form2 disappears when updating Form1
-
Hi All, I have to forms. In my seconde form i have a button that updates the first form. The problem is that when i click that button, the first form get updated , bud the second form desappears, then i have to click bring it back from the windows taskbar. How can i prevent that? i want that the second form remains active. Thanx.
-
Hi All, I have to forms. In my seconde form i have a button that updates the first form. The problem is that when i click that button, the first form get updated , bud the second form desappears, then i have to click bring it back from the windows taskbar. How can i prevent that? i want that the second form remains active. Thanx.
-
Hi All, I have to forms. In my seconde form i have a button that updates the first form. The problem is that when i click that button, the first form get updated , bud the second form desappears, then i have to click bring it back from the windows taskbar. How can i prevent that? i want that the second form remains active. Thanx.
How you are updating form1 from form2? Alternatively, you can show the second form as a modal window.
All C# applications should call Application.Quit(); in the beginning to avoid any .NET problems.- Unclyclopedia How to use google | Ask smart questions
-
Hi All, I have to forms. In my seconde form i have a button that updates the first form. The problem is that when i click that button, the first form get updated , bud the second form desappears, then i have to click bring it back from the windows taskbar. How can i prevent that? i want that the second form remains active. Thanx.
Listen, try creating userforms and load then on the main form (using delegates) or create child/parent form method You can check that out here in codeproject, i myself already checked it. Give it a try. Do you really need to use to forms??? for any important reason??? in child/parent forms you can also use as many forms as you wish. Good Luck :-D