GUI App with Visual C++ Express Edition - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T06:25:51Z http://stackoverflow.com/feeds/question/338460 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/338460/gui-app-with-visual-c-express-edition 2 GUI App with Visual C++ Express Edition grigy 2008-12-03T19:42:27Z 2008-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#338478 4 Answer by DannySmurf for GUI App with Visual C++ Express Edition DannySmurf 2008-12-03T19:50:12Z 2008-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#339034 0 Answer by ChrisN for GUI App with Visual C++ Express Edition ChrisN 2008-12-03T22:50:34Z 2008-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#339055 0 Answer by Deinumite for GUI App with Visual C++ Express Edition Deinumite 2008-12-03T23:01:30Z 2008-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#341275 0 Answer by serge for GUI App with Visual C++ Express Edition serge 2008-12-04T16:47:22Z 2008-12-04T16:47:22Z <p>You don't need any tool. You can do everytihng with win32 api</p>