now im the final year student.and make some research on C# programming.im try to make real time chat taht means when user try to send message but without send button.only type the message,automatically appear on the message board.im try to study it,but im the beginner in the C#.so it very difficult for me to find the way how t make it..if anyone can help me..
thank you very much
Loading
a zPosted Oct 13, 2009, 7:44 PM
a zPosted Aug 2, 2009, 4:53 PM
i'm that link but page error...
AaronPosted Jul 15, 2009, 3:19 PM
This one is a good example of a Chat system.
www.geekpedia.com/tutorial239_Csharp-Chat-Part-1---Building-the-Chat-
a zPosted Jul 14, 2009, 9:26 PM
a zPosted Jul 14, 2009, 8:43 PM
{
if (txtMessage.Lines.Length >= 1)
{
SendMessage();
}
}
private void btnSend_Click(object sender, EventArgs e)
{
SendMessage();
}
private void txtMessage_KeyPress(object sender, KeyPressEventArgs e)
{
// If the key is Enter
if (e.KeyChar == (char)13)
{
SendMessage();
}
this is the simple chat for the client when send the msg.So what must I do to make that I can send msg without click the send button or enter key?
thank u.
a zPosted Jul 1, 2009, 12:44 AM
Mahesh ChandPosted Jul 1, 2009, 12:01 AM
a zPosted Jun 30, 2009, 9:48 PM
But for me i want to make the client program without send button.When we typr the massege in the text box,automatically appear in the other user logtext without send button.
plz help me...
i must finish myresearch before august this year..
a zPosted Jun 27, 2009, 10:14 AM
if u got any code or suggestion plz let me know...
thanks again ('',
Mahesh ChandPosted Jun 27, 2009, 9:54 AM