Guest_imported
New member
- Jan 1, 1970
- 0
I have a database that is 486kb and need to filecopy that to a:\. As the database size increases I will need it to save onto several disks. How do I do that? Also I need to be able to bring that file(which would/could be on several disks) back to the c:\ at a later time. How do I also do this? I tried the following and it saved the current(486kb)database onto 6 disks, none of which I was able to open.
private sub Command1_click()
on error GoTo Error_Handler
filecopy"c:\windows\Desktop\MDS.mdb","A:\MDS.mdb"
exit sub
Error_Handler:
msgbox"Insert next disk"
resume
end sub
private sub Command1_click()
on error GoTo Error_Handler
filecopy"c:\windows\Desktop\MDS.mdb","A:\MDS.mdb"
exit sub
Error_Handler:
msgbox"Insert next disk"
resume
end sub