Esempio n. 1
0
 public static void populateDropDownList(System.Windows.Forms.ComboBox dropdownlist, bool includeInactive, bool showDefault, Guid?vendorID)
 {
     Tools.populateDropDownList(dropdownlist, get(includeInactive, null, null, vendorID).DefaultView, COL_NAMEFULL, COL_DB_ID, showDefault);
 }
Esempio n. 2
0
 public static void populateDropDownList(System.Windows.Forms.ComboBox dropdownlist, bool includeInactive, bool showDefault)
 {
     Tools.populateDropDownList(dropdownlist, getByFilter(includeInactive).DefaultView, COL_DB_NAME, COL_DB_ID, showDefault);
 }
        /*******************************************************************************************************/
        #region CLASS METHODS

        public static void populateDropDownList(System.Windows.Forms.ComboBox dropdownlist, bool includeInactive, bool showDefault)
        {
            Tools.populateDropDownList(dropdownlist, get(false, null, null).DefaultView, COL_DB_Name, COL_DB_Id, showDefault);
        }
Esempio n. 4
0
 public static void populateDropDownList(System.Windows.Forms.ComboBox dropdownlist, bool includeInactive, params GordenItemCategories?[] categoryEnumIDList)
 {
     Tools.populateDropDownList(dropdownlist, get(includeInactive, Tools.copyIntToArrayTable(convertToIntArray(categoryEnumIDList)), null, null, null, null, null, null).DefaultView, COL_DB_NAME, COL_DB_ID, false);
 }
Esempio n. 5
0
        /*******************************************************************************************************/
        #region CLASS METHODS

        public static void populateDropDownList(System.Windows.Forms.ComboBox dropdownlist, bool showOnlyIncomplete)
        {
            Tools.populateDropDownList(dropdownlist, get(showOnlyIncomplete).DefaultView, COL_DB_InvoiceNo, COL_DB_Id, false);
        }