Hello,

I want to make something like an excel table that I will populate at runtime.
I want to be able to select each row (not cell). I will have a form where I will write my data that has to update in the containing row.

So I don't need to type inside the list or inside the cells. I just want to select the row and then I will have a new form where I will edit my data.

I tried using tableLayoutPanel but there is no option to select a single row. Then I was thinking to create labels with Autosize:False and with Border: Single.

Then if I stick all the label to one another I will have like a table layout. But then wouldn't it get too busy with so many labels?

Has anyone done something like this? What is the optimum solution?

I also thought of DataGridView but I don't really like how it looks

Thx.