📄
字号:
VERSION 5.00
Begin VB.Form XS_I_InvoiceType
BorderStyle = 3 'Fixed Dialog
Caption = "发票类型选择"
ClientHeight = 1395
ClientLeft = 45
ClientTop = 330
ClientWidth = 2415
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 1395
ScaleWidth = 2415
ShowInTaskbar = 0 'False
StartUpPosition = 1 '所有者中心
Begin VB.CommandButton cmdOK
Caption = "确定(&O)"
Height = 330
Index = 0
Left = 15
TabIndex = 4
Top = 1005
Width = 1140
End
Begin VB.CommandButton cmdOK
Caption = "取消(&C)"
Height = 330
Index = 1
Left = 1230
TabIndex = 3
Top = 1005
Width = 1140
End
Begin VB.Frame Frame1
Caption = "发票类型选择"
Height = 855
Left = 30
TabIndex = 0
Top = 75
Width = 2340
Begin VB.OptionButton Option1
Caption = "红票"
Height = 345
Index = 1
Left = 330
TabIndex = 2
Top = 465
Width = 750
End
Begin VB.OptionButton Option1
Caption = "蓝票"
Height = 345
Index = 0
Left = 330
TabIndex = 1
Top = 180
Width = 735
End
End
End
Attribute VB_Name = "XS_I_InvoiceType"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Dim Temp As String
Private Sub cmdOK_Click(Index As Integer)
Temp = "1"
If Index = 0 Then
If Option1(0).Value Then
GTempAnswer = "0"
Else
GTempAnswer = "1"
End If
Else
GTempAnswer = "2"
End If
Unload Me
End Sub
Private Sub Form_Load()
Temp = "0"
End Sub
Private Sub Form_Unload(Cancel As Integer)
If Temp <> "1" Then
GTempAnswer = "2"
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -