Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

Search Results for "SetSystemTime" in [All]

kernel32

.

static extern bool SetSystemTime(ref SYSTEMTIME time);

.

Shared Function SetSystemTime(ByRef time As SYSTEMTIME) As Boolean

.

Fill-in an instance of the SYSTEMTIME struct and call SetSystemTime(ref obj), where obj is the instance of your struct.

.

        public extern static uint SetSystemTime(ref SYSTEMTIME lpSystemTime);

.

            if (SetSystemTime(ref st) == 0)

.

                Console.WriteLine("FAILURE: SetSystemTime failed");

.

            SetSystemTime(ref st);

.
Documentation
[SetSystemTime] on MSDN

coredll

.

To set the date and time without consideration to the locale settings use SetSystemTime.

.

static void SetSystemTime(System.DateTime dt)

.

To see sample code for VB, please go to SetSystemTime.

.

   static extern bool SetSystemTime(ref SYSTEMTIME time);

.

   Private Shared Function SetSystemTime(ByRef time As SYSTEMTIME) As Boolean

.

    Private Shared Function SetSystemTime(ByRef time As SYSTEMTIME) As Boolean

.

    SetSystemTime(s)

.

     private static extern bool SetSystemTime(ref SYSTEMTIME time);

.

     SetSystemTime(ref s);

.
Documentation
[SetSystemTime] on MSDN

Structures

.

    dt = dt.ToUniversalTime();  // SetSystemTime expects the SYSTEMTIME in UTC


 
Access PInvoke.net directly from VS: