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

📄

📁 VB开发的ERP系统
💻
字号:
VERSION 5.00
Begin VB.Form Xs_Q_QuotationStatus 
   Caption         =   "报价单关闭状态"
   ClientHeight    =   1095
   ClientLeft      =   60
   ClientTop       =   345
   ClientWidth     =   3900
   Icon            =   "报价单关闭状态.frx":0000
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   ScaleHeight     =   1095
   ScaleWidth      =   3900
   StartUpPosition =   2  '屏幕中心
   WhatsThisHelp   =   -1  'True
   Begin VB.Frame Frame3 
      Caption         =   "关闭状态"
      Height          =   570
      Left            =   60
      TabIndex        =   2
      Top             =   45
      Width           =   3780
      Begin VB.OptionButton Opt_Check 
         Caption         =   "作废"
         Height          =   195
         Index           =   2
         Left            =   2685
         TabIndex        =   5
         Top             =   285
         Width           =   810
      End
      Begin VB.OptionButton Opt_Check 
         Caption         =   "转合同"
         Height          =   195
         Index           =   1
         Left            =   1380
         TabIndex        =   4
         Top             =   285
         Width           =   1245
      End
      Begin VB.OptionButton Opt_Check 
         Caption         =   "转订单"
         Height          =   195
         Index           =   0
         Left            =   135
         TabIndex        =   3
         Top             =   285
         Value           =   -1  'True
         Width           =   915
      End
   End
   Begin VB.CommandButton QdCommand 
      Caption         =   "确定(&O)"
      Height          =   300
      Left            =   1485
      TabIndex        =   1
      Top             =   705
      Width           =   1120
   End
   Begin VB.CommandButton QxCommand 
      Caption         =   "取消(&C)"
      Height          =   300
      Left            =   2700
      TabIndex        =   0
      Top             =   705
      Width           =   1120
   End
End
Attribute VB_Name = "Xs_Q_QuotationStatus"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub QdCommand_Click()
    If Opt_Check(0) Then
        GQuotationStatus = Trim(Opt_Check(0).Caption)
    ElseIf Opt_Check(1) Then
        GQuotationStatus = Trim(Opt_Check(1).Caption)
    Else
        GQuotationStatus = Trim(Opt_Check(2).Caption)
    End If
    Unload Me
End Sub

Private Sub QxCommand_Click()
    GQuotationStatus = ""
    Unload Me
End Sub

⌨️ 快捷键说明

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