Hi Everyone,
Can you tell me what is wrong with my code? I get an Access Denied error when trying to backup the tps database files.
Thanks.
Emad
Can you tell me what is wrong with my code? I get an Access Denied error when trying to backup the tps database files.
Thanks.
Emad
Code:
If FILEDIALOGA('Please tell me where to backup your data:', LOC:FilePath, '', 48) |
Then
COPY(Path() & '/*.TPS', LOC:FilePath)
If Not Error() |
Then
Message ('Your data has been successfully backed up.')
Else
Message (Error())
End
End