Changing Default Weekday settings

  • Thread starter Thread starter A P
  • Start date Start date
A

A P

By default, Weekday setting starts on sunday which is 1. How can I change to
use Weekday to start on monday?

Me
 
For what application?

--
Regards,

Dave Patrick ....Please no email replies - reply in newsgroup.
Microsoft Certified Professional
Microsoft MVP [Windows]
http://www.microsoft.com/protect

:
| By default, Weekday setting starts on sunday which is 1. How can I change
to
| use Weekday to start on monday?
|
| Me
|
|
 
Our customer uses that format. They categorize monday as day 1, tues as day
2, and so on... Any suggestion?
 
There's no global setting for the operating system. This probably needs to
be setup at the application level.

--
Regards,

Dave Patrick ....Please no email replies - reply in newsgroup.
Microsoft Certified Professional
Microsoft MVP [Windows]
http://www.microsoft.com/protect

:
| Our customer uses that format. They categorize monday as day 1, tues as
day
| 2, and so on... Any suggestion?
 
Function GetSpecialWeekDay(int1)
If CInt(int1) > 1 Then
GetSpecialWeekDay = int1 - 1
Else
GetSpecialWeekDay = 7
End If
End Function
 
By default, Weekday setting starts on sunday which is 1. How can I change to
use Weekday to start on monday?

Me
Set iFirstDayOfWeek to 0 using tip 3452 » Windows 2000 regional settings in the registry.
HKEY_CURRENT_USER\Control Panel\International

Also at
HKEY_USERS\.DEFAULT\Control Panel\International
on every computer.
 
Back
Top