Search results

  1. B

    SaveSecureWorkbookToFile v3

    yes it does exist. That’s where the executable is located that I’m running. Yes, I do have write access to the temp folder. I tested it to verify that I could write a file in there and I could. I started going down this path because I was having a problem with saving a sheet in a csv format. So...
  2. B

    Macro to save a sheet in CSV format gets prompted to save the entire workbook in xlsc

    That worked. I added the following 3 lines before my save.as statement Dim XLSPadlock As Object Set XLSPadlock = Application.COMAddIns(“GXLS.GXLSPLock”).Object XLSPadlock.SetOption Option:=“1”, value:=“1” and then after the save statement, I set the value back to 0 XLSPadlock.SetOption...
  3. B

    SaveSecureWorkbookToFile v3

    The first message is second message: third message:
  4. B

    SaveSecureWorkbookToFile v3

    I have copied the functions from the user guide to save a secure work, but it won’t create the .xlsc or .dat file. It doesn’t error out, either. I added a msgbox to let me know if an jumps down to the err: label. I’m using the pathtofile function as well to create the full filename string. I’ve...
  5. B

    Macro to save a sheet in CSV format gets prompted to save the entire workbook in xlsc

    I have a macro that will copy a sheet and then save it as a CSV format. It uses the Application.GetSaveAsFilename to get the location and file name, then I use the With Activeworkbook .saveas to save the file. It does save the file just fine in the compiled version, but after it save the file...
  6. B

    Mac Support

    The last reply on this topic was over 2 years ago. Are there any updates on supporting MACs? I myself have an interest in having my app run on a MAC/ ipad.
Back
Top