I'm aware of a workaround (manually creating the richedit control using CreateWindowEx_), but is there a cleaner solution?
Code: Select all
OpenWindow(0,0,0,320,240,"")
EditorGadget(1, 0, 0, 320, 240)
SendMessage_(GadgetID(1), #EM_SETTEXTMODE, #TM_RICHTEXT, 0)
SetGadgetText(1, "")
Repeat : Until WaitWindowEvent() = #PB_Event_CloseWindow

