addrow9.frm
来自「一个关于电脑管理汽车的软件」· FRM 代码 · 共 311 行
FRM
311 行
VERSION 5.00
Object = "{40D97E01-4259-4398-B597-183C348B488F}#1.0#0"; "BSE.ocx"
Begin VB.Form AddRow9
BorderStyle = 1 'Fixed Single
Caption = "其它项目编辑"
ClientHeight = 3855
ClientLeft = 45
ClientTop = 435
ClientWidth = 9225
LinkTopic = "Form1"
LockControls = -1 'True
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 3855
ScaleWidth = 9225
StartUpPosition = 3 'Windows Default
Begin VB.Frame Frame1
BeginProperty Font
Name = "MS Sans Serif"
Size = 9.75
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 3135
Left = 0
TabIndex = 2
Top = 0
Width = 9255
Begin VB.CommandButton cmdFind
Height = 375
Left = 8760
Picture = "AddRow9.frx":0000
Style = 1 'Graphical
TabIndex = 13
Top = 480
Width = 375
End
Begin VB.TextBox TexGoods
Height = 375
Index = 3
Left = 1440
TabIndex = 12
Top = 2400
Width = 2295
End
Begin VB.TextBox TexGoods
Height = 375
Index = 2
Left = 1440
TabIndex = 11
Top = 1920
Width = 2295
End
Begin VB.TextBox TexGoods
Height = 375
Index = 1
Left = 1440
TabIndex = 10
Top = 1440
Width = 2295
End
Begin VB.TextBox TexGoods
Height = 375
Index = 0
Left = 1440
Locked = -1 'True
TabIndex = 9
Top = 480
Width = 7335
End
Begin VB.ComboBox Combo1
Height = 315
Index = 0
Left = 1440
TabIndex = 3
Top = 960
Width = 2295
End
Begin VB.Label Label1
Caption = "项目描述:"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00800000&
Height = 255
Index = 1
Left = 240
TabIndex = 8
Top = 480
Width = 1215
End
Begin VB.Label Label1
Caption = "项目分类:"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00800000&
Height = 255
Index = 2
Left = 240
TabIndex = 7
Top = 960
Width = 1215
End
Begin VB.Label Label1
Caption = "单价:"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00800000&
Height = 255
Index = 7
Left = 240
TabIndex = 6
Top = 1440
Width = 1215
End
Begin VB.Label Label1
Caption = "数量:"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00800000&
Height = 255
Index = 9
Left = 240
TabIndex = 5
Top = 1920
Width = 1215
End
Begin VB.Label Label1
Caption = "金额:"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00800000&
Height = 255
Index = 10
Left = 240
TabIndex = 4
Top = 2400
Width = 1215
End
End
Begin VB.CommandButton cmdOK
Caption = "确 定"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 2640
TabIndex = 1
Top = 3240
Width = 1215
End
Begin VB.CommandButton cmdCancel
Caption = "取 消"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 4680
TabIndex = 0
Top = 3240
Width = 1215
End
Begin BSE_Engine.BSE BSE1
Left = 2400
Top = 3240
_ExtentX = 6588
_ExtentY = 1085
End
End
Attribute VB_Name = "AddRow9"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub cmdCancel_Click()
Unload Me
End Sub
Private Sub cmdFind_Click()
VarInitData.SearchMaintainAppend = 1
MaintainAppendFind.Show 1
End Sub
Private Sub cmdOk_Click()
Dim TempIndex As Long
Dim TempCount As Long
Dim i As Long
Dim TempMoney As Double
With MeetCarBill.lstBillDocu(2)
If MeetCarBill.ModifyBS = False Then
.ListItems.Add
TempIndex = .ListItems.Count
Else
TempIndex = .SelectedItem.Index
End If
With .ListItems(TempIndex)
.Text = TexGoods(0)
.SubItems(1) = Combo1(0)
.SubItems(2) = TexGoods(1)
.SubItems(3) = TexGoods(2)
.SubItems(4) = TexGoods(3)
End With
End With
With MeetCarBill
.ModifyBS = False
TempCount = .lstBillDocu(2).ListItems.Count
TempMoney = 0
For i = 1 To TempCount
TempMoney = TempMoney + Val(.lstBillDocu(2).ListItems(i).SubItems(4))
Next i
.Label2(5) = VarFunction.DefFormat(TempMoney)
End With
Unload Me
End Sub
Private Sub Combo1_KeyDown(Index As Integer, KeyCode As Integer, Shift As Integer)
Combo1(Index).Text = ""
End Sub
Private Sub Combo1_KeyUp(Index As Integer, KeyCode As Integer, Shift As Integer)
Combo1(Index).Text = ""
End Sub
Private Sub Form_Load()
Dim TempSQL As String
VarInitData.InitBSE BSE1, 0
TempSQL = VarInitData.DisplayDynSQLVal(VarInitData.SureNameFrIndex(10))
VarInitData.LoadData Combo1(0), TempSQL, 1
With MeetCarBill
If .ModifyBS = True Then
With .lstBillDocu(2).SelectedItem
TexGoods(0) = .Text
Combo1(0) = .SubItems(1)
TexGoods(1) = .SubItems(2)
TexGoods(2) = .SubItems(3)
TexGoods(3) = .SubItems(4)
End With
End If
End With
End Sub
Private Sub Form_Unload(Cancel As Integer)
If BSE1.EngineStarted Then BSE1.EndSubClassing
MeetCarBill.ModifyBS = False
End Sub
Private Sub TexGoods_Change(Index As Integer)
If Index = 2 Or Index = 1 Then
TexGoods(3) = Format(Val(TexGoods(1)) * Val(TexGoods(2)), "0.00")
End If
End Sub
Private Sub TexGoods_LostFocus(Index As Integer)
If Index = 1 Or Index = 3 Then
TexGoods(Index) = Format(TexGoods(Index), "0.00")
End If
End Sub
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?