📄 main_tjxfp.frm
字号:
VERSION 5.00
Begin VB.Form main_tjxfp
BackColor = &H00C0C0C0&
Caption = "添加消费品"
ClientHeight = 6750
ClientLeft = 60
ClientTop = 345
ClientWidth = 7425
LinkTopic = "Form1"
ScaleHeight = 6750
ScaleWidth = 7425
StartUpPosition = 3 '窗口缺省
Begin VB.Data Data1
Caption = "Data1"
Connect = "Access"
DatabaseName = ""
DefaultCursorType= 0 '缺省游标
DefaultType = 2 '使用 ODBC
Exclusive = 0 'False
Height = 495
Left = 1680
Options = 0
ReadOnly = 0 'False
RecordsetType = 1 'Dynaset
RecordSource = "xfp"
Top = 240
Visible = 0 'False
Width = 1935
End
Begin VB.CommandButton Command3
Caption = "退出"
Height = 495
Left = 5280
TabIndex = 16
Top = 5040
Width = 1095
End
Begin VB.CommandButton Command2
Caption = "取消"
Height = 495
Left = 3120
TabIndex = 15
Top = 5040
Width = 1095
End
Begin VB.CommandButton Command1
Caption = "确定"
Height = 495
Left = 1200
TabIndex = 14
Top = 5040
Width = 1095
End
Begin VB.TextBox Text7
Height = 495
Left = 2040
TabIndex = 13
Top = 3600
Width = 1575
End
Begin VB.TextBox Text6
Height = 495
Left = 5520
TabIndex = 11
Top = 2640
Width = 1575
End
Begin VB.TextBox Text5
Height = 495
Left = 2040
TabIndex = 9
Top = 2640
Width = 1575
End
Begin VB.TextBox Text4
Height = 495
Left = 5520
TabIndex = 7
Top = 1800
Width = 1575
End
Begin VB.TextBox Text3
Height = 495
Left = 2040
TabIndex = 5
Top = 1800
Width = 1575
End
Begin VB.TextBox Text2
Height = 495
Left = 5520
TabIndex = 3
Top = 960
Width = 1575
End
Begin VB.TextBox Text1
Height = 495
Left = 2040
TabIndex = 1
Top = 960
Width = 1575
End
Begin VB.Label Label7
BackStyle = 0 'Transparent
Caption = "日期"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 840
TabIndex = 12
Top = 3720
Width = 1215
End
Begin VB.Label Label6
BackStyle = 0 'Transparent
Caption = "金额"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 615
Left = 4440
TabIndex = 10
Top = 2760
Width = 1095
End
Begin VB.Label Label5
BackStyle = 0 'Transparent
Caption = "数量"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 840
TabIndex = 8
Top = 2640
Width = 1215
End
Begin VB.Label Label4
BackStyle = 0 'Transparent
Caption = "单价"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 615
Left = 4440
TabIndex = 6
Top = 1800
Width = 1095
End
Begin VB.Label Label3
BackStyle = 0 'Transparent
Caption = "单位"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 840
TabIndex = 4
Top = 1800
Width = 1215
End
Begin VB.Label Label2
BackStyle = 0 'Transparent
Caption = "类型"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 615
Left = 4440
TabIndex = 2
Top = 1080
Width = 1095
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "名称"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 840
TabIndex = 0
Top = 960
Width = 1215
End
End
Attribute VB_Name = "main_tjxfp"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Data1.Recordset.AddNew
Data1.Recordset.Fields("名称") = Text1.Text
Data1.Recordset.Fields("类型") = Text2.Text
Data1.Recordset.Fields("单位") = Text3.Text
Data1.Recordset.Fields("单价") = Text4.Text
Data1.Recordset.Fields("数量") = Text5.Text
Data1.Recordset.Fields("金额") = Text6.Text
Data1.Recordset.Fields("日期") = Text7.Text
Data1.Recordset.Update '更新记录
Data1.Refresh
Text1.Text = "": Text2.Text = "": Text3.Text = ""
Text4.Text = "": Text5.Text = "": Text6.Text = ""
Text7.Text = ""
End Sub
Private Sub Command2_Click()
Text1.Text = "": Text2.Text = "": Text3.Text = ""
Text4.Text = "": Text5.Text = "": Text6.Text = ""
Text7.Text = ""
End Sub
Private Sub Command3_Click()
main.Enabled = True
Unload Me
End Sub
Private Sub Form_Load()
Data1.DatabaseName = App.Path & "\db.MDB"
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -