Just serialize the Font object and send it across.

...Glenn

On Mon, Nov 3, 2008 at 2:31 PM, asit <[EMAIL PROTECTED]> wrote:

>
> I used font dialog to change the font properties.
>
>           FontDialog fd = new FontDialog();
>           if (fd.ShowDialog() != DialogResult.Cancel)
>            {
>                textBox1.Font = fd.Font;
>                listBox1.Font = fd.Font;
>                //MessageBox.Show(fd.Font.ToString());
>            }
>
> I want to send this information across internet.
>
> How can I do this ??????

Reply via email to