GUI App with Visual C++ Express Edition - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T06:25:51Zhttp://stackoverflow.com/feeds/question/338460http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/338460/gui-app-with-visual-c-express-edition2GUI App with Visual C++ Express Editiongrigy2008-12-03T19:42:27Z2008-12-04T16:47:22Z
<p>What tool (preferably free) can be used with Visual C++ 2008 Express Edition to create Win32 GUI applications? As you know the Express Edition does not include a GUI resource editor.</p>
http://stackoverflow.com/questions/338460/gui-app-with-visual-c-express-edition/338478#3384784Answer by DannySmurf for GUI App with Visual C++ Express EditionDannySmurf2008-12-03T19:50:12Z2008-12-03T19:50:12Z<p>It doesn't, but that doesn't stop you from creating a Win32 GUI app; you can still do this in code.</p>
<p>If that's unappealing for you, just do a Google search for "win32 Resource Editor." There are a few available. Any tool that creates .rc files can be compiled into your C++ project.</p>
http://stackoverflow.com/questions/338460/gui-app-with-visual-c-express-edition/339034#3390340Answer by ChrisN for GUI App with Visual C++ Express EditionChrisN2008-12-03T22:50:34Z2008-12-03T22:50:34Z<p>You can create Win32 GUI applications using the <a href="http://wtl.sourceforge.net/" rel="nofollow">WTL</a>, <a href="http://www.wxwidgets.org/" rel="nofollow">wxWidgets</a>, or <a href="http://trolltech.com/" rel="nofollow">Qt</a> libraries, among others. These have been discussed before in <a href="http://stackoverflow.com/questions/115045/good-c-gui-library-for-windows">this question</a> on StackOverflow. Note that, as I answered in <a href="http://stackoverflow.com/questions/316071/how-to-create-mfc-applications-with-vs-express08">this question</a>, the Express Edition does not include MFC, so that's not an option for you.</p>
<p>I hope that someone else will be able to recommend a good resource editor.</p>
http://stackoverflow.com/questions/338460/gui-app-with-visual-c-express-edition/339055#3390550Answer by Deinumite for GUI App with Visual C++ Express EditionDeinumite2008-12-03T23:01:30Z2008-12-03T23:01:30Z<p>Somewhat different from your answer, because it cannot be used with Visual C++, but check out wxDevC++....it is like visual studios but has the drag and drop window creation that i think you are looking for.</p>
http://stackoverflow.com/questions/338460/gui-app-with-visual-c-express-edition/341275#3412750Answer by serge for GUI App with Visual C++ Express Editionserge2008-12-04T16:47:22Z2008-12-04T16:47:22Z<p>You don't need any tool.
You can do everytihng with win32 api</p>