Index was out of range: DataGridView
Hi folks,
I am trying to insert the data into DataGridView and I am having this exception
"Index was out of range. Must be non-negative and less than the size of the collection."!
The code is
dgv_SearchResult.Rows[0].Cells[0].Value = (Object)myProfile.UserName.ToString();
dgv_SearchResult.Rows[0].Cells[1].Value = (Object)myProfile.Description.ToString();
dgv_SearchResult.Rows[0].Cells[2].Value = (Object)myProfile.Statistics.SubscriberCount.ToString();
dgv_SearchResult.Rows[0].Cells[3].Value = (Object)myProfile.Statistics.ViewCount.ToString();
Any idea why the exception is occuring?