identify.frm

来自「描述SHAPE文件的vb代码 很有用哦 大家快看看吧」· FRM 代码 · 共 45 行

FRM
45
字号
VERSION 5.00
Object = "{6B7E6392-850A-101B-AFC0-4210102A8DA7}#1.2#0"; "comctl32.ocx"
Begin VB.Form Form3 
   Caption         =   "Form3"
   ClientHeight    =   3600
   ClientLeft      =   5325
   ClientTop       =   3150
   ClientWidth     =   3960
   LinkTopic       =   "Form3"
   PaletteMode     =   1  'UseZOrder
   ScaleHeight     =   3600
   ScaleWidth      =   3960
   Begin ComctlLib.ListView ListView1 
      Height          =   3615
      Left            =   0
      TabIndex        =   0
      Top             =   0
      Width           =   3975
      _ExtentX        =   7011
      _ExtentY        =   6376
      View            =   3
      LabelWrap       =   -1  'True
      HideSelection   =   -1  'True
      _Version        =   327682
      ForeColor       =   -2147483640
      BackColor       =   -2147483643
      Appearance      =   1
      NumItems        =   0
   End
End
Attribute VB_Name = "Form3"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False

Private Sub Form_Load()
  ' set up the columns of the listview control
  Set Col = ListView1.ColumnHeaders.Add()
  Col.Text = "Field"
  Set Col = ListView1.ColumnHeaders.Add()
  Col.Text = "Value"
End Sub

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?