I'll appreciate some help. I populated my grid from Access DB and now after some data changes I want to save it to the DB. The grid is not bound. What is the simplest code I can use to do this? A sample code would be helpful..
You wants for MsHflexgrid. But I do it with MsFlexGrid. It may be helpful to you.
rs.open "TableName"
for i=1 to msgrid.rows
rs.addnew
rs!id=msgrid.texmatrix(i,0)
rs!name=msgrid.texmatrix(i,1)
rs!address=msgrid.texmatrix(i,2)
rs.update
next
rs.close
I think you get the help
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.