⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄

📁 VB开发的ERP系统
💻
字号:
VERSION 5.00
Begin VB.Form PZ_FrmOption 
   Caption         =   "凭证处理选项"
   ClientHeight    =   2565
   ClientLeft      =   60
   ClientTop       =   345
   ClientWidth     =   3510
   Icon            =   "凭证处理_填制凭证选项.frx":0000
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   2565
   ScaleWidth      =   3510
   StartUpPosition =   1  '所有者中心
   Begin VB.Frame Frame1 
      Caption         =   "选项"
      Height          =   2025
      Left            =   60
      TabIndex        =   2
      Top             =   60
      Width           =   3375
      Begin VB.CheckBox Chk_Xjll 
         Caption         =   "凭证保存后立刻分配现金流量"
         Height          =   255
         Left            =   180
         TabIndex        =   8
         Top             =   1350
         Width           =   2805
      End
      Begin VB.CheckBox Chk_Quantity 
         Caption         =   "科目数量核算则数量不能为零"
         Height          =   345
         Left            =   180
         TabIndex        =   7
         Top             =   210
         Width           =   2745
      End
      Begin VB.CheckBox Chk_DeleteMess 
         Caption         =   "删除会计分录是否提示"
         Height          =   285
         Left            =   180
         TabIndex        =   6
         Top             =   525
         Width           =   2685
      End
      Begin VB.CheckBox Chk_CodeOutput 
         Caption         =   "打印凭证是否输出科目编码"
         Height          =   255
         Left            =   180
         TabIndex        =   5
         Top             =   810
         Width           =   2685
      End
      Begin VB.CheckBox Chk_CheckNext 
         Caption         =   "审核凭证时是否自动跳到下张"
         Height          =   285
         Left            =   180
         TabIndex        =   4
         Top             =   1065
         Width           =   2745
      End
      Begin VB.CheckBox Chk_SumPrint 
         Caption         =   "汇总打印"
         Height          =   285
         Left            =   180
         TabIndex        =   3
         Top             =   1605
         Width           =   1155
      End
   End
   Begin VB.CommandButton QxCommand 
      Cancel          =   -1  'True
      Caption         =   "取消(&C)"
      Height          =   300
      Left            =   2310
      TabIndex        =   1
      Top             =   2190
      Width           =   1120
   End
   Begin VB.CommandButton BcCommand 
      Caption         =   "确定(&O)"
      Default         =   -1  'True
      Height          =   300
      Left            =   1140
      TabIndex        =   0
      Top             =   2190
      Width           =   1120
   End
End
Attribute VB_Name = "PZ_FrmOption"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub BcCommand_Click()        '确定
    With PZ_JzpzclFrm
        
        '删行是否提示
        .Chk_DeleteMess.Value = Me.Chk_DeleteMess.Value
        
        '科目数量核算数量项是否可以为零
        .Chk_Quantity.Value = Me.Chk_Quantity.Value
        
        '打印凭证是否输出科目编码
        .Chk_CodeOutput.Value = Me.Chk_CodeOutput.Value
        
        '审核凭证时是否自动跳到下张
        .Chk_CheckNext.Value = Me.Chk_CheckNext.Value
        
        '汇总打印
        .Chk_SumPrint.Value = Me.Chk_SumPrint.Value
        
        '凭证保存后立刻分配现金流量
        .Chk_Xjll.Value = Me.Chk_Xjll.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 + -