📄 skip.frm
字号:
VERSION 5.00
Begin VB.Form SKIP
BorderStyle = 1 'Fixed Single
Caption = "方式选择"
ClientHeight = 2220
ClientLeft = 45
ClientTop = 330
ClientWidth = 4785
ControlBox = 0 'False
LinkTopic = "Form3"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 2220
ScaleWidth = 4785
StartUpPosition = 2 '屏幕中心
Begin VB.CommandButton Command2
Caption = "取消"
Height = 375
Left = 2760
TabIndex = 4
Top = 1680
Width = 1335
End
Begin VB.CommandButton Command1
Caption = "确定"
Height = 375
Left = 720
TabIndex = 3
Top = 1680
Width = 1335
End
Begin VB.Frame Frame1
Caption = "条件选择"
Height = 1455
Left = 120
TabIndex = 0
Top = 120
Width = 4575
Begin VB.OptionButton Option1
Caption = "以楼号(户号)为索引,进行数据录入,缴费"
Height = 375
Index = 0
Left = 360
TabIndex = 2
Top = 360
Width = 3975
End
Begin VB.OptionButton Option1
Caption = "以选择用户列表方式,进行数据录入,缴费"
Height = 375
Index = 1
Left = 360
TabIndex = 1
Top = 840
Width = 3975
End
End
End
Attribute VB_Name = "SKIP"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
MDIForm1.Show
Unload Me
End Sub
Private Sub Command2_Click()
Unload Me
End Sub
Private Sub Form_Load()
Me.Show
Option1(0).Value = True
Command1.SetFocus
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -