Network Access to a PDF File - How To Prevent

skinfreak

Board Regular
Joined
May 23, 2003
Messages
152
We have an Excel converted PDF on the network. We used a PDF as users tend to print off copies and this is costing us a small forest every week.

There are problems with updating this file as users have a tendancy to keep the file open after they have viewed it which means that it cannot be updated. Does permitting readonly access to that folder from user accounts prevent a user from locking the file from update? Is there an alternative?

We use pdfMachine to convert the spreadsheet mainly because we disable printing/copying of the pdf and its free. I couldn't seem to find a solution to prevent printing in Excel unfortunately.

Ideas would be greatfully recieved!
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
You can prevent user's from printing the workbook, put the following code in 'ThisWorkbook':

Code:
Private Sub Workbook_BeforePrint(Cancel As Boolean)

    MsgBox "Printing has been disabled for this workbook.", , "Alert"

    Cancel = True

End Sub

As for the file locking question, that may well depend upon the server's network file system but I would still expect the file to be locked.
 
Upvote 0
Its a windows 2003 network i think....oh poo! Solve one problem and another rears it's ugly head.
 
Upvote 0

Forum statistics

Threads
1,224,945
Messages
6,181,937
Members
453,074
Latest member
JefersonKollet

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