Re: Restrict Folder Access
Make another application that will move the document file they saved from another secure folder, which they don't have access.
So create a sort of timer, everytime a client save the docs to a folder, it'll automatically detect the folder for files then transfer the file to a secure folder.
Client ------- > \\Network\Folder ---------> \\Secure\Folder
Something like that.
Re: Restrict Folder Access
Hi Zynder,
Good suggestion..... Let me try this out.
B/W, is it possible to invoke another exe form a VB program?
Re: Restrict Folder Access
Yes.
Use the Shell function.
VB Code:
Shell "C:\MyFolder\App.exe", vbNormalFocus
Re: Restrict Folder Access
yup.., i just forget 'shelling'.. thanks zynder