📄 frmlist.frm
字号:
VERSION 5.00
Begin VB.Form frmList
Caption = "查询结果 "
ClientHeight = 5370
ClientLeft = 60
ClientTop = 450
ClientWidth = 7425
LinkTopic = "Form1"
ScaleHeight = 5370
ScaleWidth = 7425
StartUpPosition = 2 'CenterScreen
Begin VB.CommandButton cmdExit
Caption = "退 出"
Height = 495
Left = 4200
TabIndex = 2
Top = 4440
Width = 1575
End
Begin VB.CommandButton cmdBack
Caption = "返 回"
Height = 495
Left = 1320
TabIndex = 1
Top = 4440
Width = 1335
End
Begin VB.ListBox lstSelect
Height = 3570
ItemData = "frmList.frx":0000
Left = 480
List = "frmList.frx":0002
TabIndex = 0
Top = 360
Width = 6375
End
End
Attribute VB_Name = "frmList"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub cmdBack_Click()
Unload Me
frmSelect.Show
End Sub
Private Sub cmdExit_Click()
Dim response
response = MsgBox("是否退出?", vbOKCancel + vbQuestion, "退出")
If response = 1 Then
End
End If
End Sub
Private Sub Form_Load()
lstSelect.AddItem "分类编号 录像名称 收费标准 大类 小类 架位 录像数量 库存数量"
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -