Simple Datagrid question...

G

Guest

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
 
C

Chris, Master of All Things Insignificant

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.DataSource = DataSet1.Tables(0)

Hope it helps
Chris
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top