Click here to Skip to main content
15,897,187 members
Home / Discussions / C#
   

C#

 
GeneralRe: How to get some special Windows colors? Pin
NPowDev19-Jul-06 12:06
NPowDev19-Jul-06 12:06 
GeneralRe: How to get some special Windows colors? Pin
Judah Gabriel Himango19-Jul-06 17:14
sponsorJudah Gabriel Himango19-Jul-06 17:14 
GeneralRe: How to get some special Windows colors? [modified] Pin
NPowDev20-Jul-06 1:45
NPowDev20-Jul-06 1:45 
GeneralRe: How to get some special Windows colors? Pin
Judah Gabriel Himango20-Jul-06 4:36
sponsorJudah Gabriel Himango20-Jul-06 4:36 
Questionerror Pin
TAREQ F ABUZUHRI19-Jul-06 7:04
TAREQ F ABUZUHRI19-Jul-06 7:04 
AnswerRe: error Pin
Judah Gabriel Himango19-Jul-06 7:12
sponsorJudah Gabriel Himango19-Jul-06 7:12 
QuestionAdd attributes to XML doc [modified] Pin
VK-Cadec19-Jul-06 6:47
VK-Cadec19-Jul-06 6:47 
AnswerRe: Add attributes to XML doc Pin
stancrm19-Jul-06 7:21
stancrm19-Jul-06 7:21 
XmlDocument xmlDoc = new XmlDocument();
xmlDoc.LoadXml(xml);

XmlNode productsNode = xmlDoc.ChildNodes[0].ChildNodes[0];

XmlElement productElem = xmlDoc.CreateElement("PRODUCT");

XmlAttribute invAttr = xmlDoc.CreateAttribute("INVOICE");
invAttr.Value = "2";

XmlAttribute prodidAttr = xmlDoc.CreateAttribute("PRODID");
prodidAttr.Value = "2";   

XmlAttribute qtyAttr = xmlDoc.CreateAttribute("QTY");
qtyAttr.Value = "0";

productElem.Attributes.Append(invAttr);
productElem.Attributes.Append(prodidAttr);
productElem.Attributes.Append(qtyAttr);

productsNode.AppendChild(productElem);

GeneralRe: Add attributes to XML doc Pin
VK-Cadec19-Jul-06 7:26
VK-Cadec19-Jul-06 7:26 
GeneralRe: Add attributes to XML doc Pin
Rob Graham19-Jul-06 10:45
Rob Graham19-Jul-06 10:45 
QuestionApplication deep logging/traceing Pin
nemopeti19-Jul-06 6:24
nemopeti19-Jul-06 6:24 
AnswerRe: Application deep logging/traceing Pin
Judah Gabriel Himango19-Jul-06 7:16
sponsorJudah Gabriel Himango19-Jul-06 7:16 
GeneralRe: Application deep logging/traceing [modified] Pin
nemopeti19-Jul-06 10:57
nemopeti19-Jul-06 10:57 
GeneralRe: Application deep logging/traceing Pin
Alexander Wiseman19-Jul-06 11:36
Alexander Wiseman19-Jul-06 11:36 
GeneralRe: Application deep logging/traceing [modified] Pin
nemopeti19-Jul-06 11:54
nemopeti19-Jul-06 11:54 
QuestionStatus bar's progress bar Pin
Elvis_Pretzelator19-Jul-06 5:27
Elvis_Pretzelator19-Jul-06 5:27 
AnswerRe: Status bar's progress bar Pin
Not Active19-Jul-06 5:37
mentorNot Active19-Jul-06 5:37 
AnswerRe: Status bar's progress bar Pin
Stefan Troschuetz19-Jul-06 6:33
Stefan Troschuetz19-Jul-06 6:33 
QuestionHuge file [modified] Pin
abalfazl19-Jul-06 5:24
abalfazl19-Jul-06 5:24 
AnswerRe: Huge file Pin
Not Active19-Jul-06 5:32
mentorNot Active19-Jul-06 5:32 
AnswerRe: Huge file Pin
Super Lloyd19-Jul-06 5:33
Super Lloyd19-Jul-06 5:33 
GeneralRe: Huge file Pin
abalfazl19-Jul-06 5:50
abalfazl19-Jul-06 5:50 
GeneralThe solution Pin
Ennis Ray Lynch, Jr.19-Jul-06 7:00
Ennis Ray Lynch, Jr.19-Jul-06 7:00 
GeneralRe: The solution Pin
Dan Neely19-Jul-06 7:27
Dan Neely19-Jul-06 7:27 
Generalwell duh Pin
Ennis Ray Lynch, Jr.19-Jul-06 8:36
Ennis Ray Lynch, Jr.19-Jul-06 8:36 

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.