Hi,
I' ve developed a VB6 application & connect it with MSAccess. Does anyone knows how can i copy the stored data to text files?
Thanks
Printable View
Hi,
I' ve developed a VB6 application & connect it with MSAccess. Does anyone knows how can i copy the stored data to text files?
Thanks
here is the pseudo code for your requirement...
open the recordset
open a text file for input mode
write the recordset values to the text file
close the text file
close recordset
nice. Any good advice?