⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 frmpageidentifier.frm

📁 使用VB和ArcObject结合的程序
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frmPageIdentifier 
   Caption         =   "Page Identifier"
   ClientHeight    =   2325
   ClientLeft      =   60
   ClientTop       =   345
   ClientWidth     =   3165
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   2325
   ScaleWidth      =   3165
   StartUpPosition =   3  'Windows Default
   Begin VB.CommandButton cmdOk 
      Caption         =   "&OK"
      Height          =   345
      Left            =   1050
      TabIndex        =   4
      Top             =   1950
      Width           =   1005
   End
   Begin VB.Frame fraIdentifier 
      BorderStyle     =   0  'None
      Caption         =   "Frame1"
      Height          =   1785
      Left            =   60
      TabIndex        =   0
      Top             =   90
      Width           =   3045
      Begin VB.OptionButton optIdentifier 
         Caption         =   "Global"
         Height          =   225
         Index           =   1
         Left            =   1920
         TabIndex        =   3
         Top             =   1470
         Width           =   795
      End
      Begin VB.OptionButton optIdentifier 
         Caption         =   "Local"
         Height          =   225
         Index           =   0
         Left            =   390
         TabIndex        =   2
         Top             =   1470
         Width           =   765
      End
      Begin VB.PictureBox Picture1 
         Appearance      =   0  'Flat
         BackColor       =   &H80000005&
         BorderStyle     =   0  'None
         ForeColor       =   &H80000008&
         Height          =   1395
         Left            =   30
         Picture         =   "frmPageIdentifier.frx":0000
         ScaleHeight     =   1395
         ScaleWidth      =   2985
         TabIndex        =   1
         Top             =   30
         Width           =   2985
      End
   End
End
Attribute VB_Name = "frmPageIdentifier"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False

' Copyright 1995-2004 ESRI

' All rights reserved under the copyright laws of the United States.

' You may freely redistribute and use this sample code, with or without modification.

' Disclaimer: THE SAMPLE CODE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED 
' WARRANTIES, INCLUDING THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 
' FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL ESRI OR 
' CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, 
' OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 
' SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 
' INTERRUPTION) SUSTAINED BY YOU OR A THIRD PARTY, HOWEVER CAUSED AND ON ANY 
' THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT ARISING IN ANY 
' WAY OUT OF THE USE OF THIS SAMPLE CODE, EVEN IF ADVISED OF THE POSSIBILITY OF 
' SUCH DAMAGE.

' For additional information contact: Environmental Systems Research Institute, Inc.

' Attn: Contracts Dept.

' 380 New York Street

' Redlands, California, U.S.A. 92373 

' Email: contracts@esri.com

Public bCancel As Boolean

Private Sub cmdCancel_Click()
4:   Me.Hide
End Sub

Private Sub cmdOK_Click()
8:   bCancel = False
9:   Me.Hide
End Sub

Private Sub Form_Load()
13:   optIdentifier(0).Value = True
14:   bCancel = True
End Sub

⌨️ 快捷键说明

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