Click here to Skip to main content
16,004,906 members
Home / Discussions / C#
   

C#

 
QuestionC++ 6.0 MDI and MDI C# Child Pin
Christopher Stratmann25-Sep-06 7:52
Christopher Stratmann25-Sep-06 7:52 
QuestionPhone caller Pin
HojatAlizadehfard25-Sep-06 7:32
HojatAlizadehfard25-Sep-06 7:32 
AnswerRe: Phone caller Pin
Nader Elshehabi25-Sep-06 7:54
Nader Elshehabi25-Sep-06 7:54 
GeneralRe: Phone caller Pin
Nadia Monalisa25-Sep-06 11:18
Nadia Monalisa25-Sep-06 11:18 
GeneralRe: Phone caller Pin
Nader Elshehabi25-Sep-06 11:30
Nader Elshehabi25-Sep-06 11:30 
QuestionRe: Phone caller Pin
HojatAlizadehfard27-Sep-06 7:06
HojatAlizadehfard27-Sep-06 7:06 
AnswerRe: Phone caller Pin
Nader Elshehabi27-Sep-06 10:41
Nader Elshehabi27-Sep-06 10:41 
GeneralRe: Phone caller Pin
HojatAlizadehfard28-Sep-06 7:36
HojatAlizadehfard28-Sep-06 7:36 
Hi.
I use this code to call to a number:
TAPI3Lib.ITAddress ln=null;
ln=ia[line];
if(textBox1.Text.Length!=0)
{
MessageBox.Show(""+textBox1.Text,"Calling to");
try
{
if(!h323)
{
bcc = ln.CreateCall(textBox1.Text,TapiConstants.LINEADDRESSTYPE_PHONENUMBER|TapiConstants.LINEADDRESSTYPE_IPADDRESS,TapiConstants.TAPIMEDIATYPE_DATAMODEM|TapiConstants.TAPIMEDIATYPE_AUDIO);
bcc.SetQOS(TapiConstants.TAPIMEDIATYPE_DATAMODEM|TapiConstants.TAPIMEDIATYPE_AUDIO,QOS_SERVICE_LEVEL.QSL_BEST_EFFORT);
bcc.Connect(false);
}
else
{
bcc = ln.CreateCall(textBox1.Text,TapiConstants.LINEADDRESSTYPE_IPADDRESS,TapiConstants.TAPIMEDIATYPE_AUDIO);
bcc.Connect(false);//I receive Error in this line!!!
}
}
catch(Exception exp)
{
MessageBox.Show("Failed to create call!","TAPI3");
}
}
else
{
MessageBox.Show("Please enter number to dial.. ");
}
best regards.
GeneralRe: Phone caller Pin
Nader Elshehabi28-Sep-06 8:02
Nader Elshehabi28-Sep-06 8:02 
GeneralRe: Phone caller Pin
HojatAlizadehfard28-Sep-06 9:30
HojatAlizadehfard28-Sep-06 9:30 
GeneralRe: Phone caller Pin
Nader Elshehabi28-Sep-06 9:42
Nader Elshehabi28-Sep-06 9:42 
QuestionRe: Phone caller Pin
HojatAlizadehfard1-Oct-06 1:20
HojatAlizadehfard1-Oct-06 1:20 
AnswerRe: Phone caller Pin
Nader Elshehabi1-Oct-06 4:22
Nader Elshehabi1-Oct-06 4:22 
QuestionQuestion about messaging in C# Pin
Jethro6325-Sep-06 7:00
Jethro6325-Sep-06 7:00 
AnswerRe: Question about messaging in C# Pin
led mike25-Sep-06 7:44
led mike25-Sep-06 7:44 
AnswerRe: Question about messaging in C# Pin
Nader Elshehabi25-Sep-06 7:59
Nader Elshehabi25-Sep-06 7:59 
GeneralRe: Question about messaging in C# Pin
Jethro6325-Sep-06 8:13
Jethro6325-Sep-06 8:13 
GeneralRe: Question about messaging in C# Pin
Nader Elshehabi25-Sep-06 10:42
Nader Elshehabi25-Sep-06 10:42 
GeneralRe: Question about messaging in C# Pin
Jethro6325-Sep-06 16:20
Jethro6325-Sep-06 16:20 
QuestionProblem with SmtpClient Pin
Hmitosh25-Sep-06 6:36
Hmitosh25-Sep-06 6:36 
AnswerRe: Problem with SmtpClient Pin
led mike25-Sep-06 7:45
led mike25-Sep-06 7:45 
AnswerRe: Problem with SmtpClient Pin
Nadia Monalisa25-Sep-06 10:15
Nadia Monalisa25-Sep-06 10:15 
Questionchoosing appropriate data type Pin
biaali25-Sep-06 6:24
biaali25-Sep-06 6:24 
AnswerRe: choosing appropriate data type Pin
Jon Sagara25-Sep-06 6:33
Jon Sagara25-Sep-06 6:33 
GeneralRe: choosing appropriate data type Pin
biaali25-Sep-06 6:36
biaali25-Sep-06 6:36 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.