📄 tools.frm
字号:
VERSION 5.00
Begin VB.Form tools
AutoRedraw = -1 'True
BorderStyle = 4 'Fixed ToolWindow
Caption = "工具栏"
ClientHeight = 5400
ClientLeft = 45
ClientTop = 270
ClientWidth = 750
ControlBox = 0 'False
BeginProperty Font
Name = "宋体"
Size = 7.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
LinkTopic = "Form1"
LockControls = -1 'True
MaxButton = 0 'False
MDIChild = -1 'True
MinButton = 0 'False
ScaleHeight = 5400
ScaleWidth = 750
ShowInTaskbar = 0 'False
Begin VB.CommandButton Timedisplay
BackColor = &H00C0C0C0&
Enabled = 0 'False
Height = 285
Left = -15
MaskColor = &H000000FF&
Style = 1 'Graphical
TabIndex = 9
ToolTipText = "当前时间"
Top = 0
Width = 795
End
Begin VB.CommandButton ToolsCloseForm
Height = 585
Left = -15
Picture = "tools.frx":0000
Style = 1 'Graphical
TabIndex = 8
ToolTipText = "退出系统"
Top = 4845
Width = 795
End
Begin VB.CommandButton ToolsJsrGl
Height = 585
Left = -15
Picture = "tools.frx":0442
Style = 1 'Graphical
TabIndex = 7
ToolTipText = "经手人管理"
Top = 4275
Width = 795
End
Begin VB.CommandButton ToolsCpGl
Height = 585
Left = -15
Picture = "tools.frx":0884
Style = 1 'Graphical
TabIndex = 6
ToolTipText = "产品管理"
Top = 3705
Width = 795
End
Begin VB.CommandButton ToolsGuestGl
Height = 585
Left = -15
Picture = "tools.frx":0CC6
Style = 1 'Graphical
TabIndex = 5
ToolTipText = "客户管理"
Top = 3135
Width = 795
End
Begin VB.CommandButton ToolsFpFind
Height = 585
Left = -15
Picture = "tools.frx":1108
Style = 1 'Graphical
TabIndex = 4
ToolTipText = "查询所有的发票"
Top = 2565
Width = 795
End
Begin VB.CommandButton ToolsGuestFind
Height = 585
Left = -15
Picture = "tools.frx":154A
Style = 1 'Graphical
TabIndex = 3
ToolTipText = "查询客户的发票"
Top = 1995
Width = 795
End
Begin VB.CommandButton FpMoneyTj
Height = 585
Left = -15
Picture = "tools.frx":198C
Style = 1 'Graphical
TabIndex = 2
ToolTipText = "统计资金情况"
Top = 1425
Width = 795
End
Begin VB.CommandButton FpXiaoshouTj
Height = 585
Left = -15
Picture = "tools.frx":1DCE
Style = 1 'Graphical
TabIndex = 1
ToolTipText = "统计销售情况"
Top = 855
Width = 795
End
Begin VB.CommandButton NewFp
Height = 585
Left = -15
Picture = "tools.frx":2210
Style = 1 'Graphical
TabIndex = 0
ToolTipText = "开始销售(添写新发票单)"
Top = 285
Width = 795
End
Begin VB.Timer Timer1
Interval = 1000
Left = 555
Top = 4545
End
End
Attribute VB_Name = "tools"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Load()
'使窗口定位
tools.Top = 0
tools.Left = 0
Timedisplay.Caption = Time$
End Sub
Private Sub FpMoneyTj_Click()
tools.MousePointer = 11
Load TjZijin
tools.MousePointer = 0
TjZijin.Show 1
End Sub
Private Sub FpXiaoshouTj_Click()
tools.MousePointer = 11
Load TjXiaoshou
tools.MousePointer = 0
TjXiaoshou.Show 1
End Sub
Private Sub NewFp_Click()
tools.MousePointer = 11
Load main
tools.MousePointer = 0
main.Show 1
End Sub
Private Sub Timer1_Timer()
Timedisplay.Caption = Time$
End Sub
Private Sub ToolsCloseForm_Click()
Unload MDIStart
End Sub
Private Sub ToolsCpGl_Click()
tools.MousePointer = 11
Load cpform
tools.MousePointer = 0
cpform.Show 1
End Sub
Private Sub ToolsFpFind_Click()
tools.MousePointer = 11
Load FpFind
tools.MousePointer = 0
FpFind.Show 1
End Sub
Private Sub ToolsGuestFind_Click()
FindGuest = True
tools.MousePointer = 11
Load GuestGHuo
tools.MousePointer = 0
GuestGHuo.Show 1
End Sub
Private Sub ToolsGuestGl_Click()
FindGuest = False
tools.MousePointer = 11
Load guest
tools.MousePointer = 0
guest.Show 1
End Sub
Private Sub ToolsJsrGl_Click()
tools.MousePointer = 11
Load Jsrform1
tools.MousePointer = 0
Jsrform1.Show 1
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -