📄 form1.frm
字号:
VERSION 5.00
Begin VB.Form Form1
Caption = "土地管理系统"
ClientHeight = 4965
ClientLeft = 2580
ClientTop = 2595
ClientWidth = 8460
Icon = "Form1.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
ScaleHeight = 4965
ScaleWidth = 8460
Begin VB.CommandButton Command3
Caption = "关闭"
Height = 495
Left = 5640
TabIndex = 4
Top = 2880
Width = 1335
End
Begin VB.CommandButton Command2
Caption = "数据查询"
Height = 495
Left = 3240
TabIndex = 3
Top = 2760
Width = 1335
End
Begin VB.Frame Frame1
Height = 4695
Left = 240
TabIndex = 0
Top = 120
Width = 8055
Begin VB.CommandButton Command1
Caption = "数据录入"
Height = 495
Left = 5400
TabIndex = 2
Top = 1680
Width = 1335
End
Begin VB.Frame Frame2
Height = 2775
Left = 360
TabIndex = 5
Top = 1080
Width = 7215
Begin VB.ComboBox Combo1
Height = 315
Left = 600
TabIndex = 6
Text = "请选择要查询的表"
Top = 720
Width = 3375
End
Begin VB.Frame Frame3
Caption = "查询"
Height = 2175
Left = 240
TabIndex = 7
Top = 240
Width = 4335
End
End
Begin VB.Label Label1
Caption = "土地管理系统"
BeginProperty Font
Name = "仿宋_GB2312"
Size = 24
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 675
Left = 2640
TabIndex = 1
Top = 360
Width = 2880
End
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
On Error Resume Next
Form2.Show
Form1.Hide
End Sub
Private Sub Command2_Click()
On Error Resume Next
If Combo1.Text = "请选择要查询的表" Then
MsgBox "请填入查询条件"
Exit Sub
End If
combostr = Combo1.Text
If combostr = "土地登记审批表" Then
Form3.Show
Form1.Hide
End If
If combostr = "集体土地建设用地使用权登记卡" Then
Form4.Show
Form1.Hide
End If
If combostr = "土地登记申请内容" Then
Form5.Show
Form1.Hide
End If
End Sub
Private Sub Command3_Click()
On Error Resume Next
End
End Sub
Private Sub Command4_Click()
End Sub
Private Sub Form_Load()
On Error Resume Next
Combo1.AddItem "土地登记审批表"
Combo1.AddItem "集体土地建设用地使用权登记卡"
Combo1.AddItem "土地登记申请内容"
End Sub
Private Sub Form_Unload(Cancel As Integer)
On Error Resume Next
End
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -