in

C1 Community

ComponentOne Community is a free source for developers and help authors to collaborate and communicate.
All Tags » Filter (RSS)

Browse by Tags

  • Re: ComboBox Functionality

    The combo must be bound for the filter to work because the filter functionality is actually coming from the BindingSource and not the C1Combo. But if you're adding unbound data through the AddItem method, you can replace this with a DataTable. First add all the data to a DataTable and bind it to...
    Posted to List for .NET (Forum) by C1_GregL on 01-28-2008
    Filed under: C1Combo, filter
  • Re: ComboBox Functionality

    1. You can "search" any column, however you can only display a value from 1 column. The DisplayMember property controls which column is displayed in the textbox, and therefore determines which column to base the autocompletion on. 2. If your data binding has a BindingSource object you can set...
    Posted to List for .NET (Forum) by C1_GregL on 01-18-2008
    Filed under: C1Combo, filter
  • Re: Filter

    You could catch the backspace key separately and handle it as such (using your code above) if (e.Row == _flex.Rows.Fixed - 1 & e.KeyChar != (char)8) { e.Handled = true ; _flex.Editor.Text = _flex.Editor.Text + e.KeyChar; _flex.FinishEditing(); UpdateFilter(); } else if (e.KeyChar == (char)8 &...
    Posted to FlexGrid for .NET (Forum) by C1_GregL on 01-02-2008
    Filed under: C1FlexGrid, Filter
  • Filtering on a Guid

    Hi All! Does anyone know how to filter a DataView in a DataViewSet on a column that has type Guid? My present workaround is to add an extra column with the Guid cast to string and filter on that column. But this strikes me as unelegant in the extreme. Problem is: T-SQL syntax "column = ' 6F9619FF...
    Posted to ADO.NET DataExtender (Forum) by AmosWittenberg on 07-02-2008
    Filed under: filter
  • Selective load into C1DataViewSet

    Here is my simple scenario: I have 2 tables: Orders with over 1,000,000 rows and [Order Details with over 5,000,000 rows How to load just selective row(s) from Orders and only corresponding rows from [Order Details] table into C1DataViewSet? vbogey
    Posted to ADO.NET DataExtender (Forum) by vbogey on 10-24-2007
    Filed under: filter, fetch
Page 1 of 1 (5 items)
Contact ComponentOne: 1.800.858.2739 ©1987-2008 ComponentOne LLC All Rights Reserved.