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

📄

📁 VB开发的ERP系统
💻
字号:
VERSION 5.00
Begin VB.Form AutoTran_ImportOptFrm 
   Caption         =   "凭证处理选项"
   ClientHeight    =   1815
   ClientLeft      =   60
   ClientTop       =   345
   ClientWidth     =   3285
   Icon            =   "自动转帐凭证_引入凭证选项.frx":0000
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   1815
   ScaleWidth      =   3285
   StartUpPosition =   1  '所有者中心
   Begin VB.CommandButton BcCommand 
      Caption         =   "确定(&O)"
      Default         =   -1  'True
      Height          =   300
      Left            =   915
      TabIndex        =   5
      Top             =   1455
      Width           =   1120
   End
   Begin VB.CommandButton QxCommand 
      Cancel          =   -1  'True
      Caption         =   "取消(&C)"
      Height          =   300
      Left            =   2115
      TabIndex        =   4
      Top             =   1455
      Width           =   1120
   End
   Begin VB.Frame Frame1 
      Height          =   1305
      Left            =   45
      TabIndex        =   0
      Top             =   45
      Width           =   3195
      Begin VB.CheckBox Chk_CodeOutput 
         Caption         =   "打印凭证是否输出科目编码"
         Height          =   255
         Left            =   210
         TabIndex        =   3
         Top             =   900
         Width           =   2685
      End
      Begin VB.CheckBox Chk_DeleteMess 
         Caption         =   "删除会计分录是否提示"
         Height          =   255
         Left            =   210
         TabIndex        =   2
         Top             =   570
         Width           =   2685
      End
      Begin VB.CheckBox Chk_Quantity 
         Caption         =   "科目数量核算则数量不能为零"
         Height          =   255
         Left            =   210
         TabIndex        =   1
         Top             =   240
         Width           =   2685
      End
   End
End
Attribute VB_Name = "AutoTran_ImportOptFrm"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub BcCommand_Click()        '确定
    With AutoTran_Importpz
        
        '删行是否提示
        .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 + -