/// <summary>
 /// Resets the form elements/selected items and clears the related textboxes
 /// </summary>
 private void ResetForm()
 {
     CompaniesListBox.ClearSelected();
     CompaniesListBox.SelectedItem = null;
     CompanyNameTextBox.Text       = "";
     CompanyDataTextBox.Text       = "";
     CompanyAdressTextBox.Text     = "";
     DeliveryAdressTextBox.Text    = "";
 }
        /// <summary>
        /// Resets the form elements/selected items
        /// </summary>
        private void ResetForm()
        {
            TablesListBox.ClearSelected();
            TablesListBox.SelectedItem = null;

            CustomersListBox.ClearSelected();
            CustomersListBox.SelectedItem = null;

            CompaniesListBox.ClearSelected();
            CompaniesListBox.SelectedItem = null;
        }