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

📄 frmsdename.frm

📁 FloodEvaluation-程序是gis方面的程序
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frmSdeName 
   Caption         =   "输入SDE图层名字"
   ClientHeight    =   1530
   ClientLeft      =   60
   ClientTop       =   450
   ClientWidth     =   3345
   Icon            =   "frmSdeName.frx":0000
   LinkTopic       =   "Form1"
   ScaleHeight     =   1530
   ScaleWidth      =   3345
   StartUpPosition =   3  'Windows Default
   Begin VB.CommandButton cmdOK 
      Caption         =   "确 定"
      Height          =   375
      Left            =   1200
      TabIndex        =   2
      Top             =   1080
      Width           =   855
   End
   Begin VB.TextBox strSdeName 
      Height          =   375
      Left            =   960
      TabIndex        =   1
      Text            =   "SDE图层"
      Top             =   480
      Width           =   2055
   End
   Begin VB.Label Label1 
      Caption         =   "请指定上载矢量图层的图层名字:"
      Height          =   375
      Left            =   120
      TabIndex        =   0
      Top             =   120
      Width           =   2775
   End
End
Attribute VB_Name = "frmSdeName"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Public bFlag As Boolean
Public strName

Private Sub cmdOK_Click()
    bFlag = True
    strName = strSdeName
    Unload Me
End Sub

Private Sub Form_Load()
    bFlag = False
End Sub

'Private Sub strSdeName_Change()
'    strSdeName.Refresh
'End Sub

⌨️ 快捷键说明

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