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