📄 form1.frm
字号:
VERSION 5.00
Begin VB.Form Form1
BorderStyle = 3 'Fixed Dialog
ClientHeight = 3555
ClientLeft = 5100
ClientTop = 3540
ClientWidth = 4080
ControlBox = 0 'False
Icon = "Form1.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 3555
ScaleWidth = 4080
ShowInTaskbar = 0 'False
Begin VB.Timer Timer1
Enabled = 0 'False
Interval = 800
Left = 3480
Top = 240
End
Begin VB.PictureBox Picture1
AutoSize = -1 'True
Height = 2610
Left = 1080
Picture = "Form1.frx":0442
ScaleHeight = 2550
ScaleWidth = 1800
TabIndex = 0
Top = 120
Width = 1860
End
Begin VB.Label Label2
Caption = "(测试版)"
BeginProperty Font
Name = "宋体"
Size = 15
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 375
Left = 1200
TabIndex = 2
Top = 3120
Width = 1815
End
Begin VB.Label Label1
AutoSize = -1 'True
Caption = "组态王OPC_Client演示程序"
BeginProperty Font
Name = "宋体"
Size = 14.25
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 285
Left = 120
TabIndex = 1
Top = 2760
Width = 3765
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Dim jishi As Integer
Private Sub Form_Load()
Timer1.Enabled = True
jishi = 0
End Sub
Private Sub Timer1_Timer()
jishi = jishi + 1
If jishi > 1 Then
Timer1.Enabled = False
Unload Me
Load Form2
Form2.Show
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -