Acme.PROJECTNAME.Install.IdentifyDatabaseForm.comboBoxConnectionServerName_DropDown C# (CSharp) Method

comboBoxConnectionServerName_DropDown() private method

private comboBoxConnectionServerName_DropDown ( object sender, System e ) : void
sender object
e System
return void
		private void comboBoxConnectionServerName_DropDown(object sender, System.EventArgs e)
		{
			this.Cursor = Cursors.WaitCursor;
			try
			{
				if (comboBoxConnectionServerName.Items.Count == 0)
				{
					comboBoxConnectionServerName.DataSource = SqlServers.GetServers();
				}
			}
			catch (Exception ex)
			{
				throw ex;
			}
			finally
			{
				this.Cursor = Cursors.Default;
			}

		}