📄 frmoption
字号:
VERSION 5.00
Begin VB.Form frmOption
BorderStyle = 4 'Fixed ToolWindow
Caption = "选项"
ClientHeight = 4845
ClientLeft = 45
ClientTop = 315
ClientWidth = 6765
ForeColor = &H8000000A&
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 4845
ScaleWidth = 6765
ShowInTaskbar = 0 'False
StartUpPosition = 1 '所有者中心
Begin VB.Frame frameTransferOption
Caption = "通信配置选项"
Height = 1935
Left = 120
TabIndex = 2
Top = 2160
Width = 6495
Begin VB.TextBox txtRetryTimes
Appearance = 0 'Flat
BackColor = &H8000000F&
Height = 270
Left = 2355
TabIndex = 26
Top = 1320
Width = 480
End
Begin VB.TextBox txtDogDelay
Appearance = 0 'Flat
BackColor = &H8000000F&
Height = 270
Left = 2355
TabIndex = 21
Top = 795
Width = 480
End
Begin VB.TextBox txtTransDelay
Appearance = 0 'Flat
BackColor = &H8000000F&
Height = 270
Left = 2355
TabIndex = 17
Top = 315
Width = 480
End
Begin VB.PictureBox updTransDelay
Height = 270
Left = 2850
ScaleHeight = 210
ScaleWidth = 195
TabIndex = 18
Top = 315
Width = 255
End
Begin VB.PictureBox updDogDelay
Height = 270
Left = 2850
ScaleHeight = 210
ScaleWidth = 195
TabIndex = 22
Top = 795
Width = 255
End
Begin VB.PictureBox updRetryTimes
Height = 270
Left = 2850
ScaleHeight = 210
ScaleWidth = 195
TabIndex = 27
Top = 1320
Width = 255
End
Begin VB.Label lblrt
AutoSize = -1 'True
Caption = "次"
Height = 180
Left = 3240
TabIndex = 28
Top = 1365
Width = 180
End
Begin VB.Label lblRetryTimes
AutoSize = -1 'True
Caption = "3.通信错误重试次数 "
Height = 180
Left = 240
TabIndex = 25
Top = 1320
Width = 1710
End
Begin VB.Label lblDmm
AutoSize = -1 'True
Caption = "毫秒(ms)"
Height = 180
Left = 3240
TabIndex = 24
Top = 840
Width = 720
End
Begin VB.Label lblDogDelay
AutoSize = -1 'True
Caption = "2.通信状态检测线程延时 "
Height = 180
Left = 240
TabIndex = 23
Top = 840
Width = 2070
End
Begin VB.Label lblTmm
AutoSize = -1 'True
Caption = "毫秒(ms)"
Height = 180
Left = 3240
TabIndex = 20
Top = 360
Width = 720
End
Begin VB.Label lblTransferDelay
AutoSize = -1 'True
Caption = "1.数据接收线程延时 "
Height = 180
Left = 240
TabIndex = 19
Top = 360
Width = 1710
End
End
Begin VB.Frame frameDevOption
Caption = "设备配置选项"
Height = 1935
Left = 120
TabIndex = 1
Top = 120
Width = 6495
Begin VB.PictureBox updDevTo
Height = 270
Left = 4680
ScaleHeight = 210
ScaleWidth = 195
TabIndex = 14
Top = 360
Width = 255
End
Begin VB.PictureBox updDevFrom
Height = 270
Left = 2850
ScaleHeight = 210
ScaleWidth = 195
TabIndex = 13
Top = 360
Width = 255
End
Begin VB.TextBox txtPluginDelay
Appearance = 0 'Flat
BackColor = &H8000000F&
Height = 270
Left = 2350
TabIndex = 8
Top = 1275
Width = 480
End
Begin VB.TextBox txtDetachDelay
Appearance = 0 'Flat
BackColor = &H8000000F&
Height = 270
Left = 2350
TabIndex = 6
Top = 795
Width = 480
End
Begin VB.TextBox txtDevTo
Appearance = 0 'Flat
BackColor = &H8000000F&
Height = 270
Left = 4200
TabIndex = 5
Top = 360
Width = 480
End
Begin VB.TextBox txtDevFrom
Appearance = 0 'Flat
BackColor = &H8000000F&
Height = 270
Left = 2350
TabIndex = 3
Top = 360
Width = 480
End
Begin VB.PictureBox updDetachDelay
Height = 270
Left = 2850
ScaleHeight = 210
ScaleWidth = 195
TabIndex = 15
Top = 795
Width = 255
End
Begin VB.PictureBox updPluginDelay
Height = 270
Left = 2850
ScaleHeight = 210
ScaleWidth = 195
TabIndex = 16
Top = 1275
Width = 255
End
Begin VB.Label lblPluginDelay
AutoSize = -1 'True
Caption = "3.新驱动程序加载延时"
Height = 180
Left = 240
TabIndex = 12
Top = 1320
Width = 1800
End
Begin VB.Label lblDetachDelay
AutoSize = -1 'True
Caption = "2.驱动程序卸载等待延时 "
Height = 180
Left = 240
TabIndex = 11
Top = 840
Width = 2070
End
Begin VB.Label lblRangFrom
AutoSize = -1 'True
Caption = "1.扫描设备范围从 Ezusb-"
Height = 180
Left = 240
TabIndex = 10
Top = 405
Width = 2070
End
Begin VB.Label Label7
AutoSize = -1 'True
Caption = "秒(s)"
Height = 180
Left = 3240
TabIndex = 9
Top = 1320
Width = 450
End
Begin VB.Label Label5
AutoSize = -1 'True
Caption = "秒(s)"
Height = 180
Left = 3240
TabIndex = 7
Top = 840
Width = 450
End
Begin VB.Label lblRangeTo
AutoSize = -1 'True
Caption = "到 Ezusb-"
Height = 180
Left = 3240
TabIndex = 4
Top = 405
Width = 810
End
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
BorderStyle = 1 'Fixed Single
Height = 45
Left = 135
TabIndex = 0
Top = 4200
Width = 6495
End
End
Attribute VB_Name = "frmOption"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Default()
txtDevFrom.Text = "0"
txtDevTo.Text = "32"
txtDetachDelay.Text = "2"
txtPluginDelay.Text = "30"
txtTransDelay.Text = "100"
txtDogDelay.Text = "800"
txtRetryTimes.Text = "5"
End Sub
Private Sub Form_Load()
Call Default
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -