📄 mainform.frm
字号:
VERSION 5.00
Object = "{5E9E78A0-531B-11CF-91F6-C2863C385E30}#1.0#0"; "Msflxgrd.ocx"
Begin VB.Form MainForm
Caption = "Call:Demo for Trunk & Station"
ClientHeight = 3960
ClientLeft = 60
ClientTop = 345
ClientWidth = 7020
LinkTopic = "Form1"
ScaleHeight = 3960
ScaleWidth = 7020
StartUpPosition = 3 'Windows Default
Begin VB.Timer Timer1
Enabled = 0 'False
Interval = 50
Left = 2280
Top = 3240
End
Begin VB.CommandButton Command1
Caption = "Exit"
Height = 375
Left = 5280
TabIndex = 1
Top = 3360
Width = 1455
End
Begin MSFlexGridLib.MSFlexGrid StateGrid
Height = 2535
Left = 120
TabIndex = 0
Top = 480
Width = 6615
_ExtentX = 11668
_ExtentY = 4471
_Version = 393216
Appearance = 0
End
End
Attribute VB_Name = "MainForm"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Command1_Click()
Unload Me
End Sub
Private Sub Form_Load()
If InitCtiSystem() = False Then Unload Me
Call InitATrunkCh
Call InitATrunkListCtrl
Timer1.Enabled = True
End Sub
Private Sub Form_Unload(Cancel As Integer)
Call SsmCloseCti
End Sub
Private Sub Timer1_Timer()
Call UpDateATrunkChListCtrl
Call ScanATrunkCh
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -