Click here to Skip to main content
15,914,500 members
Home / Discussions / C#
   

C#

 
GeneralRe: Adding a List to a List with AddRange Pin
Ista14-Aug-06 6:48
Ista14-Aug-06 6:48 
GeneralRe: Adding a List to a List with AddRange Pin
Judah Gabriel Himango14-Aug-06 8:30
sponsorJudah Gabriel Himango14-Aug-06 8:30 
GeneralRe: Adding a List to a List with AddRange Pin
Ista14-Aug-06 9:35
Ista14-Aug-06 9:35 
GeneralRe: Adding a List to a List with AddRange Pin
Judah Gabriel Himango15-Aug-06 4:32
sponsorJudah Gabriel Himango15-Aug-06 4:32 
GeneralRe: Adding a List to a List with AddRange [modified] Pin
Ista15-Aug-06 9:37
Ista15-Aug-06 9:37 
AnswerRe: Adding a List to a List with AddRange Pin
Andrew Rissing14-Aug-06 5:06
Andrew Rissing14-Aug-06 5:06 
GeneralRe: Adding a List to a List with AddRange [modified] Pin
Ista14-Aug-06 5:23
Ista14-Aug-06 5:23 
GeneralRe: Adding a List to a List with AddRange Pin
Andrew Rissing14-Aug-06 5:46
Andrew Rissing14-Aug-06 5:46 
I would use process of elimination to figure this problem out.

Replace the call to LoadEntries with something to the effect of:

new List<object>()

Or:

List<object> lstTemp = LoadEntries(typeof(Entry), parent.ID, parent);<br />
__entries.AddRange(lstTemp); 


And see if that changes anything. The code I supplied works for the simple case and unless you've come across a compiler error (which is possible, but not very likely) it should work for this.

If not, keep trying to eliminate pieces of the code that might be causing the problem till you find something that works.
GeneralRe: Adding a List to a List with AddRange [modified] Pin
Ista14-Aug-06 6:47
Ista14-Aug-06 6:47 
GeneralRe: Adding a List to a List with AddRange Pin
Andrew Rissing14-Aug-06 6:58
Andrew Rissing14-Aug-06 6:58 
GeneralRe: Adding a List to a List with AddRange Pin
Ista14-Aug-06 7:03
Ista14-Aug-06 7:03 
GeneralRe: Adding a List to a List with AddRange Pin
Andrew Rissing14-Aug-06 8:34
Andrew Rissing14-Aug-06 8:34 
GeneralRe: Adding a List to a List with AddRange [modified] Pin
Ista14-Aug-06 9:41
Ista14-Aug-06 9:41 
GeneralRe: Adding a List to a List with AddRange Pin
Andrew Rissing14-Aug-06 10:04
Andrew Rissing14-Aug-06 10:04 
GeneralRe: Adding a List to a List with AddRange Pin
Ista14-Aug-06 10:11
Ista14-Aug-06 10:11 
Questionhow to make a mp3 playlist and play the songs [modified] Pin
aeliminate14-Aug-06 3:58
aeliminate14-Aug-06 3:58 
AnswerRe: how to make a mp3 playlist and play the songs Pin
Judah Gabriel Himango14-Aug-06 4:59
sponsorJudah Gabriel Himango14-Aug-06 4:59 
GeneralRe: how to make a mp3 playlist and play the songs Pin
aeliminate14-Aug-06 5:32
aeliminate14-Aug-06 5:32 
GeneralRe: how to make a mp3 playlist and play the songs Pin
Judah Gabriel Himango14-Aug-06 5:42
sponsorJudah Gabriel Himango14-Aug-06 5:42 
QuestionC# compiling doubt Pin
cuser_id14-Aug-06 3:40
cuser_id14-Aug-06 3:40 
AnswerRe: C# compiling doubt Pin
Judah Gabriel Himango14-Aug-06 4:57
sponsorJudah Gabriel Himango14-Aug-06 4:57 
QuestionMultithreading, Timers and flickering ListView Pin
Tomi8714-Aug-06 3:30
Tomi8714-Aug-06 3:30 
AnswerRe: Multithreading, Timers and flickering ListView Pin
Ista14-Aug-06 3:43
Ista14-Aug-06 3:43 
GeneralRe: Multithreading, Timers and flickering ListView Pin
Tomi8714-Aug-06 8:31
Tomi8714-Aug-06 8:31 
GeneralRe: Multithreading, Timers and flickering ListView Pin
Ista14-Aug-06 9:51
Ista14-Aug-06 9:51 

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.