On Visual Studio 6.0, after added active x control on dialog, maybe class wizzard will be failed.
Shown following message box.
I guess , this error caused by visual C++ parser can't parsing '<' and '>' character.
On Dialog box's header files, you can see following lines.
//{{AFX_INCLUDES()
#include <ninumedit.h>
//}}AFX_INCLUDES
Correct '<' and '>' character to ' " '.
//{{AFX_INCLUDES()
#include "NiNumedit.h"
//}}AFX_INCLUDES
No comments:
Post a Comment