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 col开发者_开发知识库umn "hi!"
How i can do this?
DataGrid1.Columns(<column index>) = "Hello, world!"
精彩评论