Currently you have to use Windows API commands like:
Code: Select all
SendMessage_(GadgetID(#String_Gadget), #EM_LIMITTEXT, 15, 0)
SendMessage_(GadgetID(#String_Gadget), #EM_SETSEL, 0, -1)
This would be very nice for cross platform applications.
Code: Select all
SendMessage_(GadgetID(#String_Gadget), #EM_LIMITTEXT, 15, 0)
SendMessage_(GadgetID(#String_Gadget), #EM_SETSEL, 0, -1)
GetGadgetAttribute() and SetGadgetAttribute() would be perfect to do thisjb wrote:They may have to be implemented as SetGadgetState() flags.
This would be very nice for cross platform applications.