Hỏi đáp

Chia sẻ kiến thức, cùng nhau phát triển

Cập nhật thời gian cho máy tính qua server bằng c#

12:21 10-08-2018 669 lượt xem 3 bình luận 13:24 11-08-2018

Mọi người ơi cho em hỏi là em muốn cập nhật thời gian cho máy tính của mình qua server bằng code c# thì làm như thế nào ạ?
Kiểu giờ máy tính đang bị sai mình muốn làm ứng dụng để cập nhật lại ý ạ?

Bình luận

Để bình luận, bạn cần đăng nhập bằng tài khoản Howkteam.

Đăng nhập
Vector đã bình luận 13:24 11-08-2018

Đoạn code của bác e thấy trên mạng cơ mà cho vào k phản ứng gì?

 

Vector đã bình luận 22:35 10-08-2018

Thế còn vụ lấy giờ từ server thì ae có gợi ý gì k ạ?

Dinh Tona đã bình luận 12:46 10-08-2018

Tạo một struct như này:

//create 1 struct như này:
public struct SystemTime
{
    public ushort Year;
    public ushort Month;
    public ushort DayOfWeek;
    public ushort Day;
    public ushort Hour;
    public ushort Minute;
    public ushort Second;
    public ushort Millisecond;
};

[DllImport("kernel32.dll", EntryPoint = "GetSystemTime", SetLastError = true)]
public extern static void Win32GetSystemTime(ref SystemTime sysTime);

[DllImport("kernel32.dll", EntryPoint = "SetSystemTime", SetLastError = true)]
public extern static bool Win32SetSystemTime(ref SystemTime sysTime);

private void button1_Click(object sender, EventArgs e)
{
    // Set system date and time
    SystemTime updatedTime = new SystemTime();
    updatedTime.Year = (ushort)2009;
    updatedTime.Month = (ushort)3;
    updatedTime.Day = (ushort)16;
    updatedTime.Hour = (ushort)10;
    updatedTime.Minute = (ushort)0;
    updatedTime.Second = (ushort)0;
    // Call the unmanaged function that sets the new date and time instantly
    Win32SetSystemTime(ref updatedTime);
} 

Try it !

Câu hỏi mới nhất