📄 客户浏览.frm
字号:
VERSION 5.00
Begin VB.Form 客户浏览界面
BorderStyle = 1 'Fixed Single
Caption = "客户浏览界面"
ClientHeight = 6180
ClientLeft = 3795
ClientTop = 3105
ClientWidth = 7515
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
Picture = "客户浏览.frx":0000
ScaleHeight = 6180
ScaleWidth = 7515
StartUpPosition = 1 '所有者中心
Begin VB.Menu fwx
Caption = "房屋查询"
Begin VB.Menu fjc
Caption = "按房价查询"
End
Begin VB.Menu mjc
Caption = "按面积查询"
End
End
Begin VB.Menu gr
Caption = "客户信息查询"
End
Begin VB.Menu tc
Caption = "退出"
End
End
Attribute VB_Name = "客户浏览界面"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub fj_Click()
End Sub
Private Sub fjc_Click()
月租查询.Show
End Sub
Private Sub Form_Load()
Me.Left = GetSetting(App.Title, "Settings", "MainLeft", 9000)
Me.Top = GetSetting(App.Title, "Settings", "MainTop", 10000)
Me.Width = GetSetting(App.Title, "Settings", "MainWidth", 65000)
Me.Height = GetSetting(App.Title, "Settings", "MainHeight", 11500)
End Sub
Private Sub gr_Click()
客户查询2.Show
End Sub
Private Sub mjc_Click()
面积查询.Show
End Sub
Private Sub tc_Click()
主界面.Show
Unload Me
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -