public FindWindowPopupOptionsForm(nHydrate.DslPackage.Forms.FindWindowControl.Settings settings, nHydrate.DslPackage.Forms.FindWindowControl.RefreshDelegate myMethod)
            : this()
        {
            _myMethod = myMethod;
            _settings = settings;

            SetupForm();

            this.KeyUp               += FindWindowPopupOptionsForm_KeyUp;
            this.Deactivate          += FindWindowPopupOptionsForm_Deactivate;
            chkEntity.CheckedChanged += CheckedChanged;
            chkField.CheckedChanged  += CheckedChanged;
            chkView.CheckedChanged   += CheckedChanged;
        }
		public FindWindowPopupOptionsForm(nHydrate.DslPackage.Forms.FindWindowControl.Settings settings, nHydrate.DslPackage.Forms.FindWindowControl.RefreshDelegate myMethod)
			: this()
		{
			_myMethod = myMethod;
			_settings = settings;

			SetupForm();

			this.KeyUp += FindWindowPopupOptionsForm_KeyUp;
			this.Deactivate += FindWindowPopupOptionsForm_Deactivate;
			chkEntity.CheckedChanged += CheckedChanged;
			chkField.CheckedChanged += CheckedChanged;
			chkParameter.CheckedChanged += CheckedChanged;
			chkStoredProc.CheckedChanged += CheckedChanged;
			chkView.CheckedChanged += CheckedChanged;
			chkFunction.CheckedChanged += CheckedChanged;
		}