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