📄 form6.frm
字号:
VERSION 5.00
Begin VB.Form Form6
BorderStyle = 1 'Fixed Single
Caption = "Form6"
ClientHeight = 8655
ClientLeft = 45
ClientTop = 435
ClientWidth = 13290
LinkTopic = "Form6"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 8655
ScaleWidth = 13290
StartUpPosition = 3 '窗口缺省
Begin VB.CommandButton Command3
Caption = "打印数据"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 540
Left = 7680
TabIndex = 5
Top = 7800
Width = 1695
End
Begin VB.CommandButton Command2
Caption = "修改数据"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 540
Left = 5880
TabIndex = 4
Top = 7800
Width = 1695
End
Begin VB.CommandButton Command1
Caption = "确认删除"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 540
Left = 4080
TabIndex = 2
Top = 7800
Width = 1695
End
Begin VB.ListBox List1
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 6540
ItemData = "Form6.frx":0000
Left = 360
List = "Form6.frx":0002
TabIndex = 0
Top = 960
Width = 12495
End
Begin VB.Label Label9
AutoSize = -1 'True
Caption = "卸车费"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 240
Left = 11040
TabIndex = 12
Top = 720
Width = 720
End
Begin VB.Label Label8
AutoSize = -1 'True
Caption = "运费"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 240
Left = 9840
TabIndex = 11
Top = 720
Width = 480
End
Begin VB.Label Label7
AutoSize = -1 'True
Caption = "金额"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 240
Left = 8520
TabIndex = 10
Top = 720
Width = 480
End
Begin VB.Label Label6
AutoSize = -1 'True
Caption = "单价"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 240
Left = 7320
TabIndex = 9
Top = 720
Width = 480
End
Begin VB.Label Label5
AutoSize = -1 'True
Caption = "斤数"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 240
Left = 5880
TabIndex = 8
Top = 720
Width = 480
End
Begin VB.Label Label4
AutoSize = -1 'True
Caption = "单号"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 240
Left = 4680
TabIndex = 7
Top = 720
Width = 480
End
Begin VB.Label Label3
AutoSize = -1 'True
Caption = "购入日期"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 240
Left = 2640
TabIndex = 6
Top = 720
Width = 960
End
Begin VB.Label Label2
AutoSize = -1 'True
Caption = "品种购入明细查询"
BeginProperty Font
Name = "黑体"
Size = 14.25
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 285
Left = 5160
TabIndex = 3
Top = 240
Width = 2280
End
Begin VB.Label Label1
AutoSize = -1 'True
Caption = "品种"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 240
Left = 360
TabIndex = 1
Top = 720
Width = 480
End
End
Attribute VB_Name = "Form6"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Dim arr_number(300)
Dim f_formshow
Private Sub Command1_Click()
t_YesNo = MsgBox("是否确认删除", vbYesNo)
If t_YesNo = 7 Then
GoSub exit_Command1_Click
End If
Dim cnn1 As ADODB.Connection
Dim cmd1 As ADODB.Command
Dim rs1 As ADODB.Recordset
Set cnn1 = New ADODB.Connection
cnn1.Open "Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=C:\Documents and Settings\jujumao\My Documents\粤丰饲料\粤丰饲料经营情况.mdb;"
Set cmd1 = New ADODB.Command
SQL = "delete from 品种购入表 where 编号=" & arr_number(List1.ListIndex)
With cmd1
.ActiveConnection = cnn1
.CommandText = SQL
.CommandType = adCmdText
.Execute
End With
SQL = "select 编号,品种 ,年份 ,月份 ,日期 ,单号 ," & _
"购入斤数 ,购入单价,购入金额,运费,卸车费 from 品种购入表 where " & _
"品种= " & "'" & g_breed & "'" & " and 年份 = " & g_year & "and 月份=" & g_month & " order by 编号"
With cmd1
.ActiveConnection = cnn1
.CommandText = SQL
.CommandType = adCmdText
End With
Set rs1 = cmd1.Execute
j = 0
List1.Clear
If rs1.EOF Then
MsgBox ("没有查询到记录")
Command1.Enabled = False
Command2.Enabled = False
cnn1.Close
Set cnn1 = Nothing
GoSub exit_Command1_Click
End If
rs1.MoveFirst
While Not rs1.EOF
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -