Open XLSC file in VBA

Slawek

New member
Hi,

I want to open my secure file (xlsc) through VBA, because I want to make my button OPEN xlsc in my EXE application. How can I do this? I found how to save secure files by VBA but I can’t find how to open xlsc files.
 
It’s not possible to open an XLSC file directly from Excel VBA. If you want to implement your own workbook loading/saving, you could use some basic VBA encryption routine for instance to load and save workbook data to files yourself.
 
Indeed, you can also use VBA to launch the EXE file and pass the XLSC file to open as a command-line parameter.
We’ll write a sample for the next release.
 
Isnt this a security risk -now every person can open a protected xlsc file…Please explain as I find this unwanted
 
Back
Top