Hi As we can double click the editline to highlight its content to blue so how can we automatically highlight content in a editline without double clicking on it ?is any system subroutine to support this feature
The normal way to do this is to trap the GOTFOCUS event for a control and then set the SELECTION property to select the text (we usually just set the value to 1 : @FM : 999).
If you want to automate this then you'll have to utilize promoted events.
Comments
If you want to automate this then you'll have to utilize promoted events.
Thank u