📄 frmworkbank.frm
字号:
VERSION 5.00
Begin VB.Form frmOAA1
BackColor = &H00404040&
BorderStyle = 1 'Fixed Single
Caption = "开户:第一步"
ClientHeight = 3495
ClientLeft = 45
ClientTop = 435
ClientWidth = 7245
ForeColor = &H00404040&
LinkTopic = "Form1"
MaxButton = 0 'False
MDIChild = -1 'True
MinButton = 0 'False
ScaleHeight = 3495
ScaleWidth = 7245
Begin VB.CommandButton cmdCancel
Cancel = -1 'True
Caption = "取 消"
Height = 345
Left = 6000
TabIndex = 8
Top = 3000
Width = 975
End
Begin VB.CommandButton cmdPrint
Caption = "打 印"
Height = 345
Left = 3360
TabIndex = 7
Top = 3000
Width = 1095
End
Begin VB.CommandButton cmdNext
Caption = "下一步"
Default = -1 'True
Height = 345
Left = 4680
TabIndex = 2
Top = 3000
Width = 1095
End
Begin VB.Label lbl
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "下一步”。"
BeginProperty Font
Name = "宋体"
Size = 14.25
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FFFFFF&
Height = 285
Index = 5
Left = 120
TabIndex = 6
Top = 2280
Width = 1500
End
Begin VB.Label lbl
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = ",再点下一步,如果你不希望打印的话请直接点击“"
BeginProperty Font
Name = "宋体"
Size = 14.25
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FFFFFF&
Height = 285
Index = 4
Left = 120
TabIndex = 5
Top = 1800
Width = 6900
End
Begin VB.Label lbl
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "如果你希望现在打印的话,请点击“打印”按钮"
BeginProperty Font
Name = "宋体"
Size = 14.25
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FFFFFF&
Height = 285
Index = 3
Left = 720
TabIndex = 4
Top = 1320
Width = 6300
End
Begin VB.Label lbl
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "打印开户申请表"
BeginProperty Font
Name = "华文新魏"
Size = 15.75
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FFFFFF&
Height = 315
Index = 2
Left = 2400
TabIndex = 3
Top = 240
Width = 2205
End
Begin VB.Label lbl
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "第一步"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FFFFFF&
Height = 210
Index = 1
Left = 6480
TabIndex = 1
Top = 360
Width = 675
End
Begin VB.Label lbl
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "First"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FFFFFF&
Height = 210
Index = 0
Left = 120
TabIndex = 0
Top = 360
Width = 600
End
Begin VB.Line line
BorderColor = &H00FFFFFF&
BorderWidth = 2
X1 = -120
X2 = 7320
Y1 = 600
Y2 = 600
End
End
Attribute VB_Name = "frmOAA1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub cmdCancel_Click()
Unload Me
End Sub
'响应 "下一步" 按钮
Private Sub cmdNext_Click()
Unload Me
frmOAA2.Show
End Sub
'响应 "打印" 按钮
Private Sub cmdPrint_Click()
frmPrintOAAing.PrintForm
Unload frmPrintOAAing
End Sub
Private Sub Form_Load()
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -