ok i made a Browser in FORM1 and i made a button that will open FORM2 (Form2 = Options)
so in the Form2 i made a button to change the font of the Browser:
FontDialog fontDialog = new FontDialog();
if ( fontDialog.ShowDialog() != DialogResult.Cancel )
{
textBox1.Font = fontDialog.Font;
}
and i want that the font dialog will mean to the TextBox1 in Form1 not in Form2
how can i do that??
thanks