Rich edit text field...

Started by
2 comments, last by Noods 20 years, 8 months ago
I have been trying to understand how to set up a rich edit text field for a couple of days now and I cant figure it out. The MSDN information on rich edit controls isnt much help. Can someone help a brother out in understanding rich edit controls? maybe a snippet of code? Thanks in advance!
Advertisement
MFC, Win32, VB, Java, C#???
win32, thanks@
#include<richedit.h>LoadLibrary("Riched20.dll"); //need this somewherehwndedit=CreateWindowEx(WS_EX_CLIENTEDGE, RICHEDIT_CLASS , "",WS_CHILD | WS_VISIBLE |ES_MULTILINE |ES_READONLY| WS_VSCROLL , 0, 0, 200, 300,	hwnd, (HMENU)1, hInst, NULL);



-keyboard

This topic is closed to new replies.

Advertisement