IsDate date format

  • Thread starter Thread starter Sebastian Santacroce
  • Start date Start date
S

Sebastian Santacroce

Hi,
I am trying to use IsDate where the application will use a
format of Month/day/year however on a system that uses
day/month/year then IsDate uses that system format setting
when evaluating if its a valid date. I want IsDate to use
Month/Day/Year when validating and so independently from
the system date format. How can I do this?

Thanks,

Seb
 
* "Sebastian Santacroce said:
I want IsDate to use
Month/Day/Year when validating and so independently from
the system date format.

Use 'Date.ParseExact' insead + a 'Try...Catch' exception handler.
 
Back
Top