📄 frmfloodpopluationpre.frm
字号:
VERSION 5.00
Object = "{F9043C88-F6F2-101A-A3C9-08002B2F49FB}#1.2#0"; "COMDLG32.OCX"
Begin VB.Form frmEvaluatePopulationPre
Caption = "灾前受灾人口估计"
ClientHeight = 3075
ClientLeft = 60
ClientTop = 345
ClientWidth = 3675
Icon = "frmFloodPopluationPre.frx":0000
LinkTopic = "Form1"
ScaleHeight = 3075
ScaleWidth = 3675
StartUpPosition = 3 'Windows Default
Begin VB.Frame Frame3
Caption = "将受灾人口统计保存为"
Height = 735
Left = 120
TabIndex = 8
Top = 1800
Width = 3495
Begin VB.CommandButton cmdResult
Caption = "..."
Height = 375
Left = 3000
TabIndex = 10
Top = 240
Width = 375
End
Begin VB.TextBox txtPathResult
Height = 375
Left = 120
TabIndex = 9
Top = 240
Width = 2895
End
End
Begin VB.Frame Frame4
Caption = "请输入统计区人口分布"
Height = 735
Left = 120
TabIndex = 5
Top = 960
Width = 3495
Begin VB.CommandButton cmdPopulate
Caption = "..."
Height = 375
Left = 3000
TabIndex = 7
Top = 240
Width = 375
End
Begin VB.TextBox strPopulate
Height = 375
Left = 120
TabIndex = 6
Top = 240
Width = 2895
End
End
Begin VB.Frame Frame1
Caption = "请输入洪水淹没范围"
Height = 735
Left = 120
TabIndex = 2
Top = 120
Width = 3495
Begin VB.TextBox strFloodArea
Height = 375
Left = 120
TabIndex = 4
Top = 240
Width = 2895
End
Begin VB.CommandButton cmdFloodArea
Caption = "..."
Height = 375
Left = 3000
TabIndex = 3
Top = 240
Width = 375
End
End
Begin VB.CommandButton cmdCancel
Caption = "取消"
Height = 375
Left = 720
TabIndex = 1
Top = 2640
Width = 735
End
Begin VB.CommandButton cmdOK
Caption = "确认"
Height = 375
Left = 2040
TabIndex = 0
Top = 2640
Width = 735
End
Begin MSComDlg.CommonDialog CommonDlg
Left = 120
Top = 1440
_ExtentX = 847
_ExtentY = 847
_Version = 393216
End
End
Attribute VB_Name = "frmEvaluatePopulationPre"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Public flagOK As Boolean
Public shpFloodAreaLyr As IFeatureLayer
Public shpPopulateLyr As IFeatureLayer
Private Sub cmdCancel_Click()
flagOK = False
Me.Hide
End Sub
'''Private Sub cmdEvalRaster_Click()
''' Dim sReturn As String
''' Set rasLanduseLyr = BrowseToOpenLayer("raster", sReturn, "打开同域参考栅格文件")
''' txtEvaluateRaster = sReturn
'''' CommonDlg.DialogTitle = "请选择同域参考栅格文件"
'''' CommonDlg.FileName = "C:\Program Files\BeijiangTemp\rice.aux"
'''' CommonDlg.Filter = "GRID file(*.aux)|*.aux"
'''' CommonDlg.ShowOpen
'''' txtEvaluateRaster = CommonDlg.FileName
'''End Sub
'''
'''Private Sub cmdPolygon_Click()
''' Dim sReturn As String
''' Set rasLanduseLyr = BrowseToOpenLayer("poly", sReturn, "打开同域参考栅格文件")
''' txtEvaluateRaster = sReturn
'''' CommonDlg.DialogTitle = "请选择要转换的多边形文件"
'''' CommonDlg.FileName = "C:\Program Files\BeijiangTemp\flood.shp"
'''' CommonDlg.Filter = "Shape file(*.shp)|*.shp"
'''' CommonDlg.ShowOpen
'''' txtPolygon = CommonDlg.FileName
'''End Sub
Private Sub cmdOK_Click()
flagOK = True
Me.Hide
End Sub
Private Sub cmdFloodArea_Click()
Dim sReturn As String
Set shpFloodAreaLyr = BrowseToOpenLayer("poly", sReturn, "打开洪水淹没范围文件")
strFloodArea = sReturn
End Sub
Private Sub cmdPopulate_Click()
Dim sReturn As String
Set shpPopulateLyr = BrowseToOpenLayer("poly", sReturn, "打开区域人口分布文件")
strPopulate = sReturn
End Sub
Private Sub cmdResult_Click()
CommonDlg.DialogTitle = "结果文件保存为"
CommonDlg.FileName = "C:\Program Files\BeijiangTemp\floodPopu.shp"
CommonDlg.Filter = "Shape file(*.shp)|*.shp"
CommonDlg.ShowSave
txtPathResult = CommonDlg.FileName
End Sub
Private Sub Form_Load()
flagOK = False
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -