Click here to Skip to main content
15,880,469 members
Articles / Programming Languages / C#
Tip/Trick

Change System Date Format At Runtime

Rate me:
Please Sign up or sign in to vote.
4.80/5 (5 votes)
16 Mar 2011CPOL1 min read 24.9K   8   6
Change System Date Format At Runtime

Introduction


You may sometimes need to change your system Date format at run time. C# has namespace ‘using Microsoft.Win32’ which helps you to change your system date and currency format.

Using the Code


First, you just have to use namespace using Microsoft.Win32

Then use RegistryKey class to access Current user preferences. Then you can set value for date format using RegistryKey’s object.


C#
//    RegistryKey rkey = Registry.CurrentUser.OpenSubKey
//                (@"Control Panel\International", true);
//      rkey.SetValue("sShortDate", "d/M/yy");
 
//    rkey.SetValue("sLongDate","dd/MM/yy");


  • d:

    Use this to specify the numeric value for the day of the month.

    Eg. d (1) or dd(01) or ddd(MON) or dddd(MONDAY).

  • M:

    These display the months in numeric form.

    Eg. M(1) or MM(01) or MMM(JAN) or MMMM(JANUARY).

  • y:

    Use this to specify the numeric value for the year to different digits.

    Eg. y(9) or yy(09) or yyyy(2009).


Apart from these, you may also use follow:
  • t: The first character of the AM/PM designator.

    11/03/2011 1:45:30 PM


  • tt: The AM/PM designator.

    11/03/2011 1:45:30 PM


  • s: The second, from 0 through 59.

    11/03/2011 1:45:09 PM


  • ss: The second, from 00 through 59.

    11/03/2011 1:45:09 PM. and so on


Points of Interest


This is very easy code to change system date format at runtime. Following are the class methods with their uses.
C#
// RegistryKey, represents a key-level node at windows registry
// Registry, represents a root keys in windows registry
// CurrentUser, reads windows registry base key HKEY_CURRENT_USER

You can use this code to change system currency format too.

History


15 March 2011: Initial release

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



Comments and Discussions

 
GeneralMy vote of 5 Pin
Member 1182679028-Apr-16 18:09
Member 1182679028-Apr-16 18:09 
QuestionHow to set time? Pin
Member 938534216-Sep-13 23:00
Member 938534216-Sep-13 23:00 
GeneralReason for my vote of 5 very nice tips... Its work Pin
Sona s25-Mar-11 3:22
Sona s25-Mar-11 3:22 
Reason for my vote of 5
very nice tips...
Its work
GeneralYou r going good best wishes... Pin
Bhavna v24-Mar-11 18:12
Bhavna v24-Mar-11 18:12 
GeneralReason for my vote of 5 Nice tips, I just have been lookung ... Pin
Bhavna v16-Mar-11 16:02
Bhavna v16-Mar-11 16:02 
GeneralDon't do that! Pin
Bernhard Hiller16-Mar-11 22:03
Bernhard Hiller16-Mar-11 22:03 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.