Advertisement
Guest User

Untitled

a guest
Mar 18th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. //1)
  2. LoadLibrary(TEXT("Riched32.dll"));
  3. HWND rConsoleField = CreateWindow(RICHEDIT_CLASS, "", WS_CHILD | WS_VISIBLE, 10, 370,
  4. 480, 100, window, NULL, instance, 0);
  5. //2)
  6. LoadLibrary(TEXT("Msftedit.dll"));
  7. HWND g_hRichEdit = CreateWindowEx(WS_EX_CLIENTEDGE,
  8. "RICHEDIT50W","My Rich Edit", WS_BORDER | WS_CHILD | WS_VISIBLE | ES_MULTILINE, 2, 2, 200, 300, window, 0, instance, NULL);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement