Inheritance: System.Windows.Forms.Form
Exemplo n.º 1
0
        private bool IdentifyDatabaseConnectionString(InstallSetup setup)
        {
            var F = new IdentifyDatabaseForm(setup);

            if (F.ShowDialog() == DialogResult.OK)
            {
                this.Action   = F.Action;
                this.Settings = F.Settings;
                return(true);
            }
            return(false);
        }
Exemplo n.º 2
0
		private bool IdentifyDatabaseConnectionString(InstallSetup setup)
		{
			var F = new IdentifyDatabaseForm(setup);
			if (F.ShowDialog() == DialogResult.OK)
			{
				this.Action = F.Action;
				this.Settings = F.Settings;
				return true;
			}
			return false;
		}