How to switch forms in Visual Studio C# QUICK Beginner's Tutorial

preview_player
Показать описание
Learn a very important skill to go back and forth between forms will simple skills you can acquire from this video. I hope you guys enjoyed this Thursday's video! I will be looking for any comments on what to upload next Tuesday, Thank You :)
Рекомендации по теме
Комментарии
Автор

The only one guy from the whole internet enabled to make a proper button to switch. Nice dude.
Please make more tutorials about: checkBox, how to setup a login program, etc.

Gamer-krtc
Автор

Thank you very much!!! this is the best way of switching between forms! do not use the hide method to switch between forms, because when you press the corner red "x" button you do not close the application but instead only close the current form.

maxminnaar
Автор

Thankyou so much for these short video it really helped thanks a alot ☺

SHWETAJAIN-kxvd
Автор

👍 very straight to the point, and helpful👍
thanks

mouinmakary
Автор

This is really helpful. Thanks so much you're a legend. I searched stack overflow far and wide and not=ne of them helped. But this video did! Thank you!

truer
Автор

Thanks a ton.. i have been looking for something like this....

wickedblue
Автор

THANKS!!! I can finally build ittt without opening a new dataaaa

hnadymeray
Автор

Thank you very much Meneer! Simple and straight to the point - solved my problem. I was actually using the .Show() method to show the other window and it didn't work. Your .ShowDialog() method is what worked 😁

new_direction_net
Автор

this.Hide();
Form2 f2 = new Form2();
f2.ShowDialog();
this.Close();

Hope it helps

syedammarahmad
Автор

Nice video. Can you show how to draw on each form, while switching between them?

YigalBZ
Автор

I dont know if you will reply to any comments now but what do I do if I want to retain the memory that is in the second form ? Lets say my second form receives input from the first form but upon switching to it, the data that is supposed to be there is not showing up. How can I solve this?

turipipip
Автор

How would I keep the forms aligned when switching? Please respond, Lol I've been looking quite a few different places for this info. I need to switch to another form, but have it appear in the exact location of the last one, so that I can have different rooms and make my own Booklet Application.

Bladevampirek
Автор

this.Hide();
form2 f2 = new form2();
f2.ShowDialog();
this.Close();

ThreeUnrestrictedIdiotss
Автор

here is the text to copy

this.Hide();
form2 f2 = new form2();
f2.ShowDialog();
this.Close();

williedutoit
Автор

Hi I love that. As first hand in programming, I lack a lot of techniques. Can we be partners? I'm try to develop an application on school information management system for my department to take care of both internal and external examinations. Candidates to browse results on the net through a website. Can you help me out, it is big project. Love to her from you.

jibsbadung