Ejemplo n.º 1
0
 private void initializeCombobox()
 {
     int[] allUserID = mydb.getAllUserID();
     if (allUserID != null)
     {
         foreach (int item in allUserID)
         {
             comboBox3.Items.Add(item.ToString());
         }
     }
 }