Click here to Skip to main content
15,914,360 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
Questiondata not binding Pin
sr15928-Jul-10 0:51
sr15928-Jul-10 0:51 
QuestionProblem in Crystal report Pin
sr15928-Jul-10 0:48
sr15928-Jul-10 0:48 
QuestionHandlers removed automatically? Pin
divyesh143228-Jul-10 0:00
divyesh143228-Jul-10 0:00 
AnswerRe: Handlers removed automatically? Pin
Luc Pattyn28-Jul-10 1:13
sitebuilderLuc Pattyn28-Jul-10 1:13 
QuestionSetup project help Pin
TSWatson26-Jul-10 3:59
TSWatson26-Jul-10 3:59 
AnswerRe: Setup project help Pin
Peace ON27-Jul-10 2:27
Peace ON27-Jul-10 2:27 
QuestionCodedom Question Pin
Gavin_L25-Jul-10 18:57
Gavin_L25-Jul-10 18:57 
AnswerRe: Codedom Question Pin
Pete O'Hanlon26-Jul-10 10:05
mvePete O'Hanlon26-Jul-10 10:05 
A foreach is actually a convenience wrapper around a loop with an enumerator. That's what you need to enumerate over. Try to create a CodeDOM for this instead:
IEnumerator e = item.GetEnumerator();
while(e.MoveNext())
{
  myList.Add(ConvertToObject(item));
}

"WPF has many lovers. It's a veritable porn star!" - Josh Smith

As Braveheart once said, "You can take our freedom but you'll never take our Hobnobs!" - Martin Hughes.


My blog | My articles | MoXAML PowerToys | Onyx



QuestionInstall SQL Server 2008 R2 Express with my installation Pin
bonzaiholding24-Jul-10 22:28
bonzaiholding24-Jul-10 22:28 
Answercross-post Pin
Luc Pattyn25-Jul-10 2:19
sitebuilderLuc Pattyn25-Jul-10 2:19 
QuestionHow to convert a EMF file to Bitmap Pin
hawkgao012924-Jul-10 22:06
hawkgao012924-Jul-10 22:06 
AnswerRe: How to convert a EMF file to Bitmap Pin
Peace ON27-Jul-10 0:55
Peace ON27-Jul-10 0:55 
GeneralRe: How to convert a EMF file to Bitmap Pin
hawkgao012927-Jul-10 2:17
hawkgao012927-Jul-10 2:17 
GeneralRe: How to convert a EMF file to Bitmap Pin
Peace ON27-Jul-10 2:29
Peace ON27-Jul-10 2:29 
NewsAnne Kathrine Petteroe speak on Enterprise Rich Internet Applications with the Adobe Flash Platform Pin
shankarjain201023-Jul-10 0:50
shankarjain201023-Jul-10 0:50 
GeneralRe: Anne Kathrine Petteroe speak on Enterprise Rich Internet Applications with the Adobe Flash Platform Pin
Pete O'Hanlon23-Jul-10 1:52
mvePete O'Hanlon23-Jul-10 1:52 
GeneralRe: Anne Kathrine Petteroe speak on Enterprise Rich Internet Applications with the Adobe Flash Platform Pin
Peace ON23-Jul-10 19:15
Peace ON23-Jul-10 19:15 
QuestionHandling exception in a better way [modified] Pin
souvikd23-Jul-10 0:39
souvikd23-Jul-10 0:39 
AnswerRe: Handling exception in a better way Pin
R. Giskard Reventlov23-Jul-10 2:30
R. Giskard Reventlov23-Jul-10 2:30 
AnswerRe: Handling exception in a better way Pin
Luc Pattyn23-Jul-10 2:56
sitebuilderLuc Pattyn23-Jul-10 2:56 
QuestionMessage Removed Pin
21-Jul-10 21:21
sr15921-Jul-10 21:21 
AnswerRe: problem in creating organisation chart from Mysql database using C#, ASP.net [Repost] Pin
Richard MacCutchan21-Jul-10 21:34
mveRichard MacCutchan21-Jul-10 21:34 
QuestionUnable to use array for control Pin
souvikd21-Jul-10 10:07
souvikd21-Jul-10 10:07 
AnswerRe: Unable to use array for control Pin
Abhinav S21-Jul-10 18:41
Abhinav S21-Jul-10 18:41 
AnswerRe: Unable to use array for control Pin
Roger Wright21-Jul-10 19:45
professionalRoger Wright21-Jul-10 19:45 

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.