Hi,
I would be very happy if some of you great programmers could help me whit this little problem ?
I have tryed to make a Rich Edit on the following way:
#include <RICHEDIT.h>
HWND RICH_EDIT;
#define ID_RICHEDIT 3
LoadLibrary("RichEd32.Dll"
RICH_EDIT = CreateWindow("RICHEDIT","",ES_AUTOHSCROLL |
ES_AUTOVSCROLL |
ES_DISABLENOSCROLL |
ES_MULTILINE |
ES_NOHIDESEL |
ES_SAVESEL |
ES_SELECTIONBAR |
ES_SUNKEN |
WS_BORDER |
WS_CHILD |
WS_CLIPCHILDREN |
WS_HSCROLL |
WS_VISIBLE |
WS_VSCROLL , 10,50,50,50,hwnd,(HMENU)ID_RICHEDIT,g_hInst,0);
When I compile my program It creates all my other controls but not the rich edit, and if I write "EDIT" insteadt of "RICHEDIT", then there are showed an EDIT box ???
How Can I get a RICH EDIT ???
Please Help ME!!!
GOOOD
I would be very happy if some of you great programmers could help me whit this little problem ?
I have tryed to make a Rich Edit on the following way:
#include <RICHEDIT.h>
HWND RICH_EDIT;
#define ID_RICHEDIT 3
LoadLibrary("RichEd32.Dll"
RICH_EDIT = CreateWindow("RICHEDIT","",ES_AUTOHSCROLL |
ES_AUTOVSCROLL |
ES_DISABLENOSCROLL |
ES_MULTILINE |
ES_NOHIDESEL |
ES_SAVESEL |
ES_SELECTIONBAR |
ES_SUNKEN |
WS_BORDER |
WS_CHILD |
WS_CLIPCHILDREN |
WS_HSCROLL |
WS_VISIBLE |
WS_VSCROLL , 10,50,50,50,hwnd,(HMENU)ID_RICHEDIT,g_hInst,0);
When I compile my program It creates all my other controls but not the rich edit, and if I write "EDIT" insteadt of "RICHEDIT", then there are showed an EDIT box ???
How Can I get a RICH EDIT ???
Please Help ME!!!
GOOOD