📄
字号:
VERSION 5.00
Begin VB.Form AutoTran_OptFrm
Caption = "凭证处理选项"
ClientHeight = 1830
ClientLeft = 60
ClientTop = 345
ClientWidth = 3330
Icon = "自动转帐凭证_填制凭证选项.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 1830
ScaleWidth = 3330
StartUpPosition = 1 '所有者中心
Begin VB.Frame Frame1
Height = 1305
Left = 60
TabIndex = 2
Top = 30
Width = 3195
Begin VB.CheckBox Chk_Quantity
Caption = "科目数量核算则数量不能为零"
Height = 255
Left = 210
TabIndex = 5
Top = 240
Width = 2685
End
Begin VB.CheckBox Chk_DeleteMess
Caption = "删除会计分录是否提示"
Height = 255
Left = 210
TabIndex = 4
Top = 570
Width = 2685
End
Begin VB.CheckBox Chk_CodeOutput
Caption = "打印凭证是否输出科目编码"
Height = 255
Left = 210
TabIndex = 3
Top = 900
Width = 2685
End
End
Begin VB.CommandButton QxCommand
Cancel = -1 'True
Caption = "取消(&C)"
Height = 300
Left = 2130
TabIndex = 1
Top = 1440
Width = 1120
End
Begin VB.CommandButton BcCommand
Caption = "确定(&O)"
Default = -1 'True
Height = 300
Left = 930
TabIndex = 0
Top = 1440
Width = 1120
End
End
Attribute VB_Name = "AutoTran_OptFrm"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub BcCommand_Click() '确定
With AutoTran_PzFrm
'删行是否提示
.Chk_DeleteMess.Value = Me.Chk_DeleteMess.Value
'科目数量核算数量项是否可以为零
.Chk_Quantity.Value = Me.Chk_Quantity.Value
'打印凭证是否输出科目编码
.Chk_CodeOutput.Value = Me.Chk_CodeOutput.Value
Unload Me
End With
End Sub
Private Sub QxCommand_Click() '取消
Unload Me
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -