如何通过在vb.net中单击按钮来更正系统时间

时间:2015-07-01 08:59:24

标签: .net vb.net time

我创建了一个时间校正应用程序,可以在点击"正确的时间"时更正系统时间。我如何将系统时间更改为当前时间。我将使用我的计算机的应用程序,时间错误。

1 个答案:

答案 0 :(得分:1)

'create a datetime object with the current time
Dim correctTime = DateTime.Now()
'adjust the time
correctTime.AddSeconds(1)

'set the time on your machine
Try
    Microsoft.VisualBasic.TimeOfDay = correctTime
Catch ex As Exception
    MessageBox.Show("Could not set the time. You probably need to run as Administrator to do this. " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Stop)
End Try

你需要运行"作为管理员"调整时间