gridlike table control?

glow360

Member
Joined
Jun 5, 2006
Messages
6
Programming Experience
Beginner
Hi,

What do you call this gridlike table (I have circled it in red in the pic below)? I'd like to add it to a form.

gridtable.JPG


Thanks guys!
 
Hi inhua,

The name of the table is "Error List". It shows the errors,warnings and messages. I'm trying to add this sort of 'table' to a form but havent been able to find it on the toolbox cause i'm still not very familiar with VB.

Thanks!
 
Yes, it's a DataGridView or a ListView control.
 
Thanks guys

Thanks for the answers...I assume this Datagrid or Listview is similar to the 1 below? I haven't tried yet but Im guessing there's a property I can set so that the 'gridlines' don't actually show. I hope this is the proper place to post this sort of newbie questions...

table.JPG
 
DataGridView has the .CellBorderStyle property that can be set to None.
Listview has .GridLines property that work with False value if in Detail mode.
 
JohnH,

What is difference between DataGrid and DataGridView? And where should we use each?

Many thank's,
Inhua
 
Back
Top