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

📄 waitform.frm

📁 1)服务器控制客户端程序 2)远程访问控制 3)提供服务器端、客户端程序
💻 FRM
字号:
VERSION 5.00
Begin VB.Form waitform 
   BorderStyle     =   3  'Fixed Dialog
   Caption         =   "稍等一会"
   ClientHeight    =   840
   ClientLeft      =   45
   ClientTop       =   330
   ClientWidth     =   4485
   Icon            =   "waitform.frx":0000
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   840
   ScaleWidth      =   4485
   ShowInTaskbar   =   0   'False
   StartUpPosition =   3  '窗口缺省
   Begin VB.Timer Timer1 
      Interval        =   500
      Left            =   1800
      Top             =   600
   End
   Begin VB.Label Label1 
      Caption         =   "信息传递中,请稍等一会"
      Height          =   255
      Left            =   480
      TabIndex        =   0
      Top             =   240
      Width           =   3255
   End
End
Attribute VB_Name = "waitform"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Dim f As Integer

Private Sub Form_Load()
Me.Left = (Screen.Width - Me.Width) \ 2
Me.Top = (Screen.Height - Me.Height) \ 2
f = 0

End Sub

Private Sub Timer1_Timer()
Label1.Caption = Label1.Caption & "."
f = f + 1
If f >= 9 Then
Unload Me
xxform.Show 1
End If

End Sub

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -