Q: copying files...
I am fairly new to VB and I have made a program for a friend but she is not very good with computers so I made her an installation program for the program only problem is I cant figure out how to copy files from a disk to a directory on the hard drive. I was hoping you might be able to help me with this.
justint@swbell.net

A: FILECOPY...
if you just want to copy file just check the VB command FILECOPY --- from the HELP ---- Copies a file. Syntax FileCopy source, destination The FileCopy statement syntax has these named arguments: source: String expression that specifies the name of the file to be copied. The source may include directory and drive. destination: String expression that specifies the target filename. The destination may include directory and drive. Remarks: If you try to use the FileCopy statement on a currently open file, an error occurs. Return