F
Franck Diastein
Hi, I'm soon finishing my first app, and I learned a lot 
I'm still having trouble with dates...
When I pull a date from SQL Server, I store it in a DateTime variable
and when I want to display it I do this : _date.ToString("dd/MM/yyyy")
and this works fine...
But how do I asign to my DateTime _date variable a string entered by
user aka 15/12/2004 ?
I tried some code floating around with no success...
So, what do I need to perform something like this:
_date = SOME_FUNCTION("15/12/2004");
TIA

I'm still having trouble with dates...
When I pull a date from SQL Server, I store it in a DateTime variable
and when I want to display it I do this : _date.ToString("dd/MM/yyyy")
and this works fine...
But how do I asign to my DateTime _date variable a string entered by
user aka 15/12/2004 ?
I tried some code floating around with no success...
So, what do I need to perform something like this:
_date = SOME_FUNCTION("15/12/2004");
TIA