Jump to content

Just Got Back From Camp And Need Good Challenge


Archerzz

Recommended Posts

  • Replies 50
  • Created
  • Last Reply

Top Posters In This Topic

Aye, here's an example of a window with Hello World:

 

#include "prefix.h"

MyApp myApp;

class HelloWin : public WPMainWin {
public:
  HelloWin() { createWin("Hello"); }
  void paint(WPPaintDC &pdc) {
     WPRect clientArea = this;
     pdc.drawText(clientArea, "Hello, Windows++.",
        DT_SINGLELINE | DT_CENTER | DT_VCENTER);
  }
};

void MyApp::main()
{
  mainWin = new HelloWin;
  run();
}

 

Or, FOX.

 

Hell, just take your god danged pick:

 

http://www.freeprogrammingresources.com/guilib.html

Edited by Kamikaze_Badger

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

×
×
  • Create New...