Simple Datagrid question...

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • serge calderara

    Simple Datagrid question...

    Dear all,

    I have a simple datagrid binding to a datasource dataset object that collect
    a simple table from a database.

    When I get data from that table, my datagrid appeard with a tree node sign +
    that i need to deploy for exploring my table.

    is there a way to supress that node sign and display directly table
    information ?

    thnaks for your help
    regards
    Serge
  • Chris, Master of All Things Insignificant

    #2
    Re: Simple Datagrid question...

    if you bind a datatable to the datagrid you will get what you are looking
    for. I assume you got it by binding a dataset to the datagrid. try doing
    this:

    DataGrid1.DataS ource = DataSet1.Tables (0)

    Hope it helps
    Chris

    "serge calderara" <sergecalderara @discussions.mi crosoft.com> wrote in
    message news:60FD3B2A-B5AD-4F98-A4D0-0193E35AC368@mi crosoft.com...[color=blue]
    > Dear all,
    >
    > I have a simple datagrid binding to a datasource dataset object that
    > collect
    > a simple table from a database.
    >
    > When I get data from that table, my datagrid appeard with a tree node sign
    > +
    > that i need to deploy for exploring my table.
    >
    > is there a way to supress that node sign and display directly table
    > information ?
    >
    > thnaks for your help
    > regards
    > Serge[/color]


    Comment

    Working...