111,092
社区成员




Dim ProcessStartInfo As New System.Diagnostics.ProcessStartInfo()
ProcessStartInfo.FileName = "iexplore.exe"
ProcessStartInfo.Arguments = "http://www.faqts.com"
ProcessStartInfo.WorkingDirectory = ""
ProcessStartInfo.WindowStyle = ProcessStartInfo.WindowStyle.Maximized
ProcessStartInfo.UseShellExecute = True
ProcessStartInfo.CreateNoWindow = False
System.Diagnostics.Process.Start(ProcessStartInfo)