Hello.
I have a date retrived from an external file as 090811 (9th august 2011).
I need to convert to Date format.
I use ctod("090811") but I got a blank date.
What is wrong?.
Thank you.
FWH 11.11, Harbour 3.1 and Borland C++ 5.82
Hello.
I have a date retrived from an external file as 090811 (9th august 2011).
I need to convert to Date format.
I use ctod("090811") but I got a blank date.
What is wrong?.
Thank you.
c := "090811"
CToD( SubStr( c,1,2 ) + "/" + SubStr( c, 3,2 ) + "/" + SubStr( c, 5,2 ) )Thank you.
I thought it was a newer Harbour function to handle this.