.xls files onto CD

mnmhenry

Board Regular
Joined
Mar 28, 2002
Messages
169
I am starting to send away some Excel files on CD. All goes well until... after copying the file onto the hard drive and then start using the file.. Somehow, the Read Only tick box in the file properties automatically ticks itself. The Excel files I use have many Save commands wich then fail because of this .....

can anyone shed some more light on this for me ??

Thanks again.
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
Hi

Try opening the file and saving as a different name.Or, open the CD files and right click and drag the files to your destination and choose "Move Here"
I think that might help
 
Upvote 0
Thanks for the reply. I can do this fine as I have discovered what is going on, but the customers I am forwarding these disks to, don't know about it and therefore, in their eyes, the disk or program is fault.....and really, it's not.
 
Upvote 0
I have had this problem also, I think it has something to do with the CD’s being read only, I have not found a way to record a file, excel or word, to a CD without it making them read only, and then having to right click on the file and change the properties before opening it. Maybe somebody here knows a way maybe a on open event to change the properties from read only?
 
Upvote 0
How about including the excel files in a self extracting (exe) zipped up file. That way at the other end the users would have to double click the exe file and you can specify for the excel files to be saved to the desktop of the user (ie onto the harddrive).
 
Upvote 0
Hello,

Put this procedure in your workbook's Open event. I just tested it and it worked fine:-

Code:
Private Sub Workbook_Open()
On Error Resume Next
FileSystem.SetAttr ThisWorkbook.FullName, vbNormal
ThisWorkbook.ChangeFileAccess xlReadWrite
End Sub

Hope this helps,
Dan
 
Upvote 0
Hi Sorry this is a tad late but DK has saved the day i know only ZIp the files and then should work arround this

ANY compression will do this RAH, ACE, ZIP, and so on.

Jack

Free trial or sharware on cnet download.com or tucow.com all free and leagle if you need to try this or winzip.com for trial version
 
Upvote 0

Forum statistics

Threads
1,206,718
Messages
6,074,493
Members
446,072
Latest member
OrangeYellow

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top