Recent content by Jason Lee Hayes

  1. Jason Lee Hayes

    How to read IP Address of 'actually used' lan nic?

    Optional Output: - '--------------------------------------------------------------------------------------- ' Procedure : GetActiveAdapterDetailsOptionalOutput ' Author : ChatGPT modified: bbfromgb, InView ' Date : 23.06.2025 ' Purpose : Find network adapter having internet access...
  2. Jason Lee Hayes

    How to read IP Address of 'actually used' lan nic?

    As Above (No CMD Window Flash) '--------------------------------------------------------------------------------------- ' Procedure : ActiveAdapter ' Author : ChatGPT modified: bbfromgb, InView ' Date : 23.06.2025 ' Purpose : find network adapter having internet access (No CMD Window...
  3. Jason Lee Hayes

    How to read IP Address of 'actually used' lan nic?

    To Include DNS Servers & IPV6 Address: - '--------------------------------------------------------------------------------------- ' Procedure : ActiveAdapter ' Author : ChatGPT modified: bbfromgb, InView ' Date : 23.06.2025 ' Purpose : find network adapter having internet access '...
  4. Jason Lee Hayes

    Machine Code - AI enhanced

    I used ChatGPT to identify the algorithm used by Hikvision to reset their equipment without manufacturer intervention. Knowledge and use of Hex-Rays IDA in parallel with ChatGPT is just another approach in tool in the box. It's been so long my JTAG & Boundry scanning techniques have been...
  5. Jason Lee Hayes

    Printing html file to a specific printer

    Your code is attempting to use ShellExecute to print an HTML file via Internet Explorer, but Internet Explorer does not directly support the "print" verb in this context. This approach often fails silently without errors. Here are a few alternative methods you might try: Option 1: Use Internet...
  6. Jason Lee Hayes

    Upgrade to Windows 11 for free?

    Search and Download Rufus Link: https: //rufus. ie/en/ Visit Official Microsoft Website and download Windows 11 ISO Run Rufus and select the ISO image you downloaded from Official Microsoft Insert a USB Pen Drive into a Spare USB Port Write the image to the USB (There are options to Bypass the...
  7. Jason Lee Hayes

    Upgrade to Windows 11 for free?

    It can be upgraded..
  8. Jason Lee Hayes

    MS Office warning

    Sorry NameSpace being used incorrectly: - Try the following Dim sPath As String sPath = "E:\Images\ALL RAW Images\Herbanium_Collection\Group_E\Ericaseae-eric-1\DMHN010962A.nef" Dim ShellApp As Object Set ShellApp = CreateObject("Shell.Application") Dim Folder As Object Set Folder =...
  9. Jason Lee Hayes

    VPN to produce the impersonation of a specific region/country /ip range

    I personally use a modified version of IP Vanish. It is important to note that using a VPN does not guarantee complete security, and caution is advised, especially when utilizing free VPN services. While robust protocols such as OpenVPN, WireGuard, and IKEv2 are preferable, they are not entirely...
  10. Jason Lee Hayes

    MS Office warning

    Dim sPath As String sPath = "E:\Images\ALL RAW Images\Herbanium_Collection\Group_E\Ericaseae-eric-1\DMHN010962A.nef" With CreateObject("Shell.Application").NameSpace(0).ParseName(sPath) If Not .IsNull Then .InvokeVerb "Open" End With
  11. Jason Lee Hayes

    Looking for Access UI Design Inspiration – Forms with Buttons or Tabs

    Look here: - https://ant.design/
  12. Jason Lee Hayes

    Creating a snapshot (bmp) image from any rectangular area of the screen demo

    I cannot see how you can really improve on the latest frmCapture3.. This works really well.
  13. Jason Lee Hayes

    Extracting Image from OLE field

    Sweet... Thanks for sharing....
  14. Jason Lee Hayes

    Should I Learn MS Access in the AI Era?

    The choice to use MS Access ultimately depends on your initial purpose. If your goal is financial gain, MS Access may not be the ideal solution. However, if your focus is on fulfilling specific database requirements, platforms like Caspio might be worth considering. Personally, if I were...
  15. Jason Lee Hayes

    Solved Open Outlook & check for new mail where search criteria is applied to the email subject line

    All sorted. Issue was registry corruption causing intermittent use of Outlook (New) which has no COM function. Re-done OS & APP layers and force use of Outlook (Classic) & prevented Outlook (New) from ever being installed or used irrespective of OS Updates and channel... Thanks for all your help (y)
Back
Top Bottom