资源名称:ERPSYS.zip [点击查看]
上传用户:zhpu1995
上传日期:2013-09-06
资源大小:61151k
文件大小:3k
源码类别:
企业管理
开发平台:
Visual Basic
- 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