📄 mdiform1.frm
字号:
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
Begin VB.MDIForm MDIForm1
BackColor = &H8000000C&
Caption = "CPIII控制网测量系统"
ClientHeight = 7080
ClientLeft = 60
ClientTop = 750
ClientWidth = 10410
Icon = "MDIForm1.frx":0000
LinkTopic = "MDIForm1"
StartUpPosition = 2 'CenterScreen
Begin VB.PictureBox Picture1
Align = 1 'Align Top
Height = 405
Left = 0
ScaleHeight = 345
ScaleWidth = 10350
TabIndex = 0
Top = 0
Width = 10410
Begin VB.CommandButton Command3
Caption = "自动"
Height = 345
Left = 1020
TabIndex = 4
Top = 0
Width = 525
End
Begin VB.CommandButton Command2
Caption = "学习"
Height = 345
Left = 510
TabIndex = 3
Top = 0
Width = 525
End
Begin VB.CommandButton Command1
Caption = "设置"
Height = 345
Left = 0
TabIndex = 2
Top = 0
Width = 525
End
End
Begin MSComctlLib.StatusBar sbStatusBar
Align = 2 'Align Bottom
Height = 270
Left = 0
TabIndex = 1
Top = 6810
Width = 10410
_ExtentX = 18362
_ExtentY = 476
_Version = 393216
BeginProperty Panels {8E3867A5-8586-11D1-B16A-00C0F0283628}
NumPanels = 3
BeginProperty Panel1 {8E3867AB-8586-11D1-B16A-00C0F0283628}
AutoSize = 1
Object.Width = 12700
Text = "CPIII控制网测量系统"
TextSave = "CPIII控制网测量系统"
EndProperty
BeginProperty Panel2 {8E3867AB-8586-11D1-B16A-00C0F0283628}
Style = 6
AutoSize = 2
TextSave = "2008-2-15"
EndProperty
BeginProperty Panel3 {8E3867AB-8586-11D1-B16A-00C0F0283628}
Style = 5
AutoSize = 2
TextSave = "11:36"
EndProperty
EndProperty
End
Begin VB.Menu mnu_first_file
Caption = "文件"
End
Begin VB.Menu mnu_first_setup
Caption = "设置"
Begin VB.Menu mnu_second_csf
Caption = "全站仪参数设置"
End
Begin VB.Menu mnu_sec_site
Caption = "测站参数设置"
End
Begin VB.Menu mnu_sec_unit
Caption = "单位设置"
End
Begin VB.Menu mnu_sec_zb
Caption = "坐标系类型"
End
End
Begin VB.Menu mnu_first_study
Caption = "学习测量"
Begin VB.Menu mnu_second_study
Caption = "学习测量"
End
End
Begin VB.Menu mnu_first_auto
Caption = "自动测量"
Begin VB.Menu mnu_sec_auto
Caption = "自动测量"
End
End
Begin VB.Menu mnu_first_io
Caption = "输入/输出"
End
Begin VB.Menu mnu_first_help
Caption = "帮助"
End
End
Attribute VB_Name = "MDIForm1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
site_data.Show 1
End Sub
Private Sub Command2_Click()
pyppeo.Show 1
End Sub
Private Sub Command3_Click()
frm_auto.Show 1
End Sub
Private Sub MDIForm_QueryUnload(Cancel As Integer, UnloadMode As Integer)
Dim reply As Integer
reply = MsgBox("真的想退出系统吗?", vbYesNo)
If reply = vbNo Then
Cancel = True
End If
If reply = vbYes Then
End
End If
End Sub
Private Sub mnu_sec_auto_Click()
frm_auto.Show 1
End Sub
Private Sub mnu_sec_site_Click()
site_data.Show 1
End Sub
Private Sub mnu_second_csf_Click()
firstcjy.Show 1
End Sub
Private Sub mnu_second_study_Click()
pyppeo.Show 1
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -