📄 ct_czcl.frm
字号:
VERSION 5.00
Begin VB.Form ct_czcl
BorderStyle = 3 'Fixed Dialog
ClientHeight = 4740
ClientLeft = -15
ClientTop = -15
ClientWidth = 3975
ControlBox = 0 'False
LinkTopic = "Form1"
LockControls = -1 'True
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 4740
ScaleWidth = 3975
ShowInTaskbar = 0 'False
StartUpPosition = 1 'CenterOwner
Begin VB.Frame Frame1
Height = 4455
Left = 60
TabIndex = 7
Top = 150
Width = 3840
Begin VB.CommandButton CMD_EXIT
Caption = "退 出(Esc)"
BeginProperty Font
Name = "黑体"
Size = 12
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 510
Left = 2040
TabIndex = 6
Top = 3780
Width = 1575
End
Begin VB.Frame Frame2
Height = 3045
Left = 180
TabIndex = 9
Top = 600
Width = 3465
Begin VB.OptionButton op_czcl
Caption = "长短款处理"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 405
Index = 5
Left = 300
TabIndex = 5
Top = 2350
Width = 1815
End
Begin VB.OptionButton op_czcl
Caption = "特种应收款处理"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 405
Index = 4
Left = 300
TabIndex = 4
Top = 1950
Width = 2025
End
Begin VB.OptionButton op_czcl
Caption = "付款方式错误 "
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 405
Index = 3
Left = 300
TabIndex = 3
Top = 1550
Width = 1815
End
Begin VB.OptionButton op_czcl
Caption = "对方帐号错误 "
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 405
Index = 2
Left = 300
TabIndex = 2
Top = 1150
Width = 1815
End
Begin VB.OptionButton op_czcl
Caption = "结算方式错误 "
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 405
Index = 1
Left = 300
TabIndex = 1
Top = 750
Width = 1815
End
Begin VB.OptionButton op_czcl
Caption = "台号错误(恢复餐厅台帐) "
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 405
Index = 0
Left = 300
TabIndex = 0
Top = 350
Value = -1 'True
Width = 2985
End
End
Begin VB.Label lb_title
Alignment = 2 'Center
Caption = "台帐错帐处理"
BeginProperty Font
Name = "宋体"
Size = 15
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 315
Index = 0
Left = 300
TabIndex = 8
Top = 270
Width = 3255
End
End
Begin VB.Timer XT_Timer
Interval = 1000
Left = 120
Top = 4380
End
End
Attribute VB_Name = "ct_czcl"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
'**************************************************************************************************
'* 功 能 :
'* 作 者 : 梁卫
'* 作成日期 : 1999.03.18
'* 修改日期 : 1999.03.18
'**************************************************************************************************
Private Sub CMD_EXIT_Click()
Unload Me
End Sub
Private Sub Form_Activate()
op_czcl(0).SetFocus
End Sub
'**************************************************************************************************
'* 功 能 :
'* 作 者 : 梁卫
'* 作成日期 : 1999.03.18
'* 修改日期 : 1999.03.18
'**************************************************************************************************
Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
If KeyCode = vbKeyEscape Then
Call CMD_EXIT_Click
End If
End Sub
'**************************************************************************************************
'* 功 能 :
'* 作 者 : 梁卫
'* 作成日期 : 1999.03.18
'* 修改日期 : 1999.03.18
'**************************************************************************************************
Private Sub Form_Load()
ct_czcl.KeyPreview = True
op_czcl(0).Value = True
End Sub
Private Sub op_czcl_KeyDown(Index As Integer, KeyCode As Integer, Shift As Integer)
If KeyCode = vbKeyReturn Then
Select Case Index
Case 0, 1, 2, 3 '台号错误(恢复餐厅台帐), 结算方式错误, 对方帐号错误, 付款方式错误
Dim temp_mtit As String
temp_mtit = "处理" & Trim(op_czcl(Index).Caption)
If Index = 3 Then
'???? do ct_fkcw with temp_mtit
Else
Call ct_ybcz.MAIN(Trim(temp_mtit), Index + 1)
ct_ybcz.Show (1)
End If
Case 4 '特种应收款处理
'ct_tzcl
Case 5 '长短款处理
'ct_cdcl
End Select
Call CMD_EXIT_Click
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -