Why the cursor aspect is big for insert mode and thin for replace mode?
It's exactly the opposite of many other programs I'm testing
This problem together with "undo" problem creates a lot of discomfort for users
http://forums.fivetechsupport.com/viewt ... =3&t=21989
King Regards
Marco
Code: Select all
#include "fivewin.ch"
FUNCTION MAIN()
LOCAL oDlg
LOCAL oGet1 , cGet1 := SPACE(100)
LOCAL oGet2 , cGet2 := SPACE(100)
DEFINE DIALOG oDlg FROM 10 , 10 TO 400 , 700 PIXEL
@ 10 , 1 GET oGet1 VAR cGet1 OF oDlg SIZE 200 , 20 PIXEL
@ 40 , 1 GET oGet2 VAR cGet2 OF oDlg SIZE 200 , 20 PIXEL
ACTIVATE DIALOG oDLg CENTER
RETURN NIL