Alright, so I'm working on making a game. Only learning console app stuff in my class currently but I'm trying to make this in Windows Forms, like an actual game.
So I open the program at my login screen, then you click login (can't figure out how to make pressing the enter key do the same thing) and it opens the next window.
currently using this to switch to the next window
private: System::Void button1_Click(System::Object^ sender, System::EventArgs^ e) {
introvideo ^ form = gcnew introvideo;
form->ShowDialog();
It works fine.. however, I don't want to have 5000 windows open while playing this game. I already hide them from the taskbar but I don't want more than 1 window open at a time.
Is there a way to make the program change from login screen to another but keep it all in the same window?
Like when you open World of Warcraft, you login > then character selection > then it loads the actual game world. It does all of that without having to open/change windows.
Can anyone help explain this? Or link a tutorial on this type of thing?
thanks

New Topic/Question
Reply


MultiQuote





|