Hi,

Is the following grid layout possible with DataGridView in VB.net? Kind of similiar to html table layout. I'm adding data cell by cell. However I'm not sure on how to get the layout for Group A & Group B Cells

Code:
-------------------------------------------------|
       | Item11      | Item12      | Item13      |
       |-----------------------------------------|
       | Item21      | Item22      | Item23      |
GroupA |-----------------------------------------|
       | Item31      | Item32      | Item33      |
       |-----------------------------------------|
       | Item41      | Item42      | Item43      |
-------------------------------------------------|
       | Item51      | Item52      | Item53      |
       |-----------------------------------------|
GroupB | Item61      | Item62      | Item63      |
       |-----------------------------------------|
       |Item71      | Item72      | Item73       |
-------------------------------------------------|
Any help appreciated ...