I want to get today date in dd/MM/yyyy format, but no matter what method I use, I still cant get the format I want.
txtDate.Text = Format(Now, "dd/MM/yyyy")
txtDate.Text = Now.ToString("dd/MM/yyyy")
txtDate.Text = Format(Today.Date, "dd/MM/yyyy")
I still get date in dd-MM-yyyy, example: 19-02-2004
If I move this application to other PC, it work fine. I just want to know which Windows setting affect the result?
txtDate.Text = Format(Now, "dd/MM/yyyy")
txtDate.Text = Now.ToString("dd/MM/yyyy")
txtDate.Text = Format(Today.Date, "dd/MM/yyyy")
I still get date in dd-MM-yyyy, example: 19-02-2004
If I move this application to other PC, it work fine. I just want to know which Windows setting affect the result?