Search results

  1. P

    WooCommerce integration kit - FALSE security issue - SOLVED

    Support, I scanned my site with Wordfence and it found a security within this kit, please see below screenshot. Can you please look at the file and let me know if it is a serious security issue or not?
  2. P

    XLSPadlock V2017 won't save the *.eula and *.lic files to the current folder of the EXE file

    I need those files saved into the current folder of the EXE file, but the V2017 refuses to do this. Support - can you please help to check this issue? Note that this issue doesn’t happen to the V3.0.0.
  3. P

    Finding a way to live with the Woo kit

    As the Woo kit is a bit clumsy, I tried to find a way to live with it. I made two versions of the kits: one for the 30-days trial workbook, the other is for the 365-day subscription. Both of them work fine with their own channel, however there is an annoying issue: the 365-day subscription users...
  4. P

    Is it legal to extract icons of other software installed in my computer to use in my own software?

    Anyone please shed some light on this question?
  5. P

    WooCommerce Integration Kit to support WooCommerce API Manager and WooCommerce Subscriptions

    Hi all, Since the capability of the free WooCommerce Integration Kit is limited as mentioned in other discussions, it would be great to improve it to support the two plugins WooCommerce API Manager and WooCommerce Subscriptions. Nothing is free, and it would be fair to pay for the developer...
  6. P

    WooCommerce activation design flaw

    XLS Padlock support/developer team, I successfully have got the kit installed and up running smoothly. Now I started to test to see how it behaves. I started with the setting for maximum number of runs limitation in the file MainController.php, say 3. Everything looks fine, the EXE stops...
  7. P

    Web hosting plans that support online activation and Woocommerce kit

    There are numerous hosting providers out there and I’m totally confused with their plans and I’m not really sure which one works with XLS Padlock kits. Any suggestions would be highly appreciated.
  8. P

    VBA Compiler - Debugger exposes secret strings

    I tested my compiled workbook on different machines with different configurations to see how it behaves. The workbook works well on most of testing machines, one failed. That’s ok to me since the failure is just because the machine is missing some components, BUT the there is an issue happened...
  9. P

    XLS Padlock with Enky SL dongle

    To work around the poor performance issue of arrays calculation as mentioned in my earlier post, I’ve developed my own compiled DLL for the main calculation engine in VB6 in stead of moving the code into the XLS Padlock compiler. I’m aware that my spreadsheet and the DLL could be stripped off...
  10. P

    XLS Padlock with Yubikey and generic FIDO U2F Security Key

    Is it possible to add Yubikey or a generic FIDO U2F Security Key as additional option for protection with hard keys? Protection with USB stick is not good enough since these sticks are easily to be cloned. Going with Enky SL dongle only is not really a good business decision since we hardly get...
  11. P

    Retrieve Expiration Date

    I want to show the expiration date and number of days left in order to remind customers to renew their subscription before it is expired. How can I use VBA to retrieve the expiration date from the activated licence?
  12. P

    Wish list for the future release of XLS Padlock

    Hi XLS Padlock team, I would like to have the following features available in the future version of XLS Padlock: A CANCEL button in the opening dialog box to allow me to cancel opening the workbook. It would be helpful especially when we just accidentally click on the EXE file and we don’t...
  13. P

    Build Secure Application Passwords

    I’m using the V3.0.0 at this moment. Big thanks to the XLS Padlock team for their great effort to release this version. I put randomised-customised passwords of 256 characters in length into Workbook Password/ Application Secret Key/Application Secret ID/Application Master Key/ Application...
  14. P

    VBA Compiler - Dynamic array performance

    I successfully brought my main function which contains more than 2500 lines of codes into the VBA Compiler. It was able to run eventually and produce similar results compared to what the original VBA codes did. Yay!!! However, there is an issue - code performance. The compiled code is really...
  15. P

    VBA Compiler - Dynamic Array

    I was thrown an error when trying to recall the value stored in an array, see code below. What am I missing here? Public XS2RunList as Variant Public nXS as long Sub XS2Run Dim i as long Dim XS2RunList = VarArrayCreate([1, nXS],12) For i = 1 to nXS XS2RunList = i Next Msgbox (XS2RunList[1])...
  16. P

    VBA Compiler - Get Last Row/Column function

    I’m trying to find an effective way to get the last row/column which have data on it. I have no problem with VBE, but a big problem with VBA compiler as it refused all my current working functions. It is really annoying me as this compiler does not support vb constants ie. xlUp, xlLastCell...
  17. P

    VBA Compiler - Use of Select Case

    It appears that the SELECT CASE does not work properly in my code below. I would expect the second case message would show up, but it wouldn’t. What am I missing here? Sub MAIN_XP (Param1) Dim a as double a = 2.5 Select case a Case a >= 3.0 and a <= 4.0 'First Case Msgbox(“OK”) Case a >= 2.0...
  18. P

    VBA Compiler - Collection

    An error was thrown at Set pt = New Collection How can I work around this error?
  19. P

    VBA compiler compiling errors

    I got a compiling error with the following code: Dim XS2RunList() as long How can I get the VBA Compiler work with dynamic array? I also got compiling error with other misc. constants ie vbYesNo, vbCrLf, xlNone, xlContinuous, xlInterrupt,xlErrorHandler How can I get around them?
  20. P

    Use Cells objects

    How can I use Cells object instead of Range in VBA Compiler?
Back
Top