📄 frmmain.frm
字号:
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
Begin VB.MDIForm frmMain
BackColor = &H8000000C&
Caption = "房地产销售管理信息系统"
ClientHeight = 6510
ClientLeft = 165
ClientTop = 735
ClientWidth = 8970
LinkTopic = "MDIForm1"
StartUpPosition = 3 '窗口缺省
Begin MSComctlLib.StatusBar sbStatusBar
Align = 2 'Align Bottom
Height = 270
Left = 0
TabIndex = 0
Top = 6240
Width = 8970
_ExtentX = 15822
_ExtentY = 476
_Version = 393216
BeginProperty Panels {8E3867A5-8586-11D1-B16A-00C0F0283628}
NumPanels = 3
BeginProperty Panel1 {8E3867AB-8586-11D1-B16A-00C0F0283628}
AutoSize = 1
Object.Width = 10186
Text = "Status"
TextSave = "Status"
EndProperty
BeginProperty Panel2 {8E3867AB-8586-11D1-B16A-00C0F0283628}
Style = 6
AutoSize = 2
TextSave = "2003-12-14"
EndProperty
BeginProperty Panel3 {8E3867AB-8586-11D1-B16A-00C0F0283628}
Style = 5
AutoSize = 2
TextSave = "23:08"
EndProperty
EndProperty
End
Begin VB.Menu menuSystem
Caption = "系统管理"
Begin VB.Menu menuAddUser
Caption = "添加用户"
End
Begin VB.Menu menuModifyUser
Caption = "修改用户密码"
End
Begin VB.Menu menuDelUser
Caption = "删除用户"
End
Begin VB.Menu menuBlank
Caption = "-"
End
Begin VB.Menu menuExit
Caption = "退出"
End
End
Begin VB.Menu menuPlace
Caption = "楼盘信息管理"
Begin VB.Menu menuAddPlace
Caption = "添加楼盘信息"
End
Begin VB.Menu menuModifyPlace
Caption = "修改楼盘信息"
End
Begin VB.Menu menuInquirePlace
Caption = "查询楼盘信息"
End
End
Begin VB.Menu menuFront
Caption = "房型信息管理"
Begin VB.Menu menuAddMenu
Caption = "添加房型信息"
End
Begin VB.Menu menuModifyMenu
Caption = "编辑房型信息"
End
Begin VB.Menu menuInquiryMenu
Caption = "查询房型信息"
End
End
Begin VB.Menu MenuExpand
Caption = "客户信息管理"
Begin VB.Menu menuAddExpand
Caption = "添加客户信息"
End
Begin VB.Menu menuModifyExpand
Caption = "编辑客户信息"
End
Begin VB.Menu menuInquiryExpand
Caption = "查询客户信息"
End
End
Begin VB.Menu menuReserve
Caption = "销售信息管理"
Begin VB.Menu menuAddReserve
Caption = "添加销售信息"
End
Begin VB.Menu menuModifyReserve
Caption = "编辑销售信息"
End
Begin VB.Menu menuInquiryReserve
Caption = "查询销售信息"
End
End
Begin VB.Menu MenuTrain
Caption = "员工管理"
Begin VB.Menu menuAddEmployee
Caption = "添加员工信息"
End
Begin VB.Menu menuModifyEmployee
Caption = "编辑员工信息"
End
Begin VB.Menu menuInquiryEmployee
Caption = "查询员工信息"
End
End
Begin VB.Menu menuHelp
Caption = "帮助"
Begin VB.Menu menuAbout
Caption = "关于"
End
End
End
Attribute VB_Name = "frmMain"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub menuAbout_Click()
frmAbout.Show
sbStatusBar.Panels(1).Text = "帮助"
End Sub
Private Sub menuAddDuty_Click()
frmAddDuty.Show
sbStatusBar.Panels(1).Text = "添加考勤信息"
End Sub
Private Sub menuAddEmployee_Click()
frmAddEmployee.Show
sbStatusBar.Panels(1).Text = "添加员工信息"
End Sub
Private Sub menuAddSalary_Click()
frmAddSalary.Show
sbStatusBar.Panels(1).Text = "添加工资信息"
End Sub
Private Sub menuAddTrain_Click()
frmAddTrain.Show
sbStatusBar.Panels(1).Text = "添加培训计划信息"
End Sub
Private Sub menuAddExpand_Click()
frmAddCustomer.Show
sbStatusBar.Panels(1).Text = "添加用户"
End Sub
Private Sub menuAddMenu_Click()
frmAddHouse.Show
sbStatusBar.Panels(1).Text = "添加房型信息"
End Sub
Private Sub menuAddPlace_Click()
frmAddPlace.Show
sbStatusBar.Panels(1).Text = "添加楼盘信息"
End Sub
Private Sub menuAddReserve_Click()
frmAddSell.Show
sbStatusBar.Panels(1).Text = "添加销售信息"
End Sub
Private Sub menuAddUser_Click()
frmAdduser.Show
sbStatusBar.Panels(1).Text = "添加用户"
End Sub
Private Sub menuDelUser_Click()
frmDelUser.Show
sbStatusBar.Panels(1).Text = "删除用户"
End Sub
Private Sub menuExit_Click()
End
End Sub
Private Sub menuInquirePlace_Click()
frmInquirePlace.Show
sbStatusBar.Panels(1).Text = "查询楼盘信息"
End Sub
Private Sub menuInquiryEmployee_Click()
frmInquireEmployee.Show
sbStatusBar.Panels(1).Text = "查询员工信息"
End Sub
Private Sub menuInquiryExpand_Click()
frmInquireCustomer.Show
sbStatusBar.Panels(1).Text = "查询客户信息"
End Sub
Private Sub menuInquiryMenu_Click()
frmInquireHouse.Show
sbStatusBar.Panels(1).Text = "查询房型信息"
End Sub
Private Sub menuInquiryReserve_Click()
frmInquireSell.Show
sbStatusBar.Panels(1).Text = "查询销售信息"
End Sub
Private Sub menuModifyEmployee_Click()
frmModifyEmployee.Show
sbStatusBar.Panels(1).Text = "编辑员工信息"
End Sub
Private Sub menuModifyExpand_Click()
frmModifyCustomer.Show
sbStatusBar.Panels(1).Text = "编辑客户信息"
End Sub
Private Sub menuModifyMenu_Click()
frmModifyHouse.Show
sbStatusBar.Panels(1).Text = "编辑房型信息"
End Sub
Private Sub menuModifyPlace_Click()
frmModifyPlace.Show
sbStatusBar.Panels(1).Text = "编辑楼盘信息"
End Sub
Private Sub menuModifyReserve_Click()
frmModifySell.Show
sbStatusBar.Panels(1).Text = "编辑销售信息"
End Sub
Private Sub menuModifyUser_Click()
frmModifyuserinfo.Show
sbStatusBar.Panels(1).Text = "修改密码"
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -