frmgetsv.frm

来自「银行储蓄管理系统,一个功能强大的简单存款系统!」· FRM 代码 · 共 47 行

FRM
47
字号
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 + =
减小字号Ctrl + -
显示快捷键?