Recent content by mtaylor

  1. M

    Activation token works after expiration

    Thanks, I will hold off on figuring out the subscription side until that is available. I’m still not sure what to do for the free trial. From the testing I have done: After the trial is complete, the same activation token will work if the order status is still set to complete. I can change the...
  2. M

    Activation token works after expiration

    I think I will go with a subscription setup anyhow, I just have not purchased the plugin yet. Will having a subscription change this? (ie. If a person ended their subscription would they still be able to reactivate with the same token?). But I would still have an issue with the have a trial...
  3. M

    Activation token works after expiration

    Hello, I am testing the online activation and validation through woocommerce for a hardware locked workbook. I have the license set to expire after one day. I am manually entering an order in woocommerce with my hardware activation key. After that, I enter my activation token based on my email...
  4. M

    Directly saving a workbook to an unsecured version

    Ok I got it working with some minor changes Application.DisplayAlerts = False myfile = GetSecureWorkbookFilename SaveSecureWorkbookToFile (myfile) filePath = Replace(GetSecureWorkbookFilename, “.xlsc”, “”) Dim XLSPadlock As Object Set XLSPadlock = Application.COMAddIns(“GXLS.GXLSPLock”).Object...
  5. M

    Directly saving a workbook to an unsecured version

    Here is what I have done to save an unprotected version of the file with some of the information taken out: Application.DisplayAlerts = False Dim XLSPadlock As Object Set XLSPadlock = Application.COMAddIns(“GXLS.GXLSPLock”).Object XLSPadlock.SetOption Option:=“2”, Value:=“0”...
  6. M

    Directly saving a workbook to an unsecured version

    I have forbidden saving to an unencrypted workbook but am temporarily turning that off through the set option vba commands mentioned in section 11 of the user manual. From what I can tell, the code in section 11 let’s you start a new blank workbook (workbooks.add) and save it, but what I am...
  7. M

    Directly saving a workbook to an unsecured version

    I am working on converting a macro that deletes a bunch of content and removes the VBA components of the software and then saves the files to .xlsx. In the locked version of the software the process I have mostly working is: Save the secured file Delete the unwanted content in the secured file...
  8. M

    Multiple quantity woocommerce orders

    Hello, I am setting up a woocommerce website. By default,the customer is given a quantity option. I would like to be able to sell multiple copies in one order to allow for volume based discounts. If I am understanding things correctly, that would require sending multiple activation tokens. Is...
Back
Top