帮我,我仍在学习,想问一问,如何使用选定的CheckBox运行SETUP程序?但是即使用户在需要UAC时取消了设置,也可以顺序执行并继续执行代码?
以及预览链接程序
https://pasteboard.co/Ilkt0sD.png
和下面是我的简单代码。
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
If CheckBox1.Checked Then
Process.Start("chrome.exe")
End If
If CheckBox2.Checked Then
Process.Start("firefox.com")
End If
End Sub
End Class