Browse By Tags

  • MultiSelect with Search in UltraCombo / UltraComboEditor

    Hello,

    I am trying to find a way to select multiple options from either an UltraCombo or UltraComboEditor. This alone is pretty straightforward by editing a few of the CheckedListSettings properties, but the problem is that I also want the user to be…

  • UltraCombo and UltraComboEditor Constraints

    Hi guys,

    I've just experience something weird. Or maybe it's just me. LOL.

    I have a table that has a unique key between two column in that table. Each column is also linked to a different table. I currently have a normal VS combo box on my form…

  • UltraGrid - Combo type field, is there a way of adding an expression to determine which of two display texts to show

    HI 

    I have a combo and it can show two different display texts for the same value. I have inserted code below to show this in a grid.

    In the combo field there are two options for each "Not Viewable" entity. There is also another filed that actually shows…

  • UltraCombo and UltraComboEditor dropdown button paints big black arrow after upgrade of visual studio project from 2012 to 2015

    I have upgraded a visual studio c# project from 2012 to 2015. Infragistics was reinstalled, and is version 13.2

    Now when running the app, the ultracombo dropdown button/arrow looks like this when getting the focus:

    its only in this project, not new…

  • Changing back color of selected item in dropdown

    Hi,

    How to change back color of the selected item in the dropdown, currently its coming blue by default. I wanted to change to light yellow.
    If anyone knows about this please suggest.

    Thanks in advance.

  • Using a UltraComboEditor with checkboxes as a EditorComponent of a UltraGrid Column.

    I use a UltraComboEditor control with checkboxes as a EditorComponent of a UltraGrid Column.

    The UltraGrid Column is bound to a SQL Server varchar(1000) column.

    I want to display inside this column a series of Bank Branches, the user can check the Branches…

  • UltraComboEditor autocomplete

    Hello,

    I'm using UltraComboEditor with DropDownStyle - DropDown and AutoCompleteMode - Suggest.

    It searches fine, but user can type any text, even if it is not in the combobox items. How can I limit user with combobox items? DropDownStyle DropDownList…

  • UltraComboEditor binding issue

    I have m_UltraComboEditorBP which has dropdownstyle of DropDownList.  I am having trouble with binding

    -----

    IBindingList<string> BPList = GetBPList(); // returns 'BP1', 'BP2', ''

    m_UltraComboEditorBP.SetDataBinding(BPL…

  • UltraComboEditor

    In an UltraComboEditor control I am using, the list object has (amongst other fields) two string fields, Name and Shortname. At the moment, I have the following set up:

    DropDownStyle = DropDownStyle.DropDown

    AutoCompleteMode = AutoCompleteMode.Sugg…

  • UltraComboEditor switch focus to panel

    I have a project in which I have several different controls dynamically added to a panel which I do not have total control over. With most windows controls, if I click on space in the panel that contains no controls, focus leaves the current control and…

  • ultra Combo should show >,< and = operators and user should be able to add value for serach.

    Hi ,

    I have a requirement where in I should be able to apply a fliter on Quantity field like

    ·        Less Than / Equal To / Greater Than <Value>
    So after selecting the operator from combo user should be able to add value.
    Is there any…
  • Combo Text Cleared but grid row location is still same

    Hi,

    i'm having an ultra combo with several columns. when typing the text in the editor the relevant matching row is selected in the dropdown this is fine. my problem is 

    when the text is cleared in the editor by

    cboCustomer.text = ""

  • Using the UltraCombo whose list values are dependent on another cell

    I need the ablility to select multiple values for a cell where these values are dependent on the value of another cell in the same row. I can get the multiple values to work via the UltraCombo and a similar approach as suggedted in article "Creating a dropdown…

  • How do I remove empty space from UltraCombo......

    Hi,

      I am using UltraCombo on my form. If user scroll records in the UltraCombo then after last record it showing

    some extra blank space.  I want to remove this empty space.How do I do this?

    Please advice

     

    Regards,

     Ganesh

     

  • How to remove default Contex Menu from Ultra Combo editor

    Hi Mike,

    Is there any way to disable ContextMenu in Ultra Combo editor?

    thanks,

    Ganesh

  • Re: UltraCombo AutoCompleteMode customize

    In ultra combo/combo editor when you type first letter then ultraCombo1.Text property is getting to set whole word which is not happining with normal windows combobox.

    For example:- Suppose I have "Apple" item in my list. then if I enter "A" then ultraCombo1…

  • Re: How do I access editor buttons using Tab?

    Mike Saltzman"]

    You will probably need to use separate button or UltraButton controls. 

    Can we able put those buttons in ultra combo box Similar to editor buttons?

    ------------------------------------------------
    Ganesh

  • Problem for UltraCombo SuggestAppend property in UltraGrid.

    Hi,
     I am Using ultra combo in my application as a editor Control in Grid.
     I set AutoCompleteMode as SuggestAppend for that combo. If i press any key then it is not showing drop down box with possible values. But in case if I use same combo box in my from…

  • How to populate UltraCombo based on first character typed

    I want to use UltraCombo (or UltraComboEditor) with a datasource that gets populated based on the first character typed into the edit area.

    The datasource comes from a webservice which means that performance is an issue. I can't download the entire list…

  • UltraComboEditor - Can I Use a Custom Control for the DropDown?

    I'd like to use a ComboBox control that when the dropdown button is pressed will display my custom control instead of the standard ListBox control.

    An example can be found in the Visual Studio Properties window when editing a form. The BackColor property…

  • Databinding Array to UltraComboEditor (v7.3)

    There seems to be an issue when binding array to UltraComboEditor.  For instance the following will work..

     UltraComboEditor.DataSource = new int[ { 0, 1, 2, 3 };

     ... but the following will NOT...

      UltraComboEditor.DataSource = new MyClass[ { new MyClass…

  • Changing the displayText of a Binded UltraComboEditor

    Hello,

               I have a combo Editor Control which is  bound to a datasource. But I would like to change the display of the combo, basically append some extra text based on the value of another control. When I attempt to do this the selectedItem becomes nothing…