📄 form5.frm
字号:
_ExtentY = 661
ConnectMode = 0
CursorLocation = 3
IsolationLevel = -1
ConnectionTimeout= 15
CommandTimeout = 30
CursorType = 3
LockType = 3
CommandType = 8
CursorOptions = 0
CacheSize = 50
MaxRecords = 0
BOFAction = 0
EOFAction = 0
ConnectStringType= 3
Appearance = 1
BackColor = -2147483643
ForeColor = -2147483640
Orientation = 0
Enabled = -1
Connect = "DSN=disk"
OLEDBString = ""
OLEDBFile = ""
DataSourceName = "disk"
OtherAttributes = ""
UserName = ""
Password = ""
RecordSource = "select * from 光盘信息表GP1"
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.Label Label2
BackStyle = 0 'Transparent
DataField = "编号"
DataSource = "Adodc1"
BeginProperty Font
Name = "楷体_GB2312"
Size = 12
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 495
Left = 2040
TabIndex = 16
Top = 1080
Width = 1455
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "软件名称"
BeginProperty Font
Name = "楷体_GB2312"
Size = 12
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 495
Index = 6
Left = 480
TabIndex = 6
Top = 2040
Width = 1575
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "出版社"
BeginProperty Font
Name = "楷体_GB2312"
Size = 12
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 495
Index = 5
Left = 600
TabIndex = 5
Top = 2880
Width = 1575
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "盘数(盘/套)"
BeginProperty Font
Name = "楷体_GB2312"
Size = 12
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 495
Index = 4
Left = 3600
TabIndex = 4
Top = 1200
Width = 1815
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "进货量(套)"
BeginProperty Font
Name = "楷体_GB2312"
Size = 12
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 495
Index = 3
Left = 3720
TabIndex = 3
Top = 2040
Width = 1575
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "套价(元/套)"
BeginProperty Font
Name = "楷体_GB2312"
Size = 12
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 495
Index = 2
Left = 3600
TabIndex = 2
Top = 2880
Width = 1815
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "摘要"
BeginProperty Font
Name = "楷体_GB2312"
Size = 12
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 495
Index = 1
Left = 7440
TabIndex = 1
Top = 1080
Width = 1575
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "编号"
BeginProperty Font
Name = "楷体_GB2312"
Size = 12
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 495
Index = 0
Left = 840
TabIndex = 0
Top = 1200
Width = 1575
End
End
Attribute VB_Name = "Form5"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Conn As ADODB.Connection
Private RS As ADODB.Recordset
Private Sub Command1_Click()
Dim str As String
Set RS.ActiveConnection = Conn
RS.CursorType = adOpenForwardOnly
Adodc1.Recordset.AddNew
str = "select * from 光盘信息表GP1"
RS.Open str
RS.MoveLast
Label2.Caption = RS.Fields("编号") + 1
RS.Close
End Sub
Private Sub Command2_Click()
Adodc1.Recordset.AddNew
Adodc1.Refresh
Adodc1.Recordset.MoveLast
Form8.Show
End Sub
Private Sub Command3_Click()
Form1.Show
Unload Me
End Sub
Private Sub Form_Load()
Set Conn = New ADODB.Connection
Set RS = New Recordset
Set comm = New ADODB.Command
Conn.CursorLocation = adUseClient
Conn.Open "dsn=disk", "", ""
End Sub
Private Sub Timer1_Timer()
Text2.Text = " 光盘信息GP1输入"
End Sub
Private Sub Timer2_Timer()
Text2.Text = " 光盘信息GP1输入 "
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -