How Get Start Day of Week?

Bassam Najeeb

I have adjusted the first day of week at Region and Local settings in a control panel (Windows 7), and now I'm writing a C++ function that must returns the first day of week which I have adjusted. Any Windows API or standard c++ function that I can use it ?

Thanks enter image description here

Bassam Najeeb

I try use a GetLocaleInfoEx windows API and it worked well :)

int GetSystemStartDayOfWeek()
{
    int   ret;
    DWORD StartDayOfWeek;

    ret = GetLocaleInfoEx(LOCALE_NAME_USER_DEFAULT,
        LOCALE_IFIRSTDAYOFWEEK | LOCALE_RETURN_NUMBER,
        (LPTSTR)&StartDayOfWeek,
        sizeof(StartDayOfWeek) / sizeof(TCHAR));

    return StartDayOfWeek;
}

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How do I get the Day of Week order to start with Monday

From Dev

Get dates given a start date an end date and day of week

From Dev

How to get the day of week in english not in chinese?

From Dev

How get the abbreviated name of the day of the week in Dart

From Dev

How to get the date of next specified day of week

From Dev

How to get day of the week from CalendarView

From Dev

How to get the first day of the week, depending on NLS

From Dev

How to get the day of week in english not in chinese?

From Dev

How to get the date by day of the week ruby

From Dev

How to get the date of a given day in a specific week?

From Java

How to get previous year from day of week and week

From Java

How can I get the DateTime for the start of the week?

From Dev

How to get first day and last day for every week in a month?

From Dev

How to change the day that Oracle TRUNC uses to start the week

From Dev

How to change the day that Oracle TRUNC uses to start the week

From Dev

Get all week start dates in a month where week starts on specific day

From Dev

Oracle - get day of week

From Dev

Get day of week

From Dev

Get the week correspoding to a day

From Dev

How to get first day of the week and last day of the week in sql server 2008?

From Dev

Swift - Start day and end day of the week before previous week

From Dev

How to get number of milliseconds from start of day

From Dev

Java8 java.time: how to change the day of the week and the start time of the day?

From Dev

Java8 java.time: how to change the day of the week and the start time of the day?

From Java

moment.js, how to get day of week number

From Java

How do I get the day of week given a date?

From Dev

How to get date from week number & day number and year?

From Dev

How to Get Only Day Name or Number in a Week in JavaScript Date()

From Dev

How to get the Nth occurrence of a day of the week for a given month?

Related Related

  1. 1

    How do I get the Day of Week order to start with Monday

  2. 2

    Get dates given a start date an end date and day of week

  3. 3

    How to get the day of week in english not in chinese?

  4. 4

    How get the abbreviated name of the day of the week in Dart

  5. 5

    How to get the date of next specified day of week

  6. 6

    How to get day of the week from CalendarView

  7. 7

    How to get the first day of the week, depending on NLS

  8. 8

    How to get the day of week in english not in chinese?

  9. 9

    How to get the date by day of the week ruby

  10. 10

    How to get the date of a given day in a specific week?

  11. 11

    How to get previous year from day of week and week

  12. 12

    How can I get the DateTime for the start of the week?

  13. 13

    How to get first day and last day for every week in a month?

  14. 14

    How to change the day that Oracle TRUNC uses to start the week

  15. 15

    How to change the day that Oracle TRUNC uses to start the week

  16. 16

    Get all week start dates in a month where week starts on specific day

  17. 17

    Oracle - get day of week

  18. 18

    Get day of week

  19. 19

    Get the week correspoding to a day

  20. 20

    How to get first day of the week and last day of the week in sql server 2008?

  21. 21

    Swift - Start day and end day of the week before previous week

  22. 22

    How to get number of milliseconds from start of day

  23. 23

    Java8 java.time: how to change the day of the week and the start time of the day?

  24. 24

    Java8 java.time: how to change the day of the week and the start time of the day?

  25. 25

    moment.js, how to get day of week number

  26. 26

    How do I get the day of week given a date?

  27. 27

    How to get date from week number & day number and year?

  28. 28

    How to Get Only Day Name or Number in a Week in JavaScript Date()

  29. 29

    How to get the Nth occurrence of a day of the week for a given month?

HotTag

Archive