Additional StringGadget Flags
Posted: Wed Oct 19, 2005 12:48 pm
I would like to see two additional flags for the string gadget that would allow you to limit the number of characters that can be entered and a flag that would allow the text in the string gadget to be selected when the gadget receives focus.
Currently you have to use Windows API commands like:
They may have to be implemented as SetGadgetState() flags.
This would be very nice for cross platform applications.
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.