Click here to Skip to main content
15,891,657 members
Home / Discussions / C#
   

C#

 
GeneralRe: Generate Text File Pin
OriginalGriff28-Jul-10 0:20
mveOriginalGriff28-Jul-10 0:20 
AnswerRe: Generate Text File Pin
Peace ON27-Jul-10 22:53
Peace ON27-Jul-10 22:53 
QuestionWhy cant I access my forms design Pin
TSWatson27-Jul-10 22:27
TSWatson27-Jul-10 22:27 
AnswerRe: Why cant I access my forms design Pin
Khaniya28-Jul-10 0:30
professionalKhaniya28-Jul-10 0:30 
Questionhow to convert google guage chart in pdf format.. Pin
Nagendra Pal27-Jul-10 21:34
Nagendra Pal27-Jul-10 21:34 
AnswerRe: how to convert google guage chart in pdf format.. Pin
Nagy Vilmos27-Jul-10 22:17
professionalNagy Vilmos27-Jul-10 22:17 
GeneralRe: how to convert google guage chart in pdf format.. Pin
OriginalGriff27-Jul-10 22:55
mveOriginalGriff27-Jul-10 22:55 
QuestionProblem with pc to pc Voice chat on LAN using h323 protocol. Pin
88Rocker27-Jul-10 18:46
88Rocker27-Jul-10 18:46 
i got voice conference code using h323(by fahdi) from here code project, the problem m facing is it works fine on same PC when i put both peers on a single PC. but when i try to run it on LAN receiving call PC get hanged, y is it.


thanks in advance. waiting for reply


here is the code. these are the h323 events i have used

void h323_RemoteBusy()
       {
           MessageBox.Show("User is busy");
       }

       void h323_Disconnected(string RemoteUserName)
       {
           MessageBox.Show("Call Disconnected ");
           btnCall.IsEnabled = true;
           btnEndCall.IsEnabled = false;
           btnVideo.IsEnabled = false;
           lblCallStatus.Visibility = Visibility.Hidden;
       }
       void h323_Connected(string RemoteUserName)
       {
           System.Windows.Forms.DialogResult myDialogResult = System.Windows.Forms.MessageBox.Show("Incomming Call by " + RemoteUserName + "\nDo u want to recieve Call?", "Message", System.Windows.Forms.MessageBoxButtons.YesNo, System.Windows.Forms.MessageBoxIcon.Question);
           if (myDialogResult == System.Windows.Forms.DialogResult.Yes)
           {
               h323.Answer();
           }
           else
           {
               h323.Hangup();
           }
       }

AnswerRe: Problem with pc to pc Voice chat on LAN using h323 protocol. Pin
OriginalGriff27-Jul-10 21:12
mveOriginalGriff27-Jul-10 21:12 
AnswerRe: Problem with pc to pc Voice chat on LAN using h323 protocol. Pin
88Rocker28-Jul-10 5:52
88Rocker28-Jul-10 5:52 
QuestionIs there a backgroungworker in WPF Pin
JimmyRopes27-Jul-10 15:59
professionalJimmyRopes27-Jul-10 15:59 
AnswerRe: Is there a backgroungworker in WPF Pin
N a v a n e e t h27-Jul-10 17:43
N a v a n e e t h27-Jul-10 17:43 
GeneralRe: Is there a backgroungworker in WPF Pin
JimmyRopes28-Jul-10 11:48
professionalJimmyRopes28-Jul-10 11:48 
AnswerRe: Is there a backgroungworker in WPF Pin
Pete O'Hanlon27-Jul-10 21:41
mvePete O'Hanlon27-Jul-10 21:41 
GeneralRe: Is there a backgroungworker in WPF Pin
riced28-Jul-10 0:17
riced28-Jul-10 0:17 
GeneralRe: Is there a backgroungworker in WPF Pin
N a v a n e e t h28-Jul-10 1:27
N a v a n e e t h28-Jul-10 1:27 
GeneralRe: Is there a backgroungworker in WPF Pin
Pete O'Hanlon28-Jul-10 2:20
mvePete O'Hanlon28-Jul-10 2:20 
GeneralRe: Is there a backgroungworker in WPF Pin
JimmyRopes28-Jul-10 11:56
professionalJimmyRopes28-Jul-10 11:56 
Questionimage processing Pin
amnard27-Jul-10 13:46
amnard27-Jul-10 13:46 
AnswerRe: image processing Pin
Luc Pattyn27-Jul-10 13:57
sitebuilderLuc Pattyn27-Jul-10 13:57 
AnswerRe: image processing Pin
JimmyRopes27-Jul-10 16:10
professionalJimmyRopes27-Jul-10 16:10 
AnswerRe: image processing Pin
Dave Kreskowiak27-Jul-10 18:13
mveDave Kreskowiak27-Jul-10 18:13 
GeneralRe: image processing Pin
souidi abderrahman27-Jul-10 21:34
souidi abderrahman27-Jul-10 21:34 
GeneralRe: image processing Pin
J4amieC27-Jul-10 23:08
J4amieC27-Jul-10 23:08 
GeneralRe: image processing Pin
souidi abderrahman28-Jul-10 0:26
souidi abderrahman28-Jul-10 0:26 

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.