A aj_daria Member Joined Jan 23, 2007 Messages 6 Programming Experience Beginner Feb 9, 2007 #1 how i want to clear the datagrid. if i want to clear a textbox, just simply add this code : TextBox1.text = "". wat about datagrid?
how i want to clear the datagrid. if i want to clear a textbox, just simply add this code : TextBox1.text = "". wat about datagrid?
vis781 Well-known member Joined Aug 30, 2005 Messages 2,016 Location Cambridge, UK Programming Experience 5-10 Feb 9, 2007 #2 I take is this is a bound Datagrid? if so you'll have to remove the datasource that it get it's information from. VB.NET: Datagrid.Datasource = nothing Upvote 0 Downvote
I take is this is a bound Datagrid? if so you'll have to remove the datasource that it get it's information from. VB.NET: Datagrid.Datasource = nothing