📄 e1968demo.frm
字号:
VERSION 5.00
Begin VB.Form Form2
Caption = "Form2"
ClientHeight = 8850
ClientLeft = 60
ClientTop = 345
ClientWidth = 6765
LinkTopic = "Form2"
ScaleHeight = 8850
ScaleWidth = 6765
StartUpPosition = 3 'Windows Default
Begin VB.Frame Frame1
Caption = "Cabel Loss setting"
Height = 3015
Left = 480
TabIndex = 7
Top = 5640
Width = 2655
Begin VB.TextBox txtLossFreq
Height = 285
Index = 0
Left = 600
TabIndex = 19
Text = "Text1"
Top = 720
Width = 855
End
Begin VB.TextBox txtLossFreq
Height = 285
Index = 1
Left = 600
TabIndex = 18
Text = "Text1"
Top = 1080
Width = 855
End
Begin VB.TextBox txtLossFreq
Height = 285
Index = 2
Left = 600
TabIndex = 17
Text = "Text1"
Top = 1440
Width = 855
End
Begin VB.TextBox txtLossFreq
Height = 285
Index = 3
Left = 600
TabIndex = 16
Text = "Text1"
Top = 1800
Width = 855
End
Begin VB.TextBox txtLossFreq
Height = 285
Index = 4
Left = 600
TabIndex = 15
Text = "Text1"
Top = 2160
Width = 855
End
Begin VB.TextBox txtLossFreq
Height = 285
Index = 5
Left = 600
TabIndex = 14
Text = "Text1"
Top = 2520
Width = 855
End
Begin VB.TextBox txtLossValue
Height = 285
Index = 0
Left = 1560
TabIndex = 13
Text = "Text1"
Top = 720
Width = 855
End
Begin VB.TextBox txtLossValue
Height = 285
Index = 1
Left = 1560
TabIndex = 12
Text = "Text1"
Top = 1080
Width = 855
End
Begin VB.TextBox txtLossValue
Height = 285
Index = 2
Left = 1560
TabIndex = 11
Text = "Text1"
Top = 1440
Width = 855
End
Begin VB.TextBox txtLossValue
Height = 285
Index = 3
Left = 1560
TabIndex = 10
Text = "Text1"
Top = 1800
Width = 855
End
Begin VB.TextBox txtLossValue
Height = 285
Index = 4
Left = 1560
TabIndex = 9
Text = "Text1"
Top = 2160
Width = 855
End
Begin VB.TextBox txtLossValue
Height = 285
Index = 5
Left = 1560
TabIndex = 8
Text = "Text1"
Top = 2520
Width = 855
End
Begin VB.Label Label10
AutoSize = -1 'True
Caption = "6th:"
Height = 195
Left = 240
TabIndex = 27
Top = 2520
Width = 270
End
Begin VB.Label Label9
AutoSize = -1 'True
Caption = "5th:"
Height = 195
Left = 240
TabIndex = 26
Top = 2160
Width = 270
End
Begin VB.Label Label8
AutoSize = -1 'True
Caption = "4th:"
Height = 195
Left = 240
TabIndex = 25
Top = 1800
Width = 270
End
Begin VB.Label Label7
AutoSize = -1 'True
Caption = "3rd:"
Height = 195
Left = 240
TabIndex = 24
Top = 1440
Width = 270
End
Begin VB.Label Label3
AutoSize = -1 'True
Caption = "频点(MHz):"
Height = 195
Left = 600
TabIndex = 23
Top = 360
Width = 825
End
Begin VB.Label Label4
AutoSize = -1 'True
Caption = "补偿值(dB):"
Height = 195
Left = 1560
TabIndex = 22
Top = 360
Width = 870
End
Begin VB.Label Label5
AutoSize = -1 'True
Caption = "1st:"
Height = 195
Left = 240
TabIndex = 21
Top = 720
Width = 255
End
Begin VB.Label Label6
AutoSize = -1 'True
Caption = "2nd:"
Height = 195
Left = 240
TabIndex = 20
Top = 1080
Width = 315
End
End
Begin VB.CommandButton cmdOpen
Caption = "Open"
Height = 375
Left = 480
TabIndex = 4
Top = 4680
Width = 1335
End
Begin VB.CommandButton cmdStartTest
Caption = "Start Test"
Height = 375
Left = 2640
TabIndex = 3
Top = 4680
Width = 1335
End
Begin VB.CommandButton cmdExit
Caption = "Exit"
Height = 375
Left = 4680
TabIndex = 2
Top = 4680
Width = 1335
End
Begin VB.TextBox txtIMSI
Height = 285
Left = 3720
TabIndex = 1
Text = "'001011234567890'"
Top = 6000
Width = 2055
End
Begin VB.TextBox txtResult
Height = 3495
Left = 480
MultiLine = -1 'True
ScrollBars = 2 'Vertical
TabIndex = 0
Text = "E1968Demo.frx":0000
Top = 720
Width = 5535
End
Begin VB.Label Label1
AutoSize = -1 'True
Caption = "Test Results"
Height = 195
Left = 480
TabIndex = 6
Top = 360
Width = 885
End
Begin VB.Label Label2
AutoSize = -1 'True
Caption = "Paging IMSI:"
Height = 195
Left = 3720
TabIndex = 5
Top = 5760
Width = 915
End
End
Attribute VB_Name = "Form2"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Dim iE1968Handle As Integer
Dim sLossArray As String
Dim sLossFreqArray As String
Private Sub cmdExit_Click()
' Close the instrument session
Call iclose(iE1968Handle)
' Tell SICL to cleanup for this task
Call siclcleanup
End
End Sub
Private Sub cmdOpen_Click()
iE1968Handle = GetInstrInterface(14)
If iE1968Handle <= 0 Then Exit Sub
txtResult.Text = GetID_E1968(iE1968Handle)
Call Init_E1968(iE1968Handle, 5000, False)
End Sub
Private Sub Form_Load()
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -