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

C#

 
QuestionHow to skip system files and folders? Pin
sumit70348-Mar-09 18:39
sumit70348-Mar-09 18:39 
AnswerRe: How to skip system files and folders? Pin
Christian Graus8-Mar-09 20:01
protectorChristian Graus8-Mar-09 20:01 
GeneralRe: How to skip system files and folders? Pin
sumit70348-Mar-09 20:16
sumit70348-Mar-09 20:16 
GeneralRe: How to skip system files and folders? Pin
_Maxxx_8-Mar-09 20:38
professional_Maxxx_8-Mar-09 20:38 
Questionhow to change text of a textbox in password mode Pin
vinodkrebc8-Mar-09 18:09
vinodkrebc8-Mar-09 18:09 
AnswerRe: how to change text of a textbox in password mode Pin
Christian Graus8-Mar-09 20:02
protectorChristian Graus8-Mar-09 20:02 
AnswerRe: how to change text of a textbox in password mode Pin
jaypatel5128-Mar-09 20:45
jaypatel5128-Mar-09 20:45 
GeneralRe: how to change text of a textbox in password mode Pin
vinodkrebc9-Mar-09 1:58
vinodkrebc9-Mar-09 1:58 
QuestionEditing a datagridview component - windows forms Pin
divinyl8-Mar-09 10:57
divinyl8-Mar-09 10:57 
AnswerRe: Editing a datagridview component - windows forms Pin
Mycroft Holmes8-Mar-09 12:15
professionalMycroft Holmes8-Mar-09 12:15 
AnswerRe: Editing a datagridview component - windows forms Pin
Xmen Real 8-Mar-09 15:28
professional Xmen Real 8-Mar-09 15:28 
AnswerRe: Editing a datagridview component - windows forms Pin
jaypatel5128-Mar-09 20:49
jaypatel5128-Mar-09 20:49 
QuestionReading video feed from Philips SAA7130 chip/MPEG4 using C# Pin
Stephan Johnson8-Mar-09 7:54
Stephan Johnson8-Mar-09 7:54 
QuestionShell Extension for context menu Pin
Monin D.8-Mar-09 7:34
Monin D.8-Mar-09 7:34 
QuestionReading Numeric column in excel as text . Pin
unitecsoft8-Mar-09 7:18
unitecsoft8-Mar-09 7:18 
AnswerRe: Reading Numeric column in excel as text ( Modified) . Pin
unitecsoft8-Mar-09 8:09
unitecsoft8-Mar-09 8:09 
GeneralRe: Reading Numeric column in excel as text ( Modified) . Pin
Ashfield8-Mar-09 8:48
Ashfield8-Mar-09 8:48 
QuestionStatic event preventing instance subscriber from disposing. Pin
DaveyM698-Mar-09 6:24
professionalDaveyM698-Mar-09 6:24 
AnswerRe: Static event preventing instance subscriber from disposing. Pin
harold aptroot8-Mar-09 7:12
harold aptroot8-Mar-09 7:12 
GeneralRe: Static event preventing instance subscriber from disposing. Pin
DaveyM698-Mar-09 7:59
professionalDaveyM698-Mar-09 7:59 
GeneralRe: Static event preventing instance subscriber from disposing. Pin
harold aptroot8-Mar-09 8:05
harold aptroot8-Mar-09 8:05 
GeneralRe: Static event preventing instance subscriber from disposing. Pin
DaveyM698-Mar-09 8:56
professionalDaveyM698-Mar-09 8:56 
GeneralRe: Static event preventing instance subscriber from disposing. Pin
harold aptroot8-Mar-09 9:15
harold aptroot8-Mar-09 9:15 
AnswerRe: Static event preventing instance subscriber from disposing. Pin
N a v a n e e t h8-Mar-09 16:35
N a v a n e e t h8-Mar-09 16:35 
QuestionFiltering in BindingSource of a generic List Pin
jaypatel5128-Mar-09 5:42
jaypatel5128-Mar-09 5:42 
I need to have a databinding of List<book> or anything ..

I have SQL SErver and a functions which returns List<book> from Database..

Now if I am doing like this:
BindingSource src = new BindingSource();
src.DataSource = Book.GetList(); //A Getlist function from Book class returning the list<book> object.

datagridview1.DataSource = src;

Everything works fine..
But if I need to filter the bindingsource , I know we have a filter property like this.

src.Filter = "Author = " + anything.ToString();

But this is not working...
But if I am having a DataSource of DataTable having a table of Book . .
ie. . if I write..
src.DAtaSource = Book.GetTable();

Everything goes fine .. But on List it doesnt work properly . .
Can anyone help me out ???

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.