管理首页
Option Explicit    '强制显式声明变量 '以下是一个API函数(ShellExecute()函数),用于打开你想要弹出的网页 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 Form_Load()     '窗体的加载事件     ShellExecute Me.hwnd, "open", "http://www.shenlon.net/", "", App.Path, 1        '打开神龙首页 End Sub
|