📄 form1.frm
字号:
VERSION 5.00
Object = "{4932CEF1-2CAA-11D2-A165-0060081C43D9}#2.0#0"; "Actbar2.OCX"
Begin VB.Form Form1
Caption = "Form1"
ClientHeight = 3090
ClientLeft = 60
ClientTop = 450
ClientWidth = 4680
LinkTopic = "Form1"
ScaleHeight = 3090
ScaleWidth = 4680
StartUpPosition = 3 'Windows Default
Begin ActiveBar2LibraryCtl.ActiveBar2 ActiveBar21
Height = 255
Left = 120
TabIndex = 3
Top = 120
Width = 4455
_LayoutVersion = 1
_ExtentX = 7858
_ExtentY = 450
_DataPath = ""
Bands = "Form1.frx":0000
End
Begin VB.CommandButton Command3
Caption = "Command3"
Height = 495
Left = 1560
TabIndex = 2
Top = 2280
Width = 1335
End
Begin VB.CommandButton Command2
Caption = "Command2"
Height = 615
Left = 1560
TabIndex = 1
Top = 1200
Width = 1335
End
Begin VB.CommandButton Command1
Caption = "Command1"
Height = 495
Left = 1560
TabIndex = 0
Top = 480
Width = 1335
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub ActiveBar21_ToolClick(ByVal Tool As ActiveBar2LibraryCtl.Tool)
Select Case Tool.Name
Case "aaa"
Unload Me
Dim ir1 As ICommand
Set ir1 = New clsRemoveIndex
ir1.OnClick
Case "bbb"
Unload Me
Dim ir2 As ICommand
Set ir2 = New clsCreateIndex
ir2.OnClick
Case "eee"
Unload Me
Dim ir3 As ICommand
Set ir3 = New clsCalculateIndex
ir3.OnClick
End Select
End Sub
Private Sub Command3_Click()
Unload Me
Dim ir3 As ICommand
Set ir3 = New clsCalculateIndex
ir3.OnClick
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -