Shoutbox

Visual C++ Exspress Edition 2005 - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Skype & Technology (/forumdisplay.php?fid=9)
+---- Forum: Tech Talk (/forumdisplay.php?fid=17)
+----- Thread: Visual C++ Exspress Edition 2005 (/showthread.php?tid=72227)

Visual C++ Exspress Edition 2005 by color680 on 03-01-2007 at 05:56 PM

I am using Visual C++ Exspress Edition 2005 to make some .exe's and i made a window with a button on it. :)
When i click that button how can i make another window appear?

If there is a button in the program to do that i would preffer that want the code as i am just learning :)

Thanks,

One more thing in my school our pcs are networked how can i shutdow another pc remotely? I think its somthing like shutdown-s -name pc2453.

(Y)


RE: Visual C++ Exspress Edition 2005 by John Anderton on 03-01-2007 at 07:38 PM

quote:
Originally posted by color680
When i click that button how can i make another window appear?
Its something like Form.Show :)
RE: Visual C++ Exspress Edition 2005 by color680 on 03-01-2007 at 07:51 PM

sorry but i have no idea what you mean


RE: Visual C++ Exspress Edition 2005 by RaceProUK on 03-04-2007 at 12:52 PM

quote:
Originally posted by John Anderton
Its something like Form.Show
In VB6, yes. In C++, if you do it the native way, there's CreateWindow(Ex), DialogBox(Param), and CreateDialog(Param), making six functions total. I don't know about the MFC or the .NET ways though.