Click here to Skip to main content
15,917,060 members
Home / Discussions / C#
   

C#

 
GeneralRe: Don't point back to a previous post Pin
Nematjon Rahmanov8-Feb-10 19:11
Nematjon Rahmanov8-Feb-10 19:11 
AnswerRe: shell extention problem on 64 bit PC Pin
Dave Kreskowiak9-Feb-10 2:30
mveDave Kreskowiak9-Feb-10 2:30 
Questioncommand.exe double quoted arguments Pin
stmweb8-Feb-10 15:27
stmweb8-Feb-10 15:27 
AnswerRe: command.exe double quoted arguments Pin
Luc Pattyn8-Feb-10 16:14
sitebuilderLuc Pattyn8-Feb-10 16:14 
GeneralRe: command.exe double quoted arguments Pin
stmweb8-Feb-10 17:11
stmweb8-Feb-10 17:11 
GeneralRe: command.exe double quoted arguments Pin
Luc Pattyn8-Feb-10 23:47
sitebuilderLuc Pattyn8-Feb-10 23:47 
Questionhow would i filter results on my bindingnavigator when using a stored procedure call with linq? Pin
tonyonlinux8-Feb-10 14:54
tonyonlinux8-Feb-10 14:54 
AnswerRe: how would i filter results on my bindingnavigator when using a stored procedure call with linq? Pin
tonyonlinux9-Feb-10 15:37
tonyonlinux9-Feb-10 15:37 
I even tried doing the following but nothing seems to help...
try
            {
                
                
                using (var db = new mombooksDataContext(Properties.Settings.Default.BooksConnectionString2))
                {
                    
                    
                                                                  
                                          
                    String[] splitstring = null;
                    string treeviewtext = treeView1.SelectedNode.Text;
                    splitstring = treeviewtext.Split(',');
                    var query = db.Books.SelectMany(o => o.BookAuthors.Where(a => a.Author.AuthorFirst == splitstring[1].ToString()));

                    bookBindingSource.DataSource = query.ToList();


                  
                    
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.ToString());
            }

do i have to format the returned data somehow in order for the datasoure to understand it ?
GeneralRe: how would i filter results on my bindingnavigator when using a stored procedure call with linq? Pin
tonyonlinux9-Feb-10 16:53
tonyonlinux9-Feb-10 16:53 
QuestionCorrect technique for implementating a modal loop Pin
Jim Crafton8-Feb-10 9:00
Jim Crafton8-Feb-10 9:00 
AnswerRe: Correct technique for implementating a modal loop [modified] Pin
Luc Pattyn8-Feb-10 9:13
sitebuilderLuc Pattyn8-Feb-10 9:13 
Questiondatagridcheckbox in a datagrid Pin
prithaa8-Feb-10 7:06
prithaa8-Feb-10 7:06 
AnswerRe: datagridcheckbox in a datagrid Pin
OriginalGriff8-Feb-10 8:27
mveOriginalGriff8-Feb-10 8:27 
GeneralRe: datagridcheckbox in a datagrid Pin
prithaa8-Feb-10 17:30
prithaa8-Feb-10 17:30 
QuestionSure this has been asked before but can not find answer (c# prototypes) Pin
Andy Braham8-Feb-10 6:16
Andy Braham8-Feb-10 6:16 
AnswerRe: Sure this has been asked before but can not find answer (c# prototypes) PinPopular
OriginalGriff8-Feb-10 6:27
mveOriginalGriff8-Feb-10 6:27 
GeneralRe: Sure this has been asked before but can not find answer (c# prototypes) Pin
Andy Braham8-Feb-10 7:21
Andy Braham8-Feb-10 7:21 
GeneralRe: Sure this has been asked before but can not find answer (c# prototypes) Pin
Dave Kreskowiak8-Feb-10 7:25
mveDave Kreskowiak8-Feb-10 7:25 
GeneralRe: Sure this has been asked before but can not find answer (c# prototypes) Pin
harold aptroot8-Feb-10 7:40
harold aptroot8-Feb-10 7:40 
GeneralRe: Sure this has been asked before but can not find answer (c# prototypes) Pin
DaveyM698-Feb-10 8:03
professionalDaveyM698-Feb-10 8:03 
AnswerRe: Sure this has been asked before but can not find answer (c# prototypes) Pin
Richard MacCutchan8-Feb-10 6:56
mveRichard MacCutchan8-Feb-10 6:56 
Questionzipping an xml file Pin
Shtel8-Feb-10 4:29
Shtel8-Feb-10 4:29 
AnswerRe: zipping an xml file Pin
musefan8-Feb-10 4:42
musefan8-Feb-10 4:42 
GeneralRe: zipping an xml file Pin
Shtel8-Feb-10 5:01
Shtel8-Feb-10 5:01 
GeneralRe: zipping an xml file Pin
musefan8-Feb-10 5:15
musefan8-Feb-10 5:15 

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.