visual c++ and forms

Started by
2 comments, last by jagguy 17 years, 9 months ago
with vc++ express 2005 can you use form controls or MFC classes with either an editor or simply using the classes eg CComboxClass.
Advertisement
for a game screen you would use mfc classes and not the form controls on a screen.

This is the standard way right?

I just want a yes or no because i don't want to waste time on learning such stuff which .
I could be wrong, but I don't think the express version has the MFC libraries.

HTH,
Cambo_frog
For the love of god, please tell me that you've just omitted your error checking code for brevity, and you don't really assume that all those functions succeed.
Can't you just include the controls by programming and including the relevant directories with express c++?



#include <windows.h>
#ifdef __BORLANDC__
#pragma argsused
#endif

#include "resource.h"
//---------------------------------------------------------------------------
HWND hWnd;
HWND hWndComboBox;
HINSTANCE hInst;
LRESULT CALLBACK DlgProc(HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam);
//---------------------------------------------------------------------------

...
HWND CreateWindow( "COMBOBOX",
"Default String",
style,
x,
y,
width,
height,
parent,
menu,
instance,
Optional Parameter
);

This topic is closed to new replies.

Advertisement