While I am pressing ENTER on Combobox, Cursor do not move in next get field. If I press Tab bottom, then only Cursor move to next field.
How Can I use Enter, to move Cursor to next field. My code is as follows.
- Code: Select all Expand view
REDEFINE COMBOBOX oCbx VAR cCuTy ITEMS { "URBAN ", "RURAL ", "DEEPAM", "COMMON" } ;
ID 2 OF oDlg1 ;
ON CHANGE MsgBeep() ;
Valid If(cCuTy = oCbx:aItems[1], (oArea:AreaType := "U", .T.), If(cCuTy = oCbx:aItems[2], ;
(oArea:AreaType := "R", .T.), If(cCuTy = oCbx:aItems[3], ;
(oArea:AreaType := "D", .T.), (oArea:AreaType := "C", .T.)))) ;
Picture "@!" Color RGB(0, 0, 0), RGB(255, 255, 255)
With regads,
Arindam