Search results

  1. Jason Lee Hayes

    Solved Detect 4 Sequential/Consecutive characters within a string

    Hi, I have looked at what i have and the alternatives and after testing your code it actually works perfect. This means i can get rid of 2 separate modules, bin my RegEX and simply apply your code. What's more; on my original protect design after each keypress in the password field i display...
  2. Jason Lee Hayes

    Solved Detect 4 Sequential/Consecutive characters within a string

    Thanks; will add this as a remark within the code... Thankyou
  3. Jason Lee Hayes

    Solved Detect 4 Sequential/Consecutive characters within a string

    Hi, Just looking at this now... Works perfectly and all wrapped up into 1 function which i like. Thankyou
  4. Jason Lee Hayes

    Solved Detect 4 Sequential/Consecutive characters within a string

    YEY; now works as required... Perfect... Thankyou
  5. Jason Lee Hayes

    Solved Detect 4 Sequential/Consecutive characters within a string

    HI, Yes; appreciate the update... This one works well... Much appreciated....
  6. Jason Lee Hayes

    Solved Detect 4 Sequential/Consecutive characters within a string

    Excellent; this gets me closer to my goal... Sequential numbers are found using the code but UPPER case & LOWER case don't work for me... Thank you...
  7. Jason Lee Hayes

    Solved Detect 4 Sequential/Consecutive characters within a string

    Hi, Thanks; I'm not reinventing the wheel as such as the link provided offers me what i already know and implemented. The specific thing I'm trying to achieve is:- The password must not contain 4 consecutive characters (e.g. "1111", "1234", "abcd" ) Its a RexEX thing but cannot get my head...
  8. Jason Lee Hayes

    Solved Detect 4 Sequential/Consecutive characters within a string

    I have the following which should identify 4 of the same characters in a row:- eg (aaaa or AAAA or bbbb) How do adapt this to check for numbers e.g. (1111, 8888) Would it be something like .Pattern = "([a-z][1-9])\1\1\1" ? Option Explicit Function QuadChars(S As String) As Boolean Dim...
  9. Jason Lee Hayes

    Solved Detect 4 Sequential/Consecutive characters within a string

    Hi, I am trying to increase security with regards password allowed to be used.. If the user chooses a password i have the following requirement check which works fine:- Have at least 8 characters in length Must have at least 2 letters (a,b,c...) Must have at least 2 Numbers (1,2,3...) Include...
  10. Jason Lee Hayes

    Solved Make a label on form Toggle BOLD & NORMAL when mouse pointer hover/move off

    Hi, you were correct - did as you suggest and it works. I went with The_Doc_Man suggestion in the end as it was far less coding and only needed it for a single label. Thankyou..
  11. Jason Lee Hayes

    Solved Make a label on form Toggle BOLD & NORMAL when mouse pointer hover/move off

    Thanks, Will do just that - The_Doc_Man solution worked but not without its drawbacks...
  12. Jason Lee Hayes

    Solved Make a label on form Toggle BOLD & NORMAL when mouse pointer hover/move off

    Hi, Thanks for the link... This has worked; i find it a little strange that you have to put a label Infront of another label to toggle BOLD. It does have its drawbacks in that if you move out of the front facing label too quick sometimes its not recognized therefore not toggling but its better...
  13. Jason Lee Hayes

    Solved Microsoft Access and Mac

    Yes, makes sense.. no problem....
  14. Jason Lee Hayes

    Solved Make a label on form Toggle BOLD & NORMAL when mouse pointer hover/move off

    Hi, I wish to make the label BOLD when hovering above it with the mouse then when the mouse is moved away from the label the bold is reduced back to its default NORMAL size.. Its a nicety not a necessity for my project... Been searching and came across this code:- Make label bold when cursor...
  15. Jason Lee Hayes

    QR Code generator (image) using Zxing (Zebra Crossing) library

    Your missing some code; if nothing then do nothing? If IsNull(Me!CodeAd) Then Else surely Me!qrField.Picture.visible = false or something
  16. Jason Lee Hayes

    Solved Microsoft Access and Mac

    Yes; understood... the last think i want is to get anyone into trouble - just trying to help...
  17. Jason Lee Hayes

    Adobe VBA Reference to password protect a PDF

    Yes I remember - Lamasoft.... I used to work as a software evaluation officer for a company called Alternative Software owner by Roger Hully who's offices were in Pontefract West Yorkshire. Many games were sent to me and I determined if they could be developed for commercial sale. Many of the...
  18. Jason Lee Hayes

    Adobe VBA Reference to password protect a PDF

    That brings back fond memories; its my understanding that Elite was the first commercial game LensLok was used on. Unfortunately the project was doomed as when you go cross platform many of the monitors some of them fixed were too small or to big and lacked definition for the LensLok...
  19. Jason Lee Hayes

    Solved Editable PDF file from a Report/Query

    Yes, sorry should have read more of you post first lol.
  20. Jason Lee Hayes

    Adobe VBA Reference to password protect a PDF

    It's worth noting there's absolutely no guaranteed way of protecting anything digital wether this be hardware or software. I spent many years working with companies to do just this and all you are really doing is buying time before an exploit is found. Back in the old 8bit days I worked on a...
Back
Top Bottom