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

C#

 
Questionwindow services in VS2008 [modified] Pin
Aisha sharma21-Aug-11 21:12
Aisha sharma21-Aug-11 21:12 
AnswerRe: window services in VS2008 Pin
Richard MacCutchan21-Aug-11 21:38
mveRichard MacCutchan21-Aug-11 21:38 
AnswerRe: window services in VS2008 Pin
Paul E Davies21-Aug-11 22:07
Paul E Davies21-Aug-11 22:07 
GeneralRe: window services in VS2008 Pin
Aisha sharma22-Aug-11 0:29
Aisha sharma22-Aug-11 0:29 
GeneralRe: window services in VS2008 [modified] Pin
Paul E Davies22-Aug-11 2:56
Paul E Davies22-Aug-11 2:56 
QuestionXML to Excel parsing Pin
yoni.kess21-Aug-11 4:15
yoni.kess21-Aug-11 4:15 
AnswerRe: XML to Excel parsing Pin
Not Active21-Aug-11 6:47
mentorNot Active21-Aug-11 6:47 
GeneralRe: XML to Excel parsing [modified] Pin
yoni.kess23-Aug-11 9:31
yoni.kess23-Aug-11 9:31 
Hi,
this is the code i currently have but it parse the xml but is missing some nodes and is not exactly what i need.
i need that it will get the name of the alert and all the gps poings while with this code it takes most of the data except the gps points

C#
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;
using System.Xml;

namespace WindowsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            XmlDataDocument xmlDatadoc = new XmlDataDocument();
            xmlDatadoc.DataSet.ReadXml(@"C:\Desktop\Book Application\zone.xml");
            DataSet ds = new DataSet("book DataSet");
            ds = xmlDatadoc.DataSet;
            dataGridView1.DataSource = ds.DefaultViewManager;
            dataGridView1.DataMember = "alert_area_object";
        }
    }
}

thanks

modified on Thursday, August 25, 2011 3:04 AM

GeneralRe: XML to Excel parsing Pin
Not Active23-Aug-11 9:53
mentorNot Active23-Aug-11 9:53 
GeneralRe: XML to Excel parsing Pin
yoni.kess24-Aug-11 21:06
yoni.kess24-Aug-11 21:06 
QuestionPass object from an app to another Pin
mehrdadc4820-Aug-11 23:50
mehrdadc4820-Aug-11 23:50 
AnswerRe: Pass object from an app to another Pin
#realJSOP21-Aug-11 2:56
professional#realJSOP21-Aug-11 2:56 
AnswerRe: Pass object from an app to another [modified] Pin
Manfred Rudolf Bihy21-Aug-11 3:32
professionalManfred Rudolf Bihy21-Aug-11 3:32 
GeneralRe: Pass object from an app to another Pin
Keith Barrow21-Aug-11 9:23
professionalKeith Barrow21-Aug-11 9:23 
GeneralRe: Pass object from an app to another Pin
Manfred Rudolf Bihy21-Aug-11 20:50
professionalManfred Rudolf Bihy21-Aug-11 20:50 
SuggestionTIP: Autosetting properties in C# using DefaultValue attributes Pin
Itai Basel20-Aug-11 14:53
Itai Basel20-Aug-11 14:53 
GeneralRe: TIP: Autosetting properties in C# using DefaultValue attributes Pin
Mycroft Holmes20-Aug-11 16:48
professionalMycroft Holmes20-Aug-11 16:48 
GeneralRe: TIP: Autosetting properties in C# using DefaultValue attributes Pin
Itai Basel20-Aug-11 19:58
Itai Basel20-Aug-11 19:58 
GeneralRe: TIP: Autosetting properties in C# using DefaultValue attributes Pin
Itai Basel20-Aug-11 20:09
Itai Basel20-Aug-11 20:09 
GeneralRe: TIP: Autosetting properties in C# using DefaultValue attributes Pin
Mycroft Holmes20-Aug-11 22:35
professionalMycroft Holmes20-Aug-11 22:35 
GeneralRe: TIP: Autosetting properties in C# using DefaultValue attributes Pin
PIEBALDconsult20-Aug-11 19:57
mvePIEBALDconsult20-Aug-11 19:57 
GeneralRe: TIP: Autosetting properties in C# using DefaultValue attributes Pin
thatraja20-Aug-11 21:40
professionalthatraja20-Aug-11 21:40 
QuestionShowing Picture in Crystal Reports from Table Pin
M Riaz Bashir20-Aug-11 11:26
M Riaz Bashir20-Aug-11 11:26 
AnswerRe: Showing Picture in Crystal Reports from Table Pin
thatraja20-Aug-11 21:35
professionalthatraja20-Aug-11 21:35 
QuestionHow to decode Certificate Signing Request (CSR) in XP [modified] Pin
Petri Luoto20-Aug-11 9:03
Petri Luoto20-Aug-11 9:03 

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.