Search results

  1. Jason Lee Hayes

    Simple Password Strength Checker with PWned Online Check

    While LongPtr is typically preferred for cross-platform compatibility — especially for handles and memory addressing — I'm deliberately using LongLong because my implementation relies on bitwise operations. LongLong offers true 64-bit precision, making it ideal for hashing, entropy scoring, and...
  2. Jason Lee Hayes

    Convert old DB

    Yes; after reading through the posts i suddenly question the legality!
  3. Jason Lee Hayes

    Simple Password Strength Checker with PWned Online Check

    That looks great pal.; i like how you've added the choice of variable length……As there has been some interest i will make it 32bit compliant…… Give me a few days……
  4. Jason Lee Hayes

    Simple Password Strength Checker with PWned Online Check

    Do you require a 32bit version? I can create one……
  5. Jason Lee Hayes

    Simple Password Strength Checker with PWned Online Check

    Note: SHA-1 operates strictly on 32-bit unsigned integers. Every bitwise operation in the algorithm is designed for 32-bit precision. Switching to LongLong introduces incorrect bit widths, breaks the expected overflow behavior, and causes masking errors due to the expanded 64-bit space. The...
  6. Jason Lee Hayes

    Simple Password Strength Checker with PWned Online Check

    New versiin created V2.2..NET NON dependant, pure VBA
  7. Jason Lee Hayes

    Convert old DB

    Consider this: https://www.fullconvert.com/databases/sqlbase Supports DBS files natively Using a hex editor will be pretty useless - even with IDA Pro in the right hands which is the tool to have will only give you byte pattern mapping & system table markers……
  8. Jason Lee Hayes

    Convert old DB

    IDA
  9. Jason Lee Hayes

    Watercooler v political forum

    Because you won't let him i suggest!
  10. Jason Lee Hayes

    Watercooler v political forum

    "You Know Who" is entitled to share his views — I’ve voiced my own frustrations with Microsoft more than once. He’s made a public decision to step away for now, and I think that deserves respect. Instead of getting caught up in the drama and trying to bring "You Know Who" back into the frame...
  11. Jason Lee Hayes

    Simple Password Strength Checker with PWned Online Check

    As arnelgp mentioned, that line relies on the .NET Framework exposing the SHA1 class as a COM object — which isn’t guaranteed on every machine. It’ll usually work if the full .NET Framework is installed (not just .NET Core or .NET 5+), but if it’s missing or incomplete, you’ll hit a generic .NET...
  12. Jason Lee Hayes

    Simple Password Strength Checker with PWned Online Check

    Sorry; see latest - forgot to embed graphics lol V2.11
  13. Jason Lee Hayes

    Simple Password Strength Checker with PWned Online Check

    That's because of this code: - Dim bytArr() As Byte bytArr = sPW For i = 0 To UBound(bytArr) Step 2 Select Case bytArr(i) This assumes each character is represented by a single byte, which is true for ASCII but not for Unicode characters. Some characters in Spanish are multi-byte in...
  14. Jason Lee Hayes

    Simple Password Strength Checker with PWned Online Check

    Updated V2.5 (x32 & x64) Pure VBA SHA-1 Implementation (xavier.battle Request) 1.- implemented a full SHA-1 hash function using only native VBA — no .NET, no COM interop, no external DLLs. - That means it’s portable, auditable, and works in environments where external dependencies are...
  15. Jason Lee Hayes

    Darken background when Msgbox appears

    I can whip up a quick demo and upload it if that makes things easier to follow. Just let me know pal.
  16. Jason Lee Hayes

    Watercooler v political forum

    I'm a firm believer in free speech — it's essential. But personally, I'd steer clear of hosting discussions around politics, religion, or watercooler drama. Those topics tend to attract heat, and while big platforms have the legal muscle to handle it, smaller communities don't always have that...
  17. Jason Lee Hayes

    Darken background when Msgbox appears

    To have a smooth fade in/out use: Public Sub FadeInWindow(hwnd As LongPtr, Optional stepSize As Byte = 15, Optional delayMs As Long = 30) Dim i As Byte Call EnableFade(hwnd) For i = 0 To 255 Step stepSize Call SetFormOpacity(hwnd, i) Sleep delayMs Next i End Sub...
  18. Jason Lee Hayes

    Darken background when Msgbox appears

    This is what i use... Just remember to Call EnableFade hwnd before SetFormOpacity to ensure the window supports transparency. Private Declare PtrSafe Function SetLayeredWindowAttributes Lib "user32" ( _ ByVal hwnd As LongPtr, ByVal crKey As Long, _ ByVal bAlpha As Byte, ByVal dwFlags...
  19. Jason Lee Hayes

    Local file in new webbrowser control

    Private Sub LoadFile() Dim fullPath As String If Not IsNull(Me.txtFile) And Len(Me.txtFile) > 0 Then fullPath = Me.txtFile If Left(fullPath, 1) <> "=" Then fullPath = "=""" & fullPath & """" End If Me.EdgeBrowser0.ControlSource = fullPath...
  20. Jason Lee Hayes

    Webbrowser in Form without Control !!!! Years to late....

    Why would anyone wish to stay anonymous? Anyway.... Some apps will not work if trying to identify them via PID and this is why hence my original code suggesting an approach for some fall-back alternatives. AI suggest this is why…… 1. They’re Not Running as Independent Processes • Some...
Back
Top Bottom