Can you please suggest me a way out for this.
One more thing..
When I have used READONLY and ACTION clauses together in a GET
and if I press TAB the GET is not focused
Do you feel the following change is required in TGET Class New() Method?
- Code: Select all Expand view
::nStyle = nOR( WS_CHILD, WS_VISIBLE,;
ES_AUTOHSCROLL,;
If( !lReadOnly .OR. bAction # nil, WS_TABSTOP, 0 ),; // CHANGED
If( lDesign, WS_CLIPSIBLINGS, 0 ),;
If( lSpinner, WS_VSCROLL, 0 ),;
If( lReadOnly, ES_READONLY, 0 ),;
If( lCenter, ES_CENTER, If( lRight, ES_RIGHT, ES_LEFT ) ) )
// If( lCenter .OR. lRight, ES_MULTILINE, 0 ),; Only needed for Win31
Thanks
- Ramesh Babu P
[/code]