Best way to display 4 rows / 4 columns

M

matthewtec

This may turn out to be an obvious answer of "DataGrid", but I haven't used
that control much and so I wanted to get some thoughts.

If I want to display essentially a grid that could be a spread-sheet type
display, of 4 rows by 4 columns, or anything along those lines [integers],
I'm wondering what would be the best control to display them in.

.... essentially, I'm looking for something that would be more efficient than
putting sixteen individual Textboxes on the screen.

If it is indeed the DataGrid, I'll see about using that, but I didn't want
to start down a route without knowing whether that's a good idea or not.
[and I'm not sure if there's other controls out there that I should look
at].

Thanks for any thoughts anyone can provide.
matt
 
C

Chris

matthewtec said:
This may turn out to be an obvious answer of "DataGrid", but I haven't used
that control much and so I wanted to get some thoughts.

If I want to display essentially a grid that could be a spread-sheet type
display, of 4 rows by 4 columns, or anything along those lines [integers],
I'm wondering what would be the best control to display them in.

... essentially, I'm looking for something that would be more efficient than
putting sixteen individual Textboxes on the screen.

If it is indeed the DataGrid, I'll see about using that, but I didn't want
to start down a route without knowing whether that's a good idea or not.
[and I'm not sure if there's other controls out there that I should look
at].

Thanks for any thoughts anyone can provide.
matt

If you are using 2.0 framework the datagridview is probably a better bet.
 
K

Ken Tucker [MVP]

Hi,

If you are using vs.net 2003 the listview control is another option
if you are binding to a datasource.

Ken
 

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

Top