📄 frmlanduseid.frm
字号:
VERSION 5.00
Begin VB.Form frmLanduseID
Caption = "土地利用类型代码设置"
ClientHeight = 2850
ClientLeft = 60
ClientTop = 345
ClientWidth = 2910
LinkTopic = "Form1"
ScaleHeight = 2850
ScaleWidth = 2910
StartUpPosition = 3 'Windows Default
Begin VB.CommandButton cmdOK
Caption = "确认"
Height = 375
Left = 1680
TabIndex = 18
Top = 2400
Width = 735
End
Begin VB.CommandButton cmdCancel
Caption = "取消"
Height = 375
Left = 480
TabIndex = 17
Top = 2400
Width = 735
End
Begin VB.Frame Frame1
Height = 2175
Left = 120
TabIndex = 0
Top = 120
Width = 2655
Begin VB.TextBox txtLichee
Alignment = 1 'Right Justify
Height = 285
Left = 1920
TabIndex = 16
Text = "8"
Top = 1680
Width = 495
End
Begin VB.TextBox txtOrange
Alignment = 1 'Right Justify
Height = 285
Left = 600
TabIndex = 14
Text = "7"
Top = 1680
Width = 495
End
Begin VB.TextBox txtPotato
Alignment = 1 'Right Justify
Height = 285
Left = 600
TabIndex = 12
Text = "5"
Top = 1200
Width = 495
End
Begin VB.TextBox txtFlower
Alignment = 1 'Right Justify
Height = 285
Left = 1920
TabIndex = 10
Text = "6"
Top = 1200
Width = 495
End
Begin VB.TextBox txtCotton
Alignment = 1 'Right Justify
Height = 285
Left = 1920
TabIndex = 8
Text = "4"
Top = 720
Width = 495
End
Begin VB.TextBox txtWheat
Alignment = 1 'Right Justify
Height = 285
Left = 1920
TabIndex = 6
Text = "2"
Top = 240
Width = 495
End
Begin VB.TextBox txtCorn
Alignment = 1 'Right Justify
Height = 285
Left = 600
TabIndex = 4
Text = "3"
Top = 720
Width = 495
End
Begin VB.TextBox txtRice
Alignment = 1 'Right Justify
Height = 285
Left = 600
TabIndex = 2
Text = "1"
Top = 240
Width = 495
End
Begin VB.Label l15
Caption = "荔枝"
Height = 255
Left = 1440
TabIndex = 15
Top = 1680
Width = 495
End
Begin VB.Label Label7
Caption = "柑橘"
Height = 255
Left = 120
TabIndex = 13
Top = 1680
Width = 495
End
Begin VB.Label l13
Caption = "甘薯"
Height = 255
Left = 120
TabIndex = 11
Top = 1200
Width = 495
End
Begin VB.Label f14
Caption = "花卉"
Height = 255
Left = 1440
TabIndex = 9
Top = 1200
Width = 495
End
Begin VB.Label l12
Caption = "棉花"
Height = 255
Left = 1440
TabIndex = 7
Top = 720
Width = 495
End
Begin VB.Label Label3
Caption = "小麦"
Height = 255
Left = 1440
TabIndex = 5
Top = 240
Width = 495
End
Begin VB.Label Label2
Caption = "玉米"
Height = 255
Left = 120
TabIndex = 3
Top = 720
Width = 495
End
Begin VB.Label Label1
Caption = "水稻"
Height = 255
Left = 120
TabIndex = 1
Top = 240
Width = 495
End
End
End
Attribute VB_Name = "frmLanduseID"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Public bOK As Boolean
Private Sub cmdCancel_Click()
MsgBox "放弃设置土地利用类型代码!"
End Sub
Private Sub cmdOK_Click()
bOK = True
Me.Hide
End Sub
Private Sub Form_Load()
bOK = False
Me.Hide
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -