?? frmsdename.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 + -