Hi,
I have Access 2010 and When i'm trying to Export Text files to System folder ("C:\Windows\ab c.asc"), in Windows 7 ultimate, couldn't export.
But Previously i successfully exported to "C:\windows " in windows xp.But Windows 7 blocks the exporting. Export to other folders is easy and working fine.
My Export specification name is wintrl and table is AccountTrl.
How to Export to "c:\windows \" without permission problem?
Any suggestions are highly appreciated.
AR Ratheesh
I have Access 2010 and When i'm trying to Export Text files to System folder ("C:\Windows\ab c.asc"), in Windows 7 ultimate, couldn't export.
But Previously i successfully exported to "C:\windows " in windows xp.But Windows 7 blocks the exporting. Export to other folders is easy and working fine.
My Export specification name is wintrl and table is AccountTrl.
Code:
DoCmd.TransferText acExportDelim, "wintrl", "AccountTrl", "C:\windows\abc.asc", False 'This code makes permission error message DoCmd.TransferText acExportDelim, "wintrl", "AccountTrl", "C:\Users\Alon Rajan Ratheesh\Desktop\abc.asc", False ' but here all working fine
Any suggestions are highly appreciated.
AR Ratheesh
Comment