Click here to Skip to main content
15,922,155 members
Home / Discussions / C#
   

C#

 
AnswerRe: increase the font size of the text and size of the controls, when click on maximize button Pin
Łukasz Nowakowski28-Jul-10 0:35
Łukasz Nowakowski28-Jul-10 0:35 
AnswerRe: increase the font size of the text and size of the controls, when click on maximize button Pin
Nuri Ismail28-Jul-10 0:41
Nuri Ismail28-Jul-10 0:41 
GeneralRe: increase the font size of the text and size of the controls, when click on maximize button Pin
NarVish28-Jul-10 2:23
NarVish28-Jul-10 2:23 
GeneralRe: increase the font size of the text and size of the controls, when click on maximize button Pin
Nuri Ismail28-Jul-10 3:10
Nuri Ismail28-Jul-10 3:10 
QuestionGenerate Text File Pin
tek 200927-Jul-10 22:41
tek 200927-Jul-10 22:41 
AnswerRe: Generate Text File Pin
OriginalGriff27-Jul-10 22:52
mveOriginalGriff27-Jul-10 22:52 
GeneralRe: Generate Text File Pin
tek 200927-Jul-10 23:16
tek 200927-Jul-10 23:16 
GeneralRe: Generate Text File Pin
Pete O'Hanlon27-Jul-10 23:22
mvePete O'Hanlon27-Jul-10 23:22 
AnswerRe: Generate Text File Pin
tek 200927-Jul-10 23:36
tek 200927-Jul-10 23:36 
GeneralRe: Generate Text File Pin
OriginalGriff27-Jul-10 23:28
mveOriginalGriff27-Jul-10 23:28 
AnswerRe: Generate Text File Pin
tek 200928-Jul-10 0:15
tek 200928-Jul-10 0:15 
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 

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.