user301455
user301455

Reputation:

Perform a function at a specific time in VB.NET

I am writing a small app to automatically connect my PC to the internet at a certain time and I am using rasdial.exe for it...

Private Sub SetIt_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles SetIt.Click
    Dim windir As String = Environment.GetEnvironmentVariable("WINDIR")
    Shell(windir & "\system32\rasdial.exe", AppWinStyle.NormalNoFocus)
End Sub

My question is how to make the shell function run at a specified time or after a certain interval??

Also how to wake up my PC from hibernation using vb and winresume.exe

Upvotes: 1

Views: 2293

Answers (1)

Kyle Rosendo
Kyle Rosendo

Reputation: 25287

Create a console application to do the work necessary, and then use a Windows Scheduled Task to do the scheduling work for you. My answer here shows how to accomplish the scheduling.

Upvotes: 2

Related Questions