Anyone tryed to assign an 0D in Visual Basic with the CFRONT OCX to a date field that is already filled with a value? i did try these statements : Cfront.assignfield(hTable,hRec,Fieldno,"") → Error Cfront.assignfield(hTable,hRec,Fieldno,“0D”) → Error Cfront.assignfield(hTable,hRec,Fieldno,“00/00/0000”) → Error Cfront.assignfield(hTable,hRec,Fieldno,) → Error I even corrupted a database with this statement (Error 19 in module 1265) Kurt Juvyns Navi Freak
Date is DBL_U32 data type. try: Cfront.assignfield(hTable,hRec,Fieldno,0);