With some small exceptions, library features correspond to the features of our crossplatform QT application, such as:
The library will do the most difficult things for you: trace states, ensure media data and statuses synchronization, etc. You can find examples of ActiveX calls in TrueConf SDK for Windows components below.
SDK for Windows.
Call users with user ID based in C#
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
private void buttonCall_Click(object sender, EventArgs e) { if (textBoxTrueConfIdForCall.Text != "" && isCanCall) { axTrueConfCallX1.call(textBoxTrueConfIdForCall.Text); textBoxTrueConfIdForCall.Text = ""; } } private void buttonEndCall_Click(object sender, EventArgs e) { if (!isCanCall) { axTrueConfCallX1.hangUp(); isCanCall = true; } } |
Accept incoming call based in Pascal (Delphi)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
procedure TForm1.TrueConfCallX1XAfterStart(Sender: TObject); begin TrueConfCallX1.XSetCameraByIndex(0); TrueConfCallX1.connectToServer('127.0.0.1'); end; procedure TForm1.TrueConfCallX1ServerConnected(ASender: TObject; const eventDetails: WideString); begin TrueConfCallX1.login('user', 'password'); end; procedure TForm1.TrueConfCallX1InviteReceived(ASender: TObject; const eventDetails: WideString); begin Application.Restore; TrueConfCallX1.accept; end; |
Read our tutorials.
Read our FAQ.