Quote Originally Posted by hbrofman View Post
Nice Library. Has anyone used it to serialize a recordset? Any examples?

thanks
the built-in one on the recordset is pretty good if you don't mind using the disk:

to disk:
Code:
rs.save("c:\temp.dat",adPersistADTG)
from disk:
Code:
rs.open("c:\temp.dat","Provider=MSPersist")