📄 frmbrowse.frm
字号:
VERSION 5.00
Begin VB.Form frmBrowse
BorderStyle = 3 'Fixed Dialog
Caption = "数据浏览"
ClientHeight = 4455
ClientLeft = 45
ClientTop = 330
ClientWidth = 3645
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 4455
ScaleWidth = 3645
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Begin VB.CommandButton cmdClose
Cancel = -1 'True
Default = -1 'True
Height = 315
Left = 2040
Style = 1 'Graphical
TabIndex = 3
Top = 4080
UseMaskColor = -1 'True
Width = 1215
End
Begin VB.ListBox LstBrowse
Height = 3120
Left = 300
TabIndex = 2
Top = 840
Width = 3000
End
Begin VB.Label LblName
Caption = "名称"
Height = 200
Left = 300
TabIndex = 4
Top = 120
Width = 3000
End
Begin VB.Label LblLen
Caption = "长度"
Height = 195
Left = 300
TabIndex = 1
Top = 600
Width = 3000
End
Begin VB.Label LblType
Caption = "类型"
Height = 195
Left = 300
TabIndex = 0
Top = 360
Width = 3000
End
End
Attribute VB_Name = "frmBrowse"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
' 数据浏览窗体
' 作者:邓强
' 日期:1998.05.26
'
' 用于显示某一字段的数据
' (交叉表向导,标准表向导,列表向导调用)
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
Option Explicit
Private Sub cmdClose_Click()
'删除图片资源
Utility.RemoveFormResPicture 1022
Set Me.Icon = Nothing
Unload Me
End Sub
Private Sub Form_Load()
'装载图片资源
cmdClose.Picture = Utility.GetFormResPicture(1022, vbResBitmap)
'调用帮助文件
SetHelpID Me.hwnd, 70021
Set Me.Icon = Utility.GetFormResPicture(139, vbResIcon)
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -