<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>'How to add datarow in existing datatable?' Thread RSS Feed</title>
    <link>http://www.programmersheaven.com/</link>
    <description>Contains the latest posts from the thread 'How to add datarow in existing datatable?' posted on the 'VB.NET' forum at Programmer's Heaven.</description>
    <language>en</language>
    <copyright>Copyright 2013 Programmers Heaven</copyright>
    <pubDate>Sun, 26 May 2013 02:28:58 -0700</pubDate>
    <lastBuildDate>Sun, 26 May 2013 02:28:58 -0700</lastBuildDate>
    <generator>Argotic Syndication Framework 2007.3.0.1, http://www.codeplex.com/Argotic</generator>
    <docs>http://www.rssboard.org/rss-specification</docs>
    <ttl>360</ttl>
    <image>
      <url>http://www.programmersheaven.com/images/ph.gif</url>
      <title>Programmers Heaven</title>
      <link>http://www.programmersheaven.com/</link>
      <width>88</width>
      <height>31</height>
    </image>
    <item>
      <title>How to add datarow in existing datatable?</title>
      <link>http://www.programmersheaven.com/mb/VBNET/428706/428706/how-to-add-datarow-in-existing-datatable/</link>
      <description>I have a datatable with several columns.During run time i added a column ,now i want to add rows to it.Can any one suggest how to add rows to that particular datacolumn&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/VBNET/428706/428706/how-to-add-datarow-in-existing-datatable/</guid>
      <pubDate>Wed, 06 Jun 2012 03:45:36 -0700</pubDate>
      <category>VB.NET</category>
    </item>
    <item>
      <title>Re: How to add datarow in existing datatable?</title>
      <link>http://www.programmersheaven.com/mb/VBNET/428706/428745/re-how-to-add-datarow-in-existing-datatable/#428745</link>
      <description>&lt;pre class="sourcecode"&gt;'test datatable
        Dim dt As New DataTable
        dt.Columns.Add("col1")
        dt.Columns.Add("col2")

        'add new row
        Dim dr As DataRow
        dr = dt.NewRow()
        dr.Item(0) = "row1col1"
        dr.Item(1) = "row1col2"
        dt.Rows.Add(dr)

        'add dynamic column
        dt.Columns.Add("col3")

        'add value to column
        dr.Item(2) = "row1col3"
&lt;/pre&gt;&lt;br /&gt;
__________________________________________________
______&lt;br /&gt;
www.eazytalkinc.com</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/VBNET/428706/428745/re-how-to-add-datarow-in-existing-datatable/#428745</guid>
      <pubDate>Sun, 10 Jun 2012 20:21:35 -0700</pubDate>
      <category>VB.NET</category>
    </item>
    <item>
      <title>Re: How to add datarow in existing datatable?</title>
      <link>http://www.programmersheaven.com/mb/VBNET/428706/428746/re-how-to-add-datarow-in-existing-datatable/#428746</link>
      <description>.....&lt;br /&gt;
__________________________________________________
______&lt;br /&gt;
www.eazytalkinc.com</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/VBNET/428706/428746/re-how-to-add-datarow-in-existing-datatable/#428746</guid>
      <pubDate>Sun, 10 Jun 2012 20:25:29 -0700</pubDate>
      <category>VB.NET</category>
    </item>
  </channel>
</rss>