Beispiel #1
0
        // Populate the ComboBox
        private void GetGroupsInComboBox()
        {
            GROUP     group = new GROUP();
            DataTable table = group.GetGroups(Globals.GlobalUserId);

            this.CheckBoxEnableGroups.Enabled = true;
            this.CheckBoxEnableGroups.Checked = true;
            this.comboBoxGroup.DataSource     = table;
            this.comboBoxGroup.DisplayMember  = "GroupName";
            this.comboBoxGroup.ValueMember    = "GroupId";
        }
        // Form Load
        private void Contact_Full_List_Form_Load(object sender, EventArgs e)
        {
            this.DataGridView_ContactsList.RowTemplate.Height = 80;

            // Populate the ListBox with Group Names
            GROUP group = new GROUP();

            this.ListBoxGroups.DataSource    = group.GetGroups(Globals.GlobalUserId);
            this.ListBoxGroups.DisplayMember = "GroupName";
            this.ListBoxGroups.ValueMember   = "GroupId";

            // Populate DataGridView with Contacts
            PopulateContactsInDataGridView();
        }
Beispiel #3
0
 // CheckBox Checked Change Method
 private void CheckBoxEnableGroups_CheckedChanged(object sender, EventArgs e)
 {
     if (this.CheckBoxEnableGroups.Checked == true)
     {
         // Populate Edit ComboBox
         GROUP group = new GROUP();
         this.comboBoxGroup.Enabled       = true;
         this.comboBoxGroup.DataSource    = group.GetGroups(Globals.GlobalUserId);
         this.comboBoxGroup.DisplayMember = "GroupName";
         this.comboBoxGroup.ValueMember   = "GroupId";
     }
     else
     {
         this.comboBoxGroup.DataSource = null;
         this.comboBoxGroup.Enabled    = false;
     }
 }