Hi all,
I'm not really a newbie to vb.net programming but i don't know
how to create a table( like the excel table). Which component can
I use to create a table. I tried DataGrid already, but i can't add rows
on it.
hannesvdc
Printable View
Hi all,
I'm not really a newbie to vb.net programming but i don't know
how to create a table( like the excel table). Which component can
I use to create a table. I tried DataGrid already, but i can't add rows
on it.
hannesvdc
DataGrid is the best you can do out of the box. Anything more advanced you have to write your own or use a third party control. DataGrid can add rows, just not as some handy all-inclusive way in the user interface of the control. You can always drop a button on your form that instructs the DataGrid to add a new row.
Thanks for the reply!!
Datagridview isn't really what i'm looking for, i'll write my own component!!
hannesvdc