TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
subhajit bhadury
NA
33
0
Multicasting
Aug 24 2007 3:37 AM
Hi ,
im writing a multicasting programming. my code is like
UdpClient udpclient = new UdpClient(40975);
IPAddress multicastaddress=IPAddress.Parse("233.1.2.4");
udpclient.JoinMulticastGroup(multicastaddress);
IPEndPoint remote=null;
Encoding enc = Encoding.Unicode;
//while(true)
//{
Byte[] data =udpclient.Receive(ref remote);
String strData = enc.GetString(data);
//Console.WriteLine(data);
textBox1.Text="";
for(int i=0;i<data.Length;i++)
{
//MessageBox.Show(data[i].ToString());
textBox1.Text=textBox1.Text + data[i].ToString();
}
Now the problem is that I want to convert first 2 byte to integer. But how....
Reply
Answers (
1
)
TextChange Event
have to design computer aid assignment i have no clue on vb.net