📄 frm_xstj.frm
字号:
VERSION 5.00
Object = "{67397AA1-7FB1-11D0-B148-00A0C922E820}#6.0#0"; "MSADODC.OCX"
Object = "{86CF1D34-0C5F-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCT2.OCX"
Begin VB.Form Frm_xstj
BorderStyle = 1 'Fixed Single
Caption = "销售信息添加"
ClientHeight = 5280
ClientLeft = 3660
ClientTop = 2805
ClientWidth = 8175
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 5280
ScaleWidth = 8175
Begin MSComCtl2.DTPicker DTPicker1
Height = 375
Left = 5640
TabIndex = 7
Top = 2760
Width = 1815
_ExtentX = 3201
_ExtentY = 661
_Version = 393216
Format = 67502081
CurrentDate = 39395
End
Begin MSAdodcLib.Adodc Adodc1
Height = 375
Left = 3720
Top = 4200
Visible = 0 'False
Width = 1455
_ExtentX = 2566
_ExtentY = 661
ConnectMode = 0
CursorLocation = 3
IsolationLevel = -1
ConnectionTimeout= 15
CommandTimeout = 30
CursorType = 3
LockType = 3
CommandType = 1
CursorOptions = 0
CacheSize = 50
MaxRecords = 0
BOFAction = 0
EOFAction = 0
ConnectStringType= 1
Appearance = 1
BackColor = -2147483643
ForeColor = -2147483640
Orientation = 0
Enabled = -1
Connect = "Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=shop"
OLEDBString = "Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=shop"
OLEDBFile = ""
DataSourceName = ""
OtherAttributes = ""
UserName = ""
Password = ""
RecordSource = "select * from 销售表"
Caption = "Adodc1"
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋体"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
_Version = 393216
End
Begin VB.CommandButton Cmdexit
Caption = "退出"
Height = 400
Left = 4800
TabIndex = 10
Top = 4680
Width = 855
End
Begin VB.CommandButton Cmdadd
Caption = "添加"
Default = -1 'True
Height = 400
Left = 1800
TabIndex = 9
Top = 4680
Width = 855
End
Begin VB.Frame Frame2
Height = 735
Left = 120
TabIndex = 21
Top = 4440
Width = 7935
End
Begin VB.Frame Frame1
Height = 4455
Left = 120
TabIndex = 11
Top = 0
Width = 7935
Begin VB.TextBox Text1
Height = 375
Index = 0
Left = 1680
TabIndex = 0
Top = 360
Width = 1815
End
Begin VB.TextBox Text1
Height = 375
Index = 1
Left = 5520
TabIndex = 1
Top = 360
Width = 1815
End
Begin VB.TextBox Text1
Height = 375
Index = 2
Left = 1680
TabIndex = 2
Top = 1200
Width = 1815
End
Begin VB.TextBox Text1
Height = 375
Index = 3
Left = 5520
TabIndex = 3
Top = 1200
Width = 1815
End
Begin VB.TextBox Text1
Height = 375
Index = 4
Left = 1800
TabIndex = 4
Top = 2040
Width = 1815
End
Begin VB.TextBox Text1
Height = 375
Index = 6
Left = 5520
TabIndex = 5
Top = 1920
Width = 1815
End
Begin VB.TextBox Text1
Height = 375
Index = 5
Left = 1680
TabIndex = 6
Top = 2880
Width = 1815
End
Begin VB.TextBox Text1
Height = 375
Index = 7
Left = 1680
TabIndex = 8
Tag = "Text2Text2"
Top = 3600
Width = 1815
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "销售编号"
Height = 255
Left = 600
TabIndex = 20
Top = 360
Width = 735
End
Begin VB.Label Label2
BackStyle = 0 'Transparent
Caption = "药品类型名称"
Height = 255
Left = 4080
TabIndex = 19
Top = 360
Width = 1095
End
Begin VB.Label Label3
BackStyle = 0 'Transparent
Caption = "药品名称"
Height = 255
Left = 600
TabIndex = 18
Top = 1200
Width = 735
End
Begin VB.Label Label4
BackStyle = 0 'Transparent
Caption = "规格"
Height = 255
Left = 4800
TabIndex = 17
Top = 1200
Width = 375
End
Begin VB.Label Label5
BackStyle = 0 'Transparent
Caption = "价格"
Height = 255
Left = 960
TabIndex = 16
Top = 2160
Width = 375
End
Begin VB.Label Label6
BackStyle = 0 'Transparent
Caption = "总金额"
Height = 255
Left = 720
TabIndex = 15
Top = 2880
Width = 615
End
Begin VB.Label Label7
BackStyle = 0 'Transparent
Caption = "销售日期"
Height = 255
Left = 4440
TabIndex = 14
Top = 2880
Width = 735
End
Begin VB.Label Label8
BackStyle = 0 'Transparent
Caption = "连锁店名称"
Height = 255
Left = 360
TabIndex = 13
Top = 3720
Width = 975
End
Begin VB.Label Label9
BackStyle = 0 'Transparent
Caption = "总数量"
Height = 255
Left = 4560
TabIndex = 12
Top = 1920
Width = 615
End
End
End
Attribute VB_Name = "Frm_xstj"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Activate()
Text1(1).SetFocus
Adodc1.RecordSource = "select * from 销售表 order by 销售编号"
Adodc1.Refresh
If Adodc1.Recordset.RecordCount > 0 Then
Adodc1.Recordset.MoveLast
Text1(0).Text = Format(Adodc1.Recordset.Fields("销售编号") + 1, "0")
Else
Text1(0).Text = "1"
End If
End Sub
Private Sub Cmdadd_Click()
Dim AdoRs As New ADODB.Recordset
Dim sql As String
If IsNumeric(Text1(0).Text) = False Then
MsgBox "请输入数字!"
Text1(0).SetFocus
Exit Sub
End If
If Text1(0).Text = "" Or Text1(1).Text = "" Or Text1(2).Text = "" Then
MsgBox "重要内容不能为空!"
Text1(0).SetFocus
Exit Sub
End If
AdoRs.Open "select * from 销售表", cnn, adOpenKeyset, adLockOptimistic
AdoRs.AddNew
For i = 0 To 3
AdoRs.Fields(i) = Text1(i).Text
Next i
For i = 4 To 5
AdoRs.Fields("价格") = Val(Text1(4).Text)
AdoRs.Fields("总金额") = Val(Text1(5).Text)
Next i
AdoRs.Fields("销售日期") = DTPicker1.Value
For i = 6 To 7
AdoRs.Fields("总数量") = Text1(6).Text
AdoRs.Fields("连锁店名称") = Text1(7).Text
Next i
AdoRs.Update
AdoRs.Close
Frm_xsxx.Adodc1.Refresh
Unload Me
End Sub
Private Sub Cmdexit_Click()
Unload Me
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -