A almaha Member Joined Aug 11, 2010 Messages 7 Programming Experience Beginner Aug 11, 2010 #1 I have question regarding how to bind array of struct to datagridview?
JohnH VB.NET Forum Moderator Staff member Joined Dec 17, 2005 Messages 15,828 Location Norway Programming Experience 10+ Aug 11, 2010 #2 dgv.DataSource = theArray ? Upvote 0 Downvote
A almaha Member Joined Aug 11, 2010 Messages 7 Programming Experience Beginner Aug 11, 2010 #3 After filling the array of struct i wrote in my conde datagridview1.DataSource = My_Array it is not working and when i run my application the grid view is empty Upvote 0 Downvote
After filling the array of struct i wrote in my conde datagridview1.DataSource = My_Array it is not working and when i run my application the grid view is empty
JohnH VB.NET Forum Moderator Staff member Joined Dec 17, 2005 Messages 15,828 Location Norway Programming Experience 10+ Aug 11, 2010 #4 Your Structure probably only have fields and no properties. Upvote 0 Downvote
A almaha Member Joined Aug 11, 2010 Messages 7 Programming Experience Beginner Aug 11, 2010 #5 thank you i add properties and its working now Upvote 0 Downvote