Is it possible to insert spanned columns into datagridview column?

vb.net, winforms

Solution

Descripted functionality is not supported by standard DataGridView control. You could solve it by choosing from following opinions:

create your own user control

you can modify standard DataGridView control, for example like in this link: How can merge a particular column header in DataGridView C#?

use some extension library like DevExpress. Similar walkthrough like described here: http://www.devexpress.com/Support/Center/Example/Details/E2472

Problem

I have a question, but I can't find the answer, can someone help me? I need to create in a datagridview one column which spans multiple columns, this must look like following example: In the grid I need to have detail about every day and every hour, what a person did in each hour. Is it possible to do this in a datagridview? Thank you very much

Original source

Related problems