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