Socket Programming [modified]
-
hi friends I have created a UDP multicast program. And now my doubt is if I change font properties of the message in server and send it, the client should be able to receive the message with same font or color. Its a windows form application. thanks in advance Rahul -- modified at 0:41 Friday 30th March, 2007
-
hi friends I have created a UDP multicast program. And now my doubt is if I change font properties of the message in server and send it, the client should be able to receive the message with same font or color. Its a windows form application. thanks in advance Rahul -- modified at 0:41 Friday 30th March, 2007
Font and other look-n-feel properties are not the part of message. If you want send those too send as rich text format instead of sending just text.
M.Sendilkumar
-
Font and other look-n-feel properties are not the part of message. If you want send those too send as rich text format instead of sending just text.
M.Sendilkumar
ya same thing .... how to send data in rich text format
-
ya same thing .... how to send data in rich text format
Rahul Babu wrote:
how to send data in rich text format
Like everything you send on a socket, it is just a sequence of bytes. You get the RTF string and send it as a series of bytes.
Upcoming events: * Edinburgh: Web Security Conference Day for Windows Developers (12th April) * Glasgow: Introduction to AJAX (2nd May), SQL Server, Mock Objects My website
-
Rahul Babu wrote:
how to send data in rich text format
Like everything you send on a socket, it is just a sequence of bytes. You get the RTF string and send it as a series of bytes.
Upcoming events: * Edinburgh: Web Security Conference Day for Windows Developers (12th April) * Glasgow: Introduction to AJAX (2nd May), SQL Server, Mock Objects My website
Yes exactly.
M.Sendilkumar
-
Rahul Babu wrote:
how to send data in rich text format
Like everything you send on a socket, it is just a sequence of bytes. You get the RTF string and send it as a series of bytes.
Upcoming events: * Edinburgh: Web Security Conference Day for Windows Developers (12th April) * Glasgow: Introduction to AJAX (2nd May), SQL Server, Mock Objects My website
Use Rich Text box to type message which you want to send.And use RichTextBox1.rtf,not Text.
M.Sendilkumar