activeTAPI-Developer.NET
activeTAPI.NET
activeTAPI.NET is completely beeing rewritten based on the Microsoft.NET Framework v3.5. We expect it to be available in July 2011.
activeTAPI.NET is the easiest CTI (Computer Telephony Integration) with activeTAPI ever.
activeTAPI.NET is one of the first solutions world-wide that makes Windows TAPI3 available through 100% managed .NET code.
Event-Handler
void CallInfoChanged_EventHandler(
object sender, activeTAPI.CallInfoChangedEventArgs e) { ICallInfo callInfo = e.ActiveCall.CallInfo; this.textCallInfoLine1.Text = String.Format("CallerID {0} {1}", callInfo.CallerIDNumber, callInfo.CallerIDName); this.textCallInfoLine2.Text = String.Format("CalledID {0} {1}", callInfo.CalledIDNumber, callInfo.CalledIDName); } |
| An activeTAPI CallInfoChanged event handler that displays the CallerId and the CalledId |
