private void InsertURL() { using (URLForm f = new URLForm()) { if (f.ShowDialog() == DialogResult.OK) { txtStatusUpdate.Text = txtStatusUpdate.Text + " " + f.URL; } this.Show(); f.Close(); } }