Click here to Skip to main content
15,887,135 members
Home / Discussions / C#
   

C#

 
AnswerRe: decimal value being truncated when exporting data to excel from asp.net c# Pin
paas13-Jul-09 8:33
paas13-Jul-09 8:33 
GeneralRe: decimal value being truncated when exporting data to excel from asp.net c# Pin
vijju0415-Jul-09 8:28
vijju0415-Jul-09 8:28 
AnswerRe: decimal value being truncated when exporting data to excel from asp.net c# Pin
PIEBALDconsult13-Jul-09 8:41
mvePIEBALDconsult13-Jul-09 8:41 
GeneralRe: decimal value being truncated when exporting data to excel from asp.net c# Pin
vijju0415-Jul-09 8:31
vijju0415-Jul-09 8:31 
QuestionSearching in XML Pin
zeeShan anSari13-Jul-09 7:56
zeeShan anSari13-Jul-09 7:56 
AnswerRe: Searching in XML Pin
PIEBALDconsult13-Jul-09 8:18
mvePIEBALDconsult13-Jul-09 8:18 
AnswerRe: Searching in XML Pin
Not Active13-Jul-09 8:19
mentorNot Active13-Jul-09 8:19 
AnswerRe: Searching in XML Pin
0x3c013-Jul-09 8:43
0x3c013-Jul-09 8:43 
As has been said before, XML is case-sensitive. An icky solution would be to pass it the lower-case string representation of your XML document. You could also iterate through the descendants in xmlDoc, create a new XNode based on each descendant (except with the lower-case name) add them to a new XDocument and work with that for your query.

A side note: look at what you do with your query, particularly the Where() method. You could actually merge that into the query itself, making the code look more aesthetically pleasing. AFAIK, you can do most of what you would normally do with a List, with an IEnumerable

Between the idea
And the reality
Between the motion
And the act
Falls the Shadow

GeneralRe: Searching in XML Pin
Not Active13-Jul-09 10:19
mentorNot Active13-Jul-09 10:19 
GeneralRe: Searching in XML Pin
0x3c013-Jul-09 19:54
0x3c013-Jul-09 19:54 
QuestionUnmanaged DLL: C# variable for C++ char** Pin
belier113-Jul-09 7:06
belier113-Jul-09 7:06 
AnswerRe: Unmanaged DLL: C# variable for C++ char** Pin
Luc Pattyn13-Jul-09 7:28
sitebuilderLuc Pattyn13-Jul-09 7:28 
GeneralRe: Unmanaged DLL: C# variable for C++ char** Pin
belier113-Jul-09 9:47
belier113-Jul-09 9:47 
GeneralRe: Unmanaged DLL: C# variable for C++ char** Pin
Luc Pattyn13-Jul-09 10:04
sitebuilderLuc Pattyn13-Jul-09 10:04 
GeneralRe: Unmanaged DLL: C# variable for C++ char** Pin
belier113-Jul-09 11:07
belier113-Jul-09 11:07 
GeneralRe: Unmanaged DLL: C# variable for C++ char** Pin
Luc Pattyn13-Jul-09 11:12
sitebuilderLuc Pattyn13-Jul-09 11:12 
GeneralRe: Unmanaged DLL: C# variable for C++ char** Pin
belier114-Jul-09 1:10
belier114-Jul-09 1:10 
QuestionGet local groups and users from server remotely with console app Pin
briancollins3213-Jul-09 6:50
briancollins3213-Jul-09 6:50 
QuestionHow do you count the number of decimals in a decimal datatype Pin
Nathan Revka13-Jul-09 6:26
Nathan Revka13-Jul-09 6:26 
AnswerRe: How do you count the number of decimals in a decimal datatype Pin
Luc Pattyn13-Jul-09 6:34
sitebuilderLuc Pattyn13-Jul-09 6:34 
AnswerRe: How do you count the number of decimals in a decimal datatype Pin
musefan13-Jul-09 6:51
musefan13-Jul-09 6:51 
AnswerRe: How do you count the number of decimals in a decimal datatype Pin
TheGreatAndPowerfulOz13-Jul-09 6:51
TheGreatAndPowerfulOz13-Jul-09 6:51 
QuestionDccg Pin
peishen8813-Jul-09 5:47
peishen8813-Jul-09 5:47 
AnswerRe: Dccg Pin
Luc Pattyn13-Jul-09 5:54
sitebuilderLuc Pattyn13-Jul-09 5:54 
GeneralRe: Dccg Pin
DoctorMick13-Jul-09 5:58
DoctorMick13-Jul-09 5:58 

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.