We have developed a client / server solution in Excel 2010 VBA. The Excel Database is hosted on a hidden document library on a SP 2013 Server. The client is a local workbook containing the data entry form.
We want to maintain secret the path to the hosted DB. The issue is that whenever the user commit changes via a dedicated VBA routine a pop-up message with title "Uploading to the server" is displayed with in message body: "Uploading..." and the full path of the server DB.
We have included all standard message disabling functions in Excel VBA:
Application.DisplayAlerts = False
and
Application.ScreenUpdating = False
but they do not have effect on this type of messages. Wondering if they are actually from Excel? They may come from IE or WebDAV? In any case they are displayed only when saving is taking some time.
The SP hosted DB is opened and closed as follows:
Workbooks.Open \OurIntranet\services\ContractsDatabase_hidden_\LIVE_DB\Database v01.04.xlsb, , False, , MyPwd
Application.DefaultSaveFormat = xlWorkbookNormal
- UPDATING LINES -
wbk.Close
I have seen that also with DB hosted on a Network File Server the same message appears. So message box does not seem to be of SP origin.
Can someone help?
Thanks