Hi,
I am blocking certain characters in a get with the following code:
Can someone tell me how I would do this with a Combobox?
I am blocking certain characters in a get with the following code:
Function CheckName(oGet)
  Local cChar := RIGHT( ALLTRIM(oGet:cText()),1)
  IF cChar $ "!@#$%^&*+=[]\|:;,./?<>" .or. cChar=chr(34) .or. cChar=chr(39)
   oget:oget:backspace()
   oget:editupdate()
   MsgInfo("You cannot use "+cChar+" in this field","Invalid Charactor")
  endif
Return .t.Can someone tell me how I would do this with a Combobox?
Thanks,
Jeff Barnes
(FWH 16.11, xHarbour 1.2.3, Bcc730)
Jeff Barnes
(FWH 16.11, xHarbour 1.2.3, Bcc730)