DataGrid refresh in C++

  • Thread starter Thread starter Bumbrlik
  • Start date Start date
B

Bumbrlik

I have a DataGrid bound to an ArrayList. How do I refresh
the DataGrid once I change the ArrayList ?

Thanks,
Bumbrlik
 
Only thing I've see so far is this:

Private m_aobjMyArrayList As New ArrayList

grdMyGrid.DataSource = Nothing
grdMyGrid.DataSource = m_aobjMyArrayList
 
Back
Top