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

C#

 
AnswerRe: serial port writing and reading Pin
Richard Andrew x6429-Jan-14 7:00
professionalRichard Andrew x6429-Jan-14 7:00 
GeneralRe: serial port writing and reading Pin
khomeyni30-Jan-14 4:34
khomeyni30-Jan-14 4:34 
GeneralRe: serial port writing and reading Pin
Richard Andrew x6430-Jan-14 7:59
professionalRichard Andrew x6430-Jan-14 7:59 
GeneralRe: serial port writing and reading Pin
khomeyni30-Jan-14 8:17
khomeyni30-Jan-14 8:17 
GeneralRe: serial port writing and reading Pin
Richard Andrew x6430-Jan-14 8:23
professionalRichard Andrew x6430-Jan-14 8:23 
GeneralRe: serial port writing and reading Pin
khomeyni30-Jan-14 8:26
khomeyni30-Jan-14 8:26 
AnswerRe: serial port writing and reading Pin
Richard Andrew x6430-Jan-14 8:34
professionalRichard Andrew x6430-Jan-14 8:34 
GeneralRe: serial port writing and reading Pin
khomeyni30-Jan-14 8:50
khomeyni30-Jan-14 8:50 
AnswerRe: serial port writing and reading Pin
Richard Andrew x6430-Jan-14 8:52
professionalRichard Andrew x6430-Jan-14 8:52 
GeneralRe: serial port writing and reading Pin
khomeyni30-Jan-14 8:59
khomeyni30-Jan-14 8:59 
AnswerRe: serial port writing and reading Pin
Richard Andrew x6430-Jan-14 9:06
professionalRichard Andrew x6430-Jan-14 9:06 
GeneralRe: serial port writing and reading Pin
khomeyni30-Jan-14 9:06
khomeyni30-Jan-14 9:06 
Questiondepicting data in c# in realtime Pin
khomeyni29-Jan-14 2:38
khomeyni29-Jan-14 2:38 
AnswerRe: depicting data in c# in realtime Pin
Eddy Vluggen29-Jan-14 2:59
professionalEddy Vluggen29-Jan-14 2:59 
GeneralRe: depicting data in c# in realtime Pin
khomeyni29-Jan-14 6:43
khomeyni29-Jan-14 6:43 
GeneralRe: depicting data in c# in realtime Pin
Eddy Vluggen29-Jan-14 8:01
professionalEddy Vluggen29-Jan-14 8:01 
GeneralRe: depicting data in c# in realtime Pin
khomeyni30-Jan-14 4:26
khomeyni30-Jan-14 4:26 
QuestionNeed help on chat between two computers Pin
larsp77729-Jan-14 1:20
larsp77729-Jan-14 1:20 
AnswerRe: Need help on chat between two computers Pin
OriginalGriff29-Jan-14 2:32
mveOriginalGriff29-Jan-14 2:32 
GeneralRe: Need help on chat between two computers Pin
larsp77729-Jan-14 2:43
larsp77729-Jan-14 2:43 
Not sure I understand...Could you show how to change my code?

This is my code:

C#
private void Form1_Load(object sender, EventArgs e)
       {
           //Set up socket
           sck = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp);
           sck.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.ReuseAddress, true);

           //Get user IP
           txtLocalIP.Text = GetLocalIP();
           txtRemoteIP.Text = GetLocalIP();
       }


       private string GetLocalIP()
       {
           IPHostEntry host;
           host = Dns.GetHostEntry(Dns.GetHostName());
           foreach (IPAddress ip in host.AddressList)
           {
               if (ip.AddressFamily == AddressFamily.InterNetwork)
                   return ip.ToString();
           }
           return "127.0.0.1";
       }

       private void MessageCallBack(IAsyncResult aResult)
       {
           try
           {
               byte[] receivedData = new byte[1500];
               receivedData = (byte[])aResult.AsyncState;

               //Converting byte{] to string
               ASCIIEncoding aEncoding = new ASCIIEncoding();
               string receivedMessage = aEncoding.GetString(receivedData);

               //Adding this messegage into ListBox
               listMessage.Items.Add("Friend: " + receivedMessage);

               buffer = new byte[1500];
               sck.BeginReceiveFrom(buffer, 0, buffer.Length, SocketFlags.None, ref epRemote, new AsyncCallback(MessageCallBack), buffer);
           }
           catch (Exception ex)
           {
               MessageBox.Show(ex.ToString());
           }
       }


       private void btnConnect_Click(object sender, EventArgs e)
       {
           //Binding socket
           epLocal = new IPEndPoint(IPAddress.Parse(txtLocalIP.Text), Convert.ToInt32(txtLocalPort.Text));
           sck.Bind(epLocal);

           //Connecting to remote IP
           epRemote = new IPEndPoint(IPAddress.Parse(txtRemoteIP.Text), Convert.ToInt32(txtRemotePort.Text));
           sck.Connect(epRemote);

           //Listen to specific port
           buffer = new byte[1500];
           sck.BeginReceiveFrom(buffer, 0, buffer.Length, SocketFlags.None, ref epRemote, new AsyncCallback(MessageCallBack), buffer);
       }

       private void btnSend_Click(object sender, EventArgs e)
       {
           //Convert string message to byte[]
           ASCIIEncoding aEncoding = new ASCIIEncoding();
           byte[] sendingMessage = new byte[1500];
           sendingMessage = aEncoding.GetBytes(txtMessage.Text);

           //Sending the Encoded message
           sck.Send(sendingMessage);

           //Adding to the ListBox
           listMessage.Items.Add("Me: " + txtMessage.Text);
           txtMessage.Text = "";
       }

GeneralRe: Need help on chat between two computers Pin
OriginalGriff29-Jan-14 2:54
mveOriginalGriff29-Jan-14 2:54 
GeneralRe: Need help on chat between two computers Pin
larsp77729-Jan-14 6:13
larsp77729-Jan-14 6:13 
GeneralRe: Need help on chat between two computers Pin
Richard Deeming29-Jan-14 7:22
mveRichard Deeming29-Jan-14 7:22 
GeneralRe: Need help on chat between two computers Pin
OriginalGriff29-Jan-14 8:01
mveOriginalGriff29-Jan-14 8:01 
GeneralRe: Need help on chat between two computers Pin
larsp77729-Jan-14 10:28
larsp77729-Jan-14 10:28 

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.