📄 formnewtables.frm
字号:
VERSION 5.00
Begin VB.Form FormNewTables
BorderStyle = 1 'Fixed Single
Caption = "新建表"
ClientHeight = 1980
ClientLeft = 36
ClientTop = 324
ClientWidth = 4380
BeginProperty Font
Name = "宋体"
Size = 10.8
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 1980
ScaleWidth = 4380
StartUpPosition = 2 '屏幕中心
Begin VB.CommandButton Command3
Caption = "帮助"
Enabled = 0 'False
BeginProperty Font
Name = "宋体"
Size = 10.8
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 372
Left = 3240
TabIndex = 6
Top = 1440
Width = 972
End
Begin VB.CommandButton Command2
Caption = "取消"
BeginProperty Font
Name = "宋体"
Size = 10.8
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 372
Left = 3240
TabIndex = 5
Top = 840
Width = 972
End
Begin VB.CommandButton Command1
Caption = "创建..."
BeginProperty Font
Name = "宋体"
Size = 10.8
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 372
Left = 3240
TabIndex = 4
Top = 240
Width = 972
End
Begin VB.Frame Frame1
Caption = "创建新表并且:"
Height = 1692
Left = 120
TabIndex = 0
Top = 120
Width = 2892
Begin VB.CheckBox Check3
Caption = "添加到当前地图窗口"
Height = 372
Left = 120
TabIndex = 3
Top = 1080
Width = 2412
End
Begin VB.CheckBox Check2
Caption = "打开新的地图窗口"
Enabled = 0 'False
Height = 372
Left = 120
TabIndex = 2
Top = 720
Width = 2412
End
Begin VB.CheckBox Check1
Caption = "打开新的浏览窗口"
Height = 372
Left = 120
TabIndex = 1
Top = 360
Width = 2412
End
End
End
Attribute VB_Name = "FormNewTables"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
iOpenBrowser = Check1.Value
iOpenNewMap = Check2.Value
iAddCurMap = Check3.Value
FormNewTable.Show 1
Unload Me
End Sub
Private Sub Command2_Click()
bOKCancel = False
Unload Me
End Sub
Private Sub Form_Load()
bOKCancel = False
If (thereIsAMap = False) Then
Check2.Enabled = True
Check3.Enabled = False
Else
Check2.Enabled = False
Check3.Enabled = True
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -