frmproperty.frm
来自「这个是利用地理信息系统组件MO做的武汉道路污染源强的分析系统。」· FRM 代码 · 共 63 行
FRM
63 行
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
Begin VB.Form frmproperty
Caption = "frmproperty"
ClientHeight = 4515
ClientLeft = 60
ClientTop = 345
ClientWidth = 2925
LinkTopic = "Form2"
ScaleHeight = 4515
ScaleWidth = 2925
StartUpPosition = 3 '窗口缺省
Begin MSComctlLib.ListView ListView1
Height = 3735
Left = 0
TabIndex = 0
Top = 600
Width = 2775
_ExtentX = 4895
_ExtentY = 6588
View = 3
LabelWrap = -1 'True
HideSelection = -1 'True
_Version = 393217
ForeColor = -2147483640
BackColor = -2147483643
BorderStyle = 1
Appearance = 1
NumItems = 0
End
Begin VB.Label Label1
Caption = "图形属性"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 120
TabIndex = 1
Top = 120
Width = 2895
End
End
Attribute VB_Name = "frmproperty"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Load()
Label1.Caption = "所选多边形属性为:" '& rec.Fields("STATE_NAME").Value
Dim col As Object
Set col = frmproperty.ListView1.ColumnHeaders.Add()
col.Text = "属性名称"
Set col = frmproperty.ListView1.ColumnHeaders.Add()
col.Text = "属性值"
End Sub
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?