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

📄 callback_vb_dial.frm

📁 三汇CTI示例程序源码
💻 FRM
字号:
VERSION 5.00
Object = "{5E9E78A0-531B-11CF-91F6-C2863C385E30}#1.0#0"; "MSFLXGRD.OCX"
Begin VB.Form MainForm 
   Caption         =   "Dial"
   ClientHeight    =   4965
   ClientLeft      =   60
   ClientTop       =   390
   ClientWidth     =   8385
   LinkTopic       =   "Form1"
   ScaleHeight     =   4965
   ScaleWidth      =   8385
   StartUpPosition =   3  'Windows Default
   Begin VB.Timer Timer1 
      Interval        =   200
      Left            =   3960
      Top             =   4080
   End
   Begin VB.CommandButton Command1 
      Caption         =   "Quit"
      Height          =   375
      Left            =   4800
      TabIndex        =   3
      Top             =   4080
      Width           =   1935
   End
   Begin VB.TextBox Text1 
      Height          =   375
      Left            =   2040
      TabIndex        =   2
      Text            =   "4"
      Top             =   4080
      Width           =   1455
   End
   Begin MSFlexGridLib.MSFlexGrid TrkChGrid 
      Height          =   3255
      Left            =   3480
      TabIndex        =   1
      Top             =   240
      Width           =   4695
      _ExtentX        =   8281
      _ExtentY        =   5741
      _Version        =   393216
   End
   Begin MSFlexGridLib.MSFlexGrid UserChGrid 
      Height          =   3255
      Left            =   120
      TabIndex        =   0
      Top             =   240
      Width           =   3135
      _ExtentX        =   5530
      _ExtentY        =   5741
      _Version        =   393216
   End
   Begin VB.Label Label1 
      Caption         =   "Called Num Length"
      Height          =   255
      Left            =   360
      TabIndex        =   4
      Top             =   4200
      Width           =   1455
   End
End
Attribute VB_Name = "MainForm"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub SubWizard1_GotFocus()

End Sub

Private Sub Command1_Click()
Unload Me
End Sub

Private Sub Form_Load()
Dim VerMsg As String * 100
If InitCtiBoard() = False Then
    Unload Me
    Exit Sub
Else
    Call InitTrunkChGrid
    Call InitUserChGrid
End If
End Sub

Private Sub Form_Unload(Cancel As Integer)
    Call SsmCloseCti
End Sub

Private Sub Timer1_Timer()
    DrawTrunkChState
    DrawUserChState
End Sub

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -