Ahankhah Posted March 5, 2021 Posted March 5, 2021 Hi all, I know the Autolisp functions to open an Excel document: (defun MT:Open-Excel-File (%ExcelFileName%) (vlax-invoke-method (vlax-get-property (vlax-get-or-create-object "Excel.Application") 'WorkBooks) 'Open %ExcelFileName%) ) But don't know how to open it as ReadOnly. How is it possible? I appreciate any help. Quote
Ahankhah Posted March 5, 2021 Author Posted March 5, 2021 (defun MT:Open-Excel-File (%ExcelFileName%) (vlax-invoke-method (vlax-get-property (vlax-get-or-create-object "Excel.Application") 'WorkBooks) 'Open %ExcelFileName% nil T) ) The correct code to open File as ReadOnly. Quote
Tharwat Posted March 5, 2021 Posted March 5, 2021 1 hour ago, Ahankhah said: (defun MT:Open-Excel-File (%ExcelFileName%) (vlax-invoke-method (vlax-get-property (vlax-get-or-create-object "Excel.Application") 'WorkBooks) 'Open %ExcelFileName% nil T) ) The correct code to open File as ReadOnly. You should have given the credit to @VovKa who helped you with it. https://www.theswamp.org/index.php?topic=56623.msg603840#msg603840 1 Quote
Ahankhah Posted April 7, 2021 Author Posted April 7, 2021 (edited) On 3/5/2021 at 7:17 PM, Tharwat said: You should have given the credit to @VovKa who helped you with it. https://www.theswamp.org/index.php?topic=56623.msg603840#msg603840 Tharwat, yes, you are right. I appreciate greately Vovka's help and thanked him in the your mentioed address. Edited April 7, 2021 by Ahankhah Quote
kirby Posted May 19, 2022 Posted May 19, 2022 Old post, but always a good idea to review the Microsoft Office/Excel API reference for details on methods and properties when trying to do this kind of thing https://docs.microsoft.com/en-us/office/vba/api/excel.workbooks.open 1 Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.