Click here to Skip to main content
15,914,481 members
Home / Discussions / C#
   

C#

 
GeneralRe: Adding button on titlebar Pin
Ed.Poore15-Aug-06 1:38
Ed.Poore15-Aug-06 1:38 
AnswerRe: Adding button on titlebar Pin
Nader Elshehabi15-Aug-06 2:07
Nader Elshehabi15-Aug-06 2:07 
AnswerRe: Adding button on titlebar Pin
Member 861778022-May-12 9:50
Member 861778022-May-12 9:50 
Questionapp.config vs. myprog.exe.config Pin
Frygreen15-Aug-06 0:44
Frygreen15-Aug-06 0:44 
AnswerRe: app.config vs. myprog.exe.config Pin
Kevin McFarlane15-Aug-06 0:55
Kevin McFarlane15-Aug-06 0:55 
GeneralRe: app.config vs. myprog.exe.config Pin
Frygreen15-Aug-06 1:47
Frygreen15-Aug-06 1:47 
QuestionRecieve data Pin
mehrdadc4814-Aug-06 22:47
mehrdadc4814-Aug-06 22:47 
AnswerRe: Recieve data Pin
stancrm14-Aug-06 23:10
stancrm14-Aug-06 23:10 
If you want to receive "data", then use :
while(true)
{
    try
    {
        string receivedMessage = serialPort1.ReadLine();
        Console.WriteLine(receivedMessage);
    }
    catch(TimeoutException)
    {
    }
}

Put this method in a new thread.

If you want to receive the "sound" from the person, I don't know how to do that.
I think, the "sound" is analog, that's why the modem is an analog modem.
You need something to digitalized it, something like Analog-Digital-Converter.
AnswerRe: Recieve data Pin
mehrdadc4814-Aug-06 23:23
mehrdadc4814-Aug-06 23:23 
GeneralRe: Recieve data Pin
stancrm15-Aug-06 0:54
stancrm15-Aug-06 0:54 
GeneralRe: Recieve data Pin
mehrdadc4815-Aug-06 1:21
mehrdadc4815-Aug-06 1:21 
GeneralRe: Recieve data Pin
Nader Elshehabi15-Aug-06 1:35
Nader Elshehabi15-Aug-06 1:35 
AnswerRe: Recieve data Pin
Nader Elshehabi15-Aug-06 1:31
Nader Elshehabi15-Aug-06 1:31 
GeneralRe: Recieve data [modified] Pin
mehrdadc4815-Aug-06 5:23
mehrdadc4815-Aug-06 5:23 
GeneralRe: Recieve data Pin
Nader Elshehabi15-Aug-06 11:32
Nader Elshehabi15-Aug-06 11:32 
GeneralRe: Recieve data [modified] Pin
mehrdadc4815-Aug-06 22:11
mehrdadc4815-Aug-06 22:11 
GeneralRe: Recieve data Pin
Nader Elshehabi16-Aug-06 1:31
Nader Elshehabi16-Aug-06 1:31 
Questionpassing a variable into a dataset select expression Pin
Glen Harvy14-Aug-06 22:35
Glen Harvy14-Aug-06 22:35 
AnswerRe: passing a variable into a dataset select expression Pin
Guffa14-Aug-06 22:57
Guffa14-Aug-06 22:57 
GeneralRe: passing a variable into a dataset select expression Pin
Glen Harvy14-Aug-06 23:45
Glen Harvy14-Aug-06 23:45 
QuestionProblem with CallBack in MasterPage [modified] Pin
offengenden14-Aug-06 22:15
offengenden14-Aug-06 22:15 
Questionhelp me please!! Pin
Nafiseh Salmani14-Aug-06 21:47
Nafiseh Salmani14-Aug-06 21:47 
AnswerRe: help me please!! Pin
Christian Graus15-Aug-06 0:00
protectorChristian Graus15-Aug-06 0:00 
GeneralRe: help me please!! Pin
Nafiseh Salmani15-Aug-06 0:01
Nafiseh Salmani15-Aug-06 0:01 
GeneralRe: help me please!! Pin
Christian Graus15-Aug-06 0:15
protectorChristian Graus15-Aug-06 0:15 

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.