very n00b question about multi forms

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

hi i kno in VB ud say, with Splash Screen Being the name of my second form

Dim frm as new Splash_Screen
frm.show

how do i do that in C++...ive tried this but it doesnt work

Splash_Screen * frm = new Splash_Screen;

frm->Show();
 
Splash_Screen * frm = new Splash_Screen();
frm->Show();

you forgot the round brackets after your constructor.

kind regards,
Bruno.
 
Back
Top