1、控制webbroser的address属性;
2、可以直接杀死excel进程
Dim ps As System.Diagnostics.Process() = System.Diagnostics.Process.GetProcessesByName("excel.exe")For Each p As System.Diagnostics.Process In ps If p.MainWindowTitle = Nothing Then p.kill End IfNext