A couple of navigation tips for those using VB.NET.
To navigate to a website from VB.NET
Dim URL As String = "https://www.599cd.com" Process.Start(New ProcessStartInfo(URL) With {.UseShellExecute = True})
To open an Access database from VB.NET
Dim dbPath As String = "C:\Users\YourUsername\Documents\TRUSTED\YourDatabase.accdb" Process.Start(New ProcessStartInfo(dbPath) With {.UseShellExecute = True})
Sorry, only students may add comments.
Click here for more
information on how you can set up an account.
If you are a Visitor, go ahead and post your reply as a
new comment, and we'll move it here for you
once it's approved. Be sure to use the same name and email address.
This thread is now CLOSED. If you wish to comment, start a NEW discussion in
Visual Basic Forum.