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

📄 审核方式.frm

📁 用友U8财务软件VB源程序, 本版本为2002年版本
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frmCheck_xz 
   BorderStyle     =   3  'Fixed Dialog
   Caption         =   "审核"
   ClientHeight    =   2190
   ClientLeft      =   1605
   ClientTop       =   2460
   ClientWidth     =   3735
   BeginProperty Font 
      Name            =   "宋体"
      Size            =   10.5
      Charset         =   134
      Weight          =   400
      Underline       =   0   'False
      Italic          =   0   'False
      Strikethrough   =   0   'False
   EndProperty
   Icon            =   "审核方式.frx":0000
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   2190
   ScaleWidth      =   3735
   ShowInTaskbar   =   0   'False
   Begin VB.CommandButton Command1 
      Cancel          =   -1  'True
      BeginProperty Font 
         Name            =   "宋体"
         Size            =   9
         Charset         =   134
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   365
      Index           =   1
      Left            =   2505
      Style           =   1  'Graphical
      TabIndex        =   4
      Top             =   1680
      Width           =   1080
   End
   Begin VB.CommandButton Command1 
      Default         =   -1  'True
      BeginProperty Font 
         Name            =   "宋体"
         Size            =   9
         Charset         =   134
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   365
      Index           =   0
      Left            =   1230
      Style           =   1  'Graphical
      TabIndex        =   3
      Top             =   1680
      Width           =   1080
   End
   Begin VB.Frame Frame1 
      Height          =   1095
      Left            =   150
      TabIndex        =   1
      Top             =   420
      Width           =   3435
      Begin VB.OptionButton Option1 
         Caption         =   "批审批审批审"
         BeginProperty Font 
            Name            =   "宋体"
            Size            =   9
            Charset         =   134
            Weight          =   400
            Underline       =   0   'False
            Italic          =   0   'False
            Strikethrough   =   0   'False
         EndProperty
         Height          =   225
         Index           =   1
         Left            =   288
         TabIndex        =   5
         Top             =   720
         Width           =   1836
      End
      Begin VB.OptionButton Option1 
         Caption         =   "只审核本张单据"
         BeginProperty Font 
            Name            =   "宋体"
            Size            =   9
            Charset         =   134
            Weight          =   400
            Underline       =   0   'False
            Italic          =   0   'False
            Strikethrough   =   0   'False
         EndProperty
         Height          =   225
         Index           =   0
         Left            =   270
         TabIndex        =   2
         Top             =   330
         Value           =   -1  'True
         Width           =   2415
      End
   End
   Begin VB.Label Label1 
      AutoSize        =   -1  'True
      Caption         =   "请选择审核方式:"
      BeginProperty Font 
         Name            =   "宋体"
         Size            =   9
         Charset         =   134
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   180
      Left            =   210
      TabIndex        =   0
      Top             =   210
      Width           =   1440
   End
End
Attribute VB_Name = "frmCheck_xz"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
'软件著作权: 北京用友软件集团有限公司
'系统名称: 资金管理8.0
'功能说明: 审核方式选择
'作者: 赵春立

Option Explicit

Private Sub Command1_Click(Index As Integer)
    Select Case Index
        Case 0:
            If Option1(0).Value Then CheckStatus = 0
            If Option1(1).Value Then CheckStatus = 1
        Case 1:
            CheckStatus = 2
    End Select
    Unload Me
    
End Sub

Private Sub Form_Load()
    Me.Icon = LoadResPicture(109, vbResIcon)
    Command1(0).Picture = LoadResPicture(103, vbResBitmap)
    Command1(1).Picture = LoadResPicture(104, vbResBitmap)
    CenterForm Me

End Sub

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -