📄 gnjj1.frm
字号:
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
Begin VB.Form gnjj1
BorderStyle = 1 'Fixed Single
Caption = "功能简介"
ClientHeight = 6375
ClientLeft = 45
ClientTop = 330
ClientWidth = 9375
Icon = "gnjj1.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 6375
ScaleWidth = 9375
StartUpPosition = 2 '屏幕中心
Begin MSComctlLib.ImageList ImageList1
Left = 1560
Top = 2040
_ExtentX = 1005
_ExtentY = 1005
BackColor = -2147483643
ImageWidth = 32
ImageHeight = 32
MaskColor = 12632256
_Version = 393216
BeginProperty Images {2C247F25-8591-11D1-B16A-00C0F0283628}
NumListImages = 1
BeginProperty ListImage1 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "gnjj1.frx":0442
Key = ""
EndProperty
EndProperty
End
Begin MSComctlLib.TreeView TreeView1
Height = 6375
Left = 0
TabIndex = 0
Top = 0
Width = 3015
_ExtentX = 5318
_ExtentY = 11245
_Version = 393217
LineStyle = 1
Style = 7
ImageList = "ImageList1"
Appearance = 1
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
End
Begin VB.PictureBox Picture1
BackColor = &H8000000B&
Height = 6375
Left = 3000
MousePointer = 9 'Size W E
ScaleHeight = 6315
ScaleWidth = 75
TabIndex = 2
Top = 0
Width = 135
End
Begin VB.TextBox Text1
BackColor = &H00FFFFFF&
BeginProperty Font
Name = "宋体"
Size = 14.25
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000080&
Height = 6375
Left = 3120
MultiLine = -1 'True
TabIndex = 1
Top = 0
Width = 6255
End
End
Attribute VB_Name = "gnjj1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Activate()
'Dim a(7) As Node
Set a = TreeView1.Nodes.Add(, , , "功能简介", 1)
Set a0 = TreeView1.Nodes.Add(a, tvwChild, , "基本信息", 1)
TreeView1.Nodes.Add a0, tvwChild, "a0", "商品基本信息", 1
TreeView1.Nodes.Add a0, tvwChild, "b0", "职员基本信息", 1
TreeView1.Nodes.Add a0, tvwChild, "c0", "客户基本信息", 1
Set a1 = TreeView1.Nodes.Add(a, tvwChild, , "入库管理", 1)
TreeView1.Nodes.Add a1, tvwChild, "a1", "商品直接入库", 1
TreeView1.Nodes.Add a1, tvwChild, "b1", "添加商品订货单", 1
TreeView1.Nodes.Add a1, tvwChild, "c1", "订货单处理", 1
TreeView1.Nodes.Add a1, tvwChild, "d1", "订货单查询", 1
TreeView1.Nodes.Add a1, tvwChild, "e1", "订货退货", 1
Set a2 = TreeView1.Nodes.Add(a, tvwChild, , "出库管理", 1)
TreeView1.Nodes.Add a2, tvwChild, "a2", "商品直接出库", 1
TreeView1.Nodes.Add a2, tvwChild, "b2", "添加商品销货单", 1
TreeView1.Nodes.Add a2, tvwChild, "c2", "销货单处理", 1
TreeView1.Nodes.Add a2, tvwChild, "d2", "销货单查询", 1
TreeView1.Nodes.Add a2, tvwChild, "e2", "销货退货", 1
Set a3 = TreeView1.Nodes.Add(a, tvwChild, , "库存管理", 1)
TreeView1.Nodes.Add a3, tvwChild, "c3", "库存查询", 1
TreeView1.Nodes.Add a3, tvwChild, "d3", "库存盘点", 1
TreeView1.Nodes.Add a3, tvwChild, "e3", "库存盘点查询", 1
Set a4 = TreeView1.Nodes.Add(a, tvwChild, , "结算帐款", 1)
TreeView1.Nodes.Add a4, tvwChild, "c4", "应收帐款", 1
TreeView1.Nodes.Add a4, tvwChild, "d4", "应付帐款", 1
TreeView1.Nodes.Add a4, tvwChild, "e4", "其他", 1
Set a5 = TreeView1.Nodes.Add(a, tvwChild, , "辅助功能", 1)
TreeView1.Nodes.Add a5, tvwChild, "c5", "工资管理", 1
TreeView1.Nodes.Add a5, tvwChild, "d5", "报表中心", 1
TreeView1.Nodes.Add a5, tvwChild, "e5", "财务结算", 1
'TreeView1.Nodes.Add a5, tvwChild, "e5", "财务结算", 1
Set a6 = TreeView1.Nodes.Add(a, tvwChild, , "系统维护", 1)
TreeView1.Nodes.Add a6, tvwChild, "a6", "操作人员管理", 1
TreeView1.Nodes.Add a6, tvwChild, "b6", "数据备份", 1
TreeView1.Nodes.Add a6, tvwChild, "c6", "数据恢复", 1
TreeView1.Nodes.Add a6, tvwChild, "d6", "系统初始化", 1
End Sub
Private Sub Picture1_MouseMove(Button As Integer, Shift As Integer, X As Single, y As Single)
On Error Resume Next
'调整各控件位置
Picture1.Left = Picture1.Left + X
TreeView1.Width = TreeView1.Width + X
Text1.Width = Text1.Width - X
Text1.Left = Text1.Left + X
End Sub
Private Sub TreeView1_NodeClick(ByVal Node As MSComctlLib.Node)
Select Case Node.Key
Case "a0"
Text1.Text = "主要是商品的录入,删除,修改,打印"
Case "b0"
Text1.Text = "主要是职员的录入,删除,修改,打印"
Case "c0"
Text1.Text = "主要是客户的录入,删除,修改,打印"
Case "a1"
Text1.Text = "对于一手交钱一手交货的商品的处理,包括录入,删除,修改,打印"
Case "b1"
Text1.Text = "对正规的有订货单的录入"
Case "c1"
Text1.Text = "对订货单的处理,包括删除、入库、打印、查询"
Case "d1"
Text1.Text = "对订货单按主题进行查询"
Case "e1"
Text1.Text = "主要是对进货退货的处理"
Case "c3"
Text1.Text = "主要是库存商品的查询以便销售"
Case "d3"
Text1.Text = "主要是库存商品的盘点"
Case "e3"
Text1.Text = "主要是对盘点的商品进行排序,查询"
Case "c4"
Text1.Text = "主要是对是受到的应收帐款的录入"
Case "d4"
Text1.Text = "主要是对是受到的应收帐款的录入"
Case "e4"
Text1.Text = "主要是对其他的账款的录入"
Case "c5"
Text1.Text = "对公资金进行的简单的管理"
Case "d5"
Text1.Text = "把本系统涉及到的报表集中到一起便于操作"
Case "e5"
Text1.Text = "对财务进行结算"
Case "a6"
Text1.Text = "对操作人员进行管理"
Case "b6"
Text1.Text = "对数据进行备份,包括手动备份和自动备份"
Case "c6"
Text1.Text = "对数据破坏的进行恢复"
Case "d6"
Text1.Text = "对使用本系统的人进行记录"
End Select
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -