VB怎么打开网页 !!!谢谢

在每隔一段时间打开某个网页!!!具体点把代码写下 、
2024年11月27日 16:44
有3个网友回答
网友(1):

在Form1中添加Timer1控件。

Private Sub Form_Load()
Timer1.Interval = 10000 '每个10000ms=10s打开一次
End Sub

Private Sub Timer1_Timer()
Shell "explorer http://www.baidu.com" '网址,你可以换成其他的。
End Sub

网友(2):

'声明API函数
Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long

Private Sub Timer1_Timer()
ShellExecute Me.hwnd, "open", "http://www.baidu.com", "", "", 1 '把"http://www.baidu.com"换成你想要的网址或路径
End Sub

'这个函数可以打开任何文件。

网友(3):

首先声明Api函数shellexcute,模块中共有,窗户中私有.调用:shellexcuteme.hwnd,"open","网址或文件路径",vbnullstring,vbnullstring,5 以上代码可扩用于打开任何类型的文件效果非常使人满意记得记忆