📄 frmdh.frm
字号:
VERSION 5.00
Begin VB.Form Frmdh
HelpContextID = 310
BackColor = &H00C0C0C0&
Caption = "输入点号"
ClientHeight = 2175
ClientLeft = 60
ClientTop = 345
ClientWidth = 4170
Icon = "Frmdh.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 2175
ScaleWidth = 4170
StartUpPosition = 2 'CenterScreen
Begin VB.CommandButton Command2
WhatsThisHelpID = 310 'WhatsThisHelpID for: Command2 *** HelpWriter ***
Caption = "取消"
Height = 435
Left = 2310
TabIndex = 5
Top = 1545
Width = 1530
End
Begin VB.CommandButton Command1
WhatsThisHelpID = 310 'WhatsThisHelpID for: Command1 *** HelpWriter ***
Caption = "确定"
Height = 435
Left = 240
TabIndex = 4
Top = 1545
Width = 1530
End
Begin VB.TextBox Text2
WhatsThisHelpID = 310 'WhatsThisHelpID for: Text2 *** HelpWriter ***
Height = 375
Left = 1950
TabIndex = 3
Top = 915
Width = 1950
End
Begin VB.TextBox Text1
WhatsThisHelpID = 310 'WhatsThisHelpID for: Text1 *** HelpWriter ***
Height = 375
Left = 1950
TabIndex = 1
Top = 180
Width = 1950
End
Begin VB.Label Label2
WhatsThisHelpID = 310 'WhatsThisHelpID for: Label2 *** HelpWriter ***
Caption = "输入第二点的点号:"
Height = 420
Left = 195
TabIndex = 2
Top = 990
Width = 1980
End
Begin VB.Label Label1
WhatsThisHelpID = 310 'WhatsThisHelpID for: Label1 *** HelpWriter ***
Caption = "输入第一点的点号:"
Height = 495
Left = 225
TabIndex = 0
Top = 240
Width = 1740
End
End
Attribute VB_Name = "Frmdh"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Public dydh As Integer
Public dedh As Integer
Private Sub Command1_Click()
dydh = CInt(Text1.Text)
dedh = CInt(Text2.Text)
Unload Me
End Sub
Private Sub Command2_Click()
Text1.Text = ""
Text2.Text = ""
Unload Me
End Sub
Private Sub Form_Load()
dydh = 0
dedh = 0
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -