⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mainform.frm

📁 用VB写的呼叫中心
💻 FRM
字号:
VERSION 5.00
Object = "{5E9E78A0-531B-11CF-91F6-C2863C385E30}#1.0#0"; "MSFLXGRD.OCX"
Begin VB.Form MainForm 
   Caption         =   "Call:CTI套卡驱动程序演示程序(模拟中继卡)"
   ClientHeight    =   3750
   ClientLeft      =   60
   ClientTop       =   345
   ClientWidth     =   6135
   LinkTopic       =   "Form1"
   ScaleHeight     =   3750
   ScaleWidth      =   6135
   StartUpPosition =   3  'Windows Default
   Begin VB.Timer Timer1 
      Enabled         =   0   'False
      Interval        =   10
      Left            =   1560
      Top             =   3120
   End
   Begin VB.CommandButton Command1 
      Caption         =   "退出"
      Height          =   375
      Left            =   4440
      TabIndex        =   1
      Top             =   3120
      Width           =   1335
   End
   Begin MSFlexGridLib.MSFlexGrid StateGrid 
      Height          =   2295
      Left            =   120
      TabIndex        =   0
      Top             =   480
      Width           =   5655
      _ExtentX        =   9975
      _ExtentY        =   4048
      _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 + -