Read a datatable while stepping through code

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • =?Utf-8?B?TWlrZSBPS0M=?=

    #1

    Read a datatable while stepping through code

    VB 2003
    As I am stepping through code, I want to see a data table in a grid, so I
    can easily see the data in the data table. Currently I QuickWatch the data
    table, then I have to add ".rows(0)" after the data table name in QuickWatch
    Expression field. I then click on ItemArray, and see the first row in an
    array. If I want to see the next row, I then have to return to the expression
    field in QuickWatch, replace rows(0) with rows(1). This is time consuming.
    There are a lot of data tables in the code I'm maintaining and I want a easy
    way to view all the data in a datatable, while I'm stepping through the code.


Working...