Search results

  1. Jason Lee Hayes

    Solved Detect 4 Sequential/Consecutive characters within a string

    HI, Yes; appreciate the update... This one works well... Much appreciated....
  2. 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...
  3. 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...
  4. 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...
  5. 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...
  6. 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..
  7. 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...
  8. 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...
  9. Jason Lee Hayes

    Solved Microsoft Access and Mac

    Yes, makes sense.. no problem....
  10. 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...
  11. 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
  12. 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...
  13. 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...
  14. 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...
  15. Jason Lee Hayes

    Solved Editable PDF file from a Report/Query

    Yes, sorry should have read more of you post first lol.
  16. 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...
  17. Jason Lee Hayes

    Solved Editable PDF file from a Report/Query

    I can supply foc Adobe Pro / Enterprise if that helps
  18. Jason Lee Hayes

    Epson announces end of laser printer production

    Yes; the trusted HP Laserjet.. Some had PCL5 and were good reliable printers. The banding on the paper was a common fault and more ofter than not was incorrectly diagnosed as a drum issue however 80% of the time we found the fuser was the primary issue in that it failed to reach the required...
  19. Jason Lee Hayes

    Epson announces end of laser printer production

    The issue really lies with the buyer and the seller. The buyer wants a printer so trots off to PC world and says I want a printer. The seller leans towards what could I sell them which would get me the most profit. At no point are the right questions asked such as:- What's your budget? Do you...
  20. Jason Lee Hayes

    Solved Creating a Black & White copy of an Image using WIA Filter

    Big thankyou sonic8, arnelgp has come up with the exact solution however you help with the alternative method has now not only fixed the issue but has have me contemplating that if i can now write values to a specific range within an image i could also expand on this and compare a specific...
Back
Top Bottom