I
ishtiaque
I have a table in my access database named "Customer" and I send its records
as excel (csv format) file for some purposes. The below commands are OK for
it. But I need to make the .csv (or .xls) file protected when it is created
using VBA code in Access so that nobody can change the data in the sheet.
outFNamecustomer = "C:\Excel data\Customer.csv"
DoCmd.TransferText acExportDelim, , "Customer", outFNamecustomer, True
Do you have any solution for this?
as excel (csv format) file for some purposes. The below commands are OK for
it. But I need to make the .csv (or .xls) file protected when it is created
using VBA code in Access so that nobody can change the data in the sheet.
outFNamecustomer = "C:\Excel data\Customer.csv"
DoCmd.TransferText acExportDelim, , "Customer", outFNamecustomer, True
Do you have any solution for this?