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.
 
the little things vb does that screw u over in c++....it worked, thanks alot
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top