Click here to Skip to main content
15,905,558 members
Home / Discussions / C#
   

C#

 
GeneralRe: Need football game comments Pin
leone23-Nov-12 9:23
leone23-Nov-12 9:23 
GeneralRe: Need football game comments Pin
BobJanova23-Nov-12 14:31
BobJanova23-Nov-12 14:31 
QuestionEmpty record returned with this query when querying Oracle database with .NET but gave rows in SQL+ Pin
awedaonline21-Nov-12 23:35
awedaonline21-Nov-12 23:35 
AnswerRe: Empty record returned with this query when querying Oracle database with .NET but gave rows in SQL+ Pin
Simon_Whale22-Nov-12 5:12
Simon_Whale22-Nov-12 5:12 
GeneralRe: Empty record returned with this query when querying Oracle database with .NET but gave rows in SQL+ Pin
awedaonline22-Nov-12 5:38
awedaonline22-Nov-12 5:38 
GeneralRe: Empty record returned with this query when querying Oracle database with .NET but gave rows in SQL+ Pin
Simon_Whale22-Nov-12 5:49
Simon_Whale22-Nov-12 5:49 
GeneralRe: Empty record returned with this query when querying Oracle database with .NET but gave rows in SQL+ Pin
Ray Yagubyan22-Nov-12 13:30
Ray Yagubyan22-Nov-12 13:30 
GeneralRe: Empty record returned with this query when querying Oracle database with .NET but gave rows in SQL+ Pin
awedaonline22-Nov-12 21:12
awedaonline22-Nov-12 21:12 
AnswerRe: Empty record returned with this query when querying Oracle database with .NET but gave rows in SQL+ Pin
jschell23-Nov-12 7:18
jschell23-Nov-12 7:18 
AnswerRe: Empty record returned with this query when querying Oracle database with .NET but gave rows in SQL+ Pin
PIEBALDconsult23-Nov-12 9:01
mvePIEBALDconsult23-Nov-12 9:01 
Questionvs.net 2010 exe on demo machine Pin
KrishnaRayalu_Talisetti21-Nov-12 23:01
KrishnaRayalu_Talisetti21-Nov-12 23:01 
AnswerRe: vs.net 2010 exe on demo machine Pin
Pete O'Hanlon21-Nov-12 23:36
mvePete O'Hanlon21-Nov-12 23:36 
AnswerRe: vs.net 2010 exe on demo machine Pin
Simon_Whale21-Nov-12 23:38
Simon_Whale21-Nov-12 23:38 
GeneralRe: vs.net 2010 exe on demo machine Pin
KrishnaRayalu_Talisetti21-Nov-12 23:41
KrishnaRayalu_Talisetti21-Nov-12 23:41 
GeneralRe: vs.net 2010 exe on demo machine Pin
Simon_Whale21-Nov-12 23:46
Simon_Whale21-Nov-12 23:46 
QuestionSAP Dotnet Integration Pin
rohitnegi0921-Nov-12 21:14
rohitnegi0921-Nov-12 21:14 
AnswerRe: SAP Dotnet Integration Pin
Pete O'Hanlon21-Nov-12 22:39
mvePete O'Hanlon21-Nov-12 22:39 
AnswerRe: SAP Dotnet Integration Pin
V.21-Nov-12 23:12
professionalV.21-Nov-12 23:12 
QuestionWrite XML Dynamically according to tree structure in windows c# Pin
rummer21-Nov-12 20:19
rummer21-Nov-12 20:19 
AnswerRe: Write XML Dynamically according to tree structure in windows c# Pin
markovl21-Nov-12 20:37
markovl21-Nov-12 20:37 
Have a look at the XmlDocument class here[^].
Basically you'd create a XmlDocument object and add XmlElement [^] instances.

For example:

C#
XmlDocument document = new XmlDocument();

// Create the root Account element.
XmlElement root = document.CreateElement("Account");
// Add attributes to the element
root.SetAttribute("SomeAttribute", "42");
// Add the element to the document's tree.
document.AppendChild(root);

// Create the child elements
XmlElement child = document.CreateElement("User1");
// Add the child to the root element
root.AppendChild(child);

// Create a grandchild
XmlELement grandchild = document.CreateElement("AccountSetting");
child.AppendChild(grandchild);

//etc, etc...

//Finally you could save the document to file:
document.Save(pathToMyXmlFile);

2A

AnswerRe: Write XML Dynamically according to tree structure in windows c# Pin
PIEBALDconsult22-Nov-12 10:23
mvePIEBALDconsult22-Nov-12 10:23 
QuestionUnit Test for LDAP Search Pin
SFORavi21-Nov-12 15:10
SFORavi21-Nov-12 15:10 
QuestionAutomatically Compiler Generated Unique Constants ? Pin
C-P-User-321-Nov-12 13:01
C-P-User-321-Nov-12 13:01 
AnswerRe: Automatically Compiler Generated Unique Constants ? Pin
Eddy Vluggen21-Nov-12 13:16
professionalEddy Vluggen21-Nov-12 13:16 
GeneralRe: Automatically Compiler Generated Unique Constants ? Pin
C-P-User-321-Nov-12 13:34
C-P-User-321-Nov-12 13:34 

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.