📄 frm_addlabor.frm
字号:
VERSION 5.00
Object = "{5E9E78A0-531B-11CF-91F6-C2863C385E30}#1.0#0"; "MSFLXGRD.OCX"
Begin VB.Form Frm_AddLabor
Caption = "Form1"
ClientHeight = 9060
ClientLeft = 3180
ClientTop = 1320
ClientWidth = 9900
Icon = "Frm_AddLabor.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
ScaleHeight = 9060
ScaleWidth = 9900
Begin VB.CommandButton Cmd_Cancel
Caption = "退出"
Height = 375
Left = 7680
TabIndex = 23
Top = 8280
Width = 1575
End
Begin VB.CommandButton Cmd_ok
Caption = "提交"
Height = 420
Left = 1680
TabIndex = 22
Top = 8280
Width = 1335
End
Begin VB.Frame Frame1
Caption = "人工估价"
Height = 7455
Left = 360
TabIndex = 2
Top = 720
Width = 9375
Begin MSFlexGridLib.MSFlexGrid Grid_Labor
Height = 3135
Left = 240
TabIndex = 28
Top = 360
Width = 4095
_ExtentX = 7223
_ExtentY = 5530
_Version = 393216
AllowUserResizing= 1
Appearance = 0
End
Begin VB.CommandButton Cmd_DelLabor
Caption = "整行删除"
Height = 300
Left = 480
TabIndex = 27
Top = 6960
Width = 1695
End
Begin VB.TextBox txt_Disc
Height = 270
Left = 5640
TabIndex = 25
Text = "100"
Top = 2160
Width = 375
End
Begin VB.TextBox Txt_CoPrice
Alignment = 1 'Right Justify
Height = 270
Left = 7440
TabIndex = 19
Text = "0"
Top = 2640
Width = 855
End
Begin VB.CheckBox Chk_Co
Caption = "有外加工"
Height = 375
Left = 5040
TabIndex = 18
Top = 2520
Width = 1095
End
Begin VB.TextBox Txt_LblPrice
Height = 270
Left = 5640
TabIndex = 16
Text = "Text2"
Top = 1200
Width = 735
End
Begin VB.ComboBox Comb_Unit
Height = 300
Left = 7440
TabIndex = 15
Text = "Combo3"
Top = 1200
Width = 1335
End
Begin VB.TextBox Txt_During
Height = 270
Left = 8040
TabIndex = 13
Text = "3"
Top = 1680
Width = 375
End
Begin VB.ComboBox Comb_Qer
Height = 300
Left = 5640
TabIndex = 12
Text = "Combo2"
Top = 1680
Width = 975
End
Begin VB.ComboBox Comb_Labor
Height = 300
Left = 5880
TabIndex = 11
Text = "Combo1"
Top = 600
Width = 2895
End
Begin VB.CommandButton Cmd_EditLabor
Caption = "修改"
Height = 255
Left = 7200
TabIndex = 10
Top = 3240
Width = 1215
End
Begin VB.CommandButton Cmd_AddLabor
Caption = "加入"
Height = 255
Left = 5160
TabIndex = 9
Top = 3240
Width = 1215
End
Begin MSFlexGridLib.MSFlexGrid Grid_SelectedLabor
Height = 2895
Left = 240
TabIndex = 3
Top = 3960
Width = 8655
_ExtentX = 15266
_ExtentY = 5106
_Version = 393216
SelectionMode = 1
Appearance = 0
End
Begin VB.Label Label10
Caption = "%"
Height = 255
Left = 6120
TabIndex = 26
Top = 2160
Width = 375
End
Begin VB.Label Label9
Caption = "折扣:"
Height = 255
Left = 4920
TabIndex = 24
Top = 2160
Width = 615
End
Begin VB.Label Lbl_Co
Caption = "外加工费:"
Height = 255
Left = 6360
TabIndex = 21
Top = 2640
Width = 975
End
Begin VB.Label Lbl_Yuan
Caption = "元"
Height = 255
Left = 8520
TabIndex = 20
Top = 2640
Visible = 0 'False
Width = 255
End
Begin VB.Label Label8
Caption = "元"
Height = 255
Left = 6480
TabIndex = 17
Top = 1200
Width = 255
End
Begin VB.Label Label7
Caption = "个月"
Height = 255
Left = 8520
TabIndex = 14
Top = 1680
Width = 495
End
Begin VB.Label Label6
Caption = "保修期:"
Height = 255
Left = 6840
TabIndex = 8
Top = 1680
Width = 735
End
Begin VB.Label Label5
Caption = "质量人:"
Height = 255
Left = 4920
TabIndex = 7
Top = 1680
Width = 855
End
Begin VB.Label Label4
Caption = "班组:"
Height = 255
Left = 6840
TabIndex = 6
Top = 1200
Width = 615
End
Begin VB.Label Label3
Caption = "价 格:"
Height = 255
Left = 4920
TabIndex = 5
Top = 1200
Width = 855
End
Begin VB.Label Label2
Caption = "项目名称:"
Height = 255
Left = 4920
TabIndex = 4
Top = 720
Width = 855
End
End
Begin VB.TextBox Txt_Chepai
Height = 270
Left = 1560
TabIndex = 0
Top = 240
Width = 1815
End
Begin VB.Label Label1
Caption = "维修车辆:"
Height = 255
Left = 360
TabIndex = 1
Top = 240
Width = 975
End
End
Attribute VB_Name = "Frm_AddLabor"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub chk_Co_Click()
If Chk_Co.Value = False Then
Txt_CoPrice.Text = "0"
Lbl_Co.Visible = False
Txt_CoPrice.Visible = False
Lbl_Yuan.Visible = False
Else
Txt_CoPrice.Text = "0"
Lbl_Co.Visible = True
Txt_CoPrice.Visible = True
Lbl_Yuan.Visible = True
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -