laky
laky

Reputation: 1

Adding text to Datagrid

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

Answers (1)

mdm
mdm

Reputation: 12630

DataGrid1.Columns(<column index>) = "Hello, world!"

Upvotes: 1

Related Questions