intro.frm
来自「MO VB地理信息系统程序设计」· FRM 代码 · 共 48 行
FRM
48 行
VERSION 5.00
Begin VB.Form Form2
Caption = "Projector"
ClientHeight = 1170
ClientLeft = 2625
ClientTop = 3285
ClientWidth = 2925
ControlBox = 0 'False
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 1170
ScaleWidth = 2925
StartUpPosition = 1 'CenterOwner
Begin VB.Label Label1
Alignment = 2 'Center
Caption = "Loading Please Wait..."
BeginProperty Font
Name = "MS Sans Serif"
Size = 18
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 855
Left = 120
TabIndex = 0
Top = 120
Width = 2655
End
End
Attribute VB_Name = "Form2"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Form_Load()
Screen.MousePointer = vbHourglass
End Sub
Private Sub Form_Unload(Cancel As Integer)
Screen.MousePointer = vbDefault
End Sub
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?