Reputation: 1
I need to add data in datagrid by using a button but without using a database. Just add textdata in a Datagrid.
Like this
text1.text="Hi"
It will display in datagrid column "hi!"
How i can do this?
Upvotes: 0
Views: 4283
Reputation: 12630
DataGrid1.Columns(<column index>) = "Hello, world!"
Upvotes: 1