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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top