Ejemplo n.º 1
0
 private void ShowFindForm()
 {
     if (findForm == null || findForm.IsDisposed)
     {
         findForm       = new FindForm(this.grdResources);
         findForm.Owner = this;
     }
     if (!findForm.Visible)
     {
         findForm.Show();
     }
 }
Ejemplo n.º 2
0
		private void ShowFindForm()
		{
			if (findForm == null || findForm.IsDisposed)
			{
				findForm = new FindForm(this.grdResources);
				findForm.Owner = this;
			}
			if ( !findForm.Visible )
				findForm.Show();
		}