【VB开源代码栏目提醒】:网学会员鉴于大家对VB开源代码十分关注,论文会员在此为大家搜集整理了“frmGetSv.frm”一文,供大家参考学习
VERSION 5.00
Begin VB.Form frmGetSv
BorderStyle = 0 'None
Caption = "服务器加载中..."
ClientHeight = 1185
ClientLeft = 0
ClientTop = 0
ClientWidth = 4680
LinkTopic = "Form1"
ScaleHeight = 1185
ScaleWidth = 4680
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Begin VB.Timer timer
Left = 0
Top = 0
End
Begin VB.Label lbl
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "服务器加载中,请稍候..."
Height = 180
Left = 1200
TabIndex = 0
Top = 480
Width = 2070
End
End
Attribute
VB_Name = "frmGetSv"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Load()
timer.Interval = 100
End Sub
Private Sub timer_Timer()
If getSNameList() Then
Unload Me
MsgBox "服务器加载成功", vbExclamation, "提示"
Else
Unload Me
MsgBox "服务器加载失败,请自行指定!", vbExclamation, "提示"
End If
End Sub