📄 dialog.frm
字号:
VERSION 5.00
Begin VB.Form Dialog
BorderStyle = 3 'Fixed Dialog
Caption = "容差参数"
ClientHeight = 3240
ClientLeft = 2760
ClientTop = 3750
ClientWidth = 5025
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 3240
ScaleWidth = 5025
ShowInTaskbar = 0 'False
Begin VB.TextBox Text3
Height = 495
Left = 2280
TabIndex = 9
Text = "1"
Top = 1680
Width = 1095
End
Begin VB.TextBox Text2
Height = 615
Left = 2280
TabIndex = 5
Text = "5"
Top = 840
Width = 1095
End
Begin VB.TextBox Text1
Height = 615
Left = 2280
TabIndex = 3
Text = "50"
Top = 120
Width = 1095
End
Begin VB.CommandButton CancelButton
Caption = "取消"
Height = 375
Left = 2880
TabIndex = 1
Top = 2520
Width = 1215
End
Begin VB.CommandButton OKButton
Caption = "确定"
Height = 375
Left = 840
TabIndex = 0
Top = 2520
Width = 1215
End
Begin VB.Label Label6
Caption = "km/h"
Height = 375
Left = 3840
TabIndex = 10
Top = 1800
Width = 975
End
Begin VB.Label Label5
Caption = "速度容差"
Height = 375
Left = 720
TabIndex = 8
Top = 1800
Width = 855
End
Begin VB.Label Label4
Caption = "min"
Height = 495
Left = 3840
TabIndex = 7
Top = 960
Width = 1095
End
Begin VB.Label Label3
Caption = "m"
Height = 375
Left = 3840
TabIndex = 6
Top = 240
Width = 855
End
Begin VB.Label Label2
Caption = "时间容差"
Height = 495
Left = 720
TabIndex = 4
Top = 960
Width = 855
End
Begin VB.Label Label1
Caption = "距离容差"
Height = 375
Left = 720
TabIndex = 2
Top = 240
Width = 735
End
End
Attribute VB_Name = "Dialog"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub CancelButton_Click()
Me.Hide
End Sub
Private Sub Form_Load()
'tempTime = #3:00:00 PM#
'If (tempTime - #2:50:00 PM#) > #12:04:00 AM# Then
'MsgBox tempTime
'End If
End Sub
Private Sub OKButton_Click()
MsgBox GetDistance(116.19832611084, 39.9207458496094, 116.208572387695, 39.9026222229004)
' spacedis = Text1.Text
' timedis = Text2.Text
' speeddis = Text3.Text
' Form1.Show
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -