Click here to Skip to main content
15,913,854 members
Home / Discussions / C#
   

C#

 
AnswerRe: how can i send file name to desktop application Pin
Michael Bookatz28-Jan-09 0:17
Michael Bookatz28-Jan-09 0:17 
GeneralRe: how can i send file name to desktop application Pin
ahmedhassan9628-Jan-09 0:42
ahmedhassan9628-Jan-09 0:42 
GeneralRe: how can i send file name to desktop application Pin
Michael Bookatz28-Jan-09 0:52
Michael Bookatz28-Jan-09 0:52 
QuestionLoading vjslib dynamically Pin
Gareth H27-Jan-09 22:49
Gareth H27-Jan-09 22:49 
AnswerRe: Loading vjslib dynamically Pin
Karmendra Suthar27-Jan-09 23:34
Karmendra Suthar27-Jan-09 23:34 
GeneralRe: Loading vjslib dynamically Pin
Gareth H28-Jan-09 0:46
Gareth H28-Jan-09 0:46 
Question[Message Deleted] Pin
arkiboys27-Jan-09 22:29
arkiboys27-Jan-09 22:29 
AnswerRe: read xml contents Pin
N a v a n e e t h27-Jan-09 23:15
N a v a n e e t h27-Jan-09 23:15 
Since DOC node doesn't have child, you only need one loop which iterates the child nodes of BIBLE. See the following code
for (int i = 0; i < bNode.ChildNodes.Count; i++)
{
    XmlNode node = bNode.ChildNodes[i];
    string strElement = node.Name;
    if (strElement.ToLower().Trim() == "doc")
    {
        string strDocClientID = node.Attributes["CLIENT_ID"].Value;
        string strDocMatterID = node.Attributes["MATTER_ID"].Value;
        string strDocNumber = node.Attributes["DOCNUMBER"].Value;
        string strDocName = node.Attributes["DOCNAME"].Value;
    }
}
This can be done in a better way if you use XPath.

Smile | :)


GeneralRe: read xml contents Pin
arkiboys27-Jan-09 23:46
arkiboys27-Jan-09 23:46 
AnswerRe: read xml contents Pin
Karmendra Suthar27-Jan-09 23:23
Karmendra Suthar27-Jan-09 23:23 
QuestionC# .NET Control Transparency Problem Pin
Hristiyan27-Jan-09 21:43
Hristiyan27-Jan-09 21:43 
AnswerRe: C# .NET Control Transparency Problem Pin
Phil J Pearson28-Jan-09 3:59
Phil J Pearson28-Jan-09 3:59 
Questionget subreport of .rdl report Pin
bhaumikdv27-Jan-09 21:41
bhaumikdv27-Jan-09 21:41 
QuestionOracle/MySQL - byte[] and varbinary? Pin
devvvy27-Jan-09 21:39
devvvy27-Jan-09 21:39 
AnswerRe: Oracle/MySQL - byte[] and varbinary? Pin
Wendelius27-Jan-09 22:40
mentorWendelius27-Jan-09 22:40 
QuestionProgrammatic saving of an existing excel file Pin
Nikhil Wason27-Jan-09 21:06
Nikhil Wason27-Jan-09 21:06 
AnswerRe: Programmatic saving of an existing excel file Pin
MadArtSoft27-Jan-09 23:53
MadArtSoft27-Jan-09 23:53 
GeneralRe: Programmatic saving of an existing excel file Pin
Nikhil Wason28-Jan-09 0:14
Nikhil Wason28-Jan-09 0:14 
QuestionI want to get row index of datagridview Pin
M Riaz Bashir27-Jan-09 19:50
M Riaz Bashir27-Jan-09 19:50 
AnswerRe: I want to get row index of datagridview Pin
Wendelius27-Jan-09 20:38
mentorWendelius27-Jan-09 20:38 
AnswerRe: I want to get row index of datagridview Pin
MadArtSoft27-Jan-09 23:55
MadArtSoft27-Jan-09 23:55 
AnswerRe: I want to get row index of datagridview Pin
Wael Al Wirr29-Jan-09 2:09
Wael Al Wirr29-Jan-09 2:09 
QuestionHow can i Re-Draw UI control ? Pin
Yanshof27-Jan-09 18:52
Yanshof27-Jan-09 18:52 
AnswerRe: How can i Re-Draw UI control ? Pin
N a v a n e e t h27-Jan-09 19:00
N a v a n e e t h27-Jan-09 19:00 
AnswerRe: How can i Re-Draw UI control ? Pin
DaveyM6927-Jan-09 21:57
professionalDaveyM6927-Jan-09 21:57 

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.