Click here to Skip to main content
15,910,358 members
Home / Discussions / C#
   

C#

 
AnswerRe: SourceGrid customise Pin
Henry Minute11-Aug-09 4:52
Henry Minute11-Aug-09 4:52 
GeneralRe: SourceGrid customise Pin
Parth Gandhi18-Aug-09 2:04
Parth Gandhi18-Aug-09 2:04 
GeneralRe: SourceGrid customise Pin
Henry Minute18-Aug-09 2:15
Henry Minute18-Aug-09 2:15 
QuestionUpdate SQL Server 2005 table with DataGrid contents Pin
Wheels01211-Aug-09 3:35
Wheels01211-Aug-09 3:35 
QuestionI want to load a button in the title bar Pin
flydk11-Aug-09 3:28
flydk11-Aug-09 3:28 
AnswerRe: I want to load a button in the title bar Pin
Saksida Bojan11-Aug-09 4:23
Saksida Bojan11-Aug-09 4:23 
GeneralRe: I want to load a button in the title bar Pin
flydk11-Aug-09 14:41
flydk11-Aug-09 14:41 
GeneralRe: I want to load a button in the title bar Pin
Saksida Bojan12-Aug-09 8:19
Saksida Bojan12-Aug-09 8:19 
GeneralRe: I want to load a button in the title bar Pin
flydk12-Aug-09 19:09
flydk12-Aug-09 19:09 
QuestionReplace(@"\\", @"\") not working Pin
dptalt11-Aug-09 3:22
dptalt11-Aug-09 3:22 
AnswerRe: Replace(@"\\", @"\") not working Pin
Andrew Rissing11-Aug-09 3:58
Andrew Rissing11-Aug-09 3:58 
GeneralRe: Replace(@"\\", @"\") not working Pin
dptalt11-Aug-09 4:04
dptalt11-Aug-09 4:04 
Questionhow to get data from the tags of a TIFF image Pin
gilvani11-Aug-09 3:05
gilvani11-Aug-09 3:05 
AnswerRe: how to get data from the tags of a TIFF image Pin
Luc Pattyn11-Aug-09 3:21
sitebuilderLuc Pattyn11-Aug-09 3:21 
QuestionHow to apply RowFilter for a String Date Pin
Sreedhar Kadiyala11-Aug-09 3:02
Sreedhar Kadiyala11-Aug-09 3:02 
AnswerRe: How to apply RowFilter for a String Date Pin
dptalt11-Aug-09 3:49
dptalt11-Aug-09 3:49 
AnswerRe: How to apply RowFilter for a String Date Pin
Anjups7-Sep-09 20:40
Anjups7-Sep-09 20:40 
QuestionDateTime.TryParseExact() problem? Pin
Henk Meijerink11-Aug-09 2:46
Henk Meijerink11-Aug-09 2:46 
AnswerRe: DateTime.TryParseExact() problem? Pin
stancrm11-Aug-09 2:57
stancrm11-Aug-09 2:57 
GeneralRe: DateTime.TryParseExact() problem? Pin
Henk Meijerink11-Aug-09 3:45
Henk Meijerink11-Aug-09 3:45 
QuestionUpdated:Filter for DataGridView [modified] Pin
janadhana11-Aug-09 2:14
janadhana11-Aug-09 2:14 
AnswerRe: Updated:Filter for DataGridView Pin
Sreedhar Kadiyala11-Aug-09 2:49
Sreedhar Kadiyala11-Aug-09 2:49 
GeneralRe: Updated:Filter for DataGridView Pin
janadhana11-Aug-09 19:36
janadhana11-Aug-09 19:36 
AnswerRe: Updated:Filter for DataGridView Pin
dan!sh 11-Aug-09 2:58
professional dan!sh 11-Aug-09 2:58 
If this is a bound DataGridView, you are not allowed to add rows. Hence you will need to extend the DataGridView if you need a filter like Quality center.

A quick and dirty (and may be "not recommended") way is:
1. Provide padding the headercell.
2. Add a textbox to the DataGridView at the location right above the first row.(You will need to play with the location of the textbox)
3. Handle its TextChanged event and set the RowFilter property of the datatable you have.

A better solution IMO will be to have a button and display a modal window where in user can apply filter.

It's not necessary to be so stupid, either, but people manage it. - Christian Graus, 2009 AD

GeneralRe: Updated:Filter for DataGridView Pin
janadhana11-Aug-09 19:37
janadhana11-Aug-09 19:37 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.