?? 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
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -