⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 frmgetsv.frm

📁 软件工程实验报告 银行储蓄管理系统 1.可行性分析 2.总体设计 3.详细设计 4.实验报告模板
💻 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 + -