Search Result

Collapse
2 results in 0.0039 seconds.
Keywords
Members
Tags
c# dataset
  •  

  • Martynas marcus
    started a topic RowNotInTableException when accessing

    RowNotInTableException when accessing

    Hi, I faced a problem when trying to access row again.

    I have TreeView component and in Tag property I put row from datatable:

    Code:
    foreach (DataRow row in catalogDataSet.category)
                {
                    if (row["parent"].ToString().Equals("0"))
                    {
                        TreeNode node = new TreeNode();
                        node.Text = row["name"].ToString();
    ...
    See more | Go to post

  • aatif
    started a topic Loading an XML into DataSet

    Loading an XML into DataSet

    Hello, I have to load an xml document into a DataSet. Anybody has some code snippet?

    Suppose the xml doc is standalone and has a root and some variable number of child nodes. Child nodes have attributes like 'id', 'type' etc ...
    I want to to use dataset to get the info of nodes, like type of node having id = ...
    See more | Go to post
Working...