Search results

  1. Jason Lee Hayes

    Why so many adverts suddenly?

    What really gets on my nerves isn’t just the ads themselves—it’s where they’re placed. First on the right, then the left, then back to the right… it’s like playing a game of Downfall trying to keep up. And the sheer number of them? Way over the top. I get that ads are part of the deal, but...
  2. Jason Lee Hayes

    Clear out data

    Based on arnelgp code: Will only delete data from fields WHERE the field metadate description = [sensitive] Within your Table Field Name Description add [sensitive] to any field you would like to clear.
  3. Jason Lee Hayes

    CoPilot removed by recent Windows update

    I must be the odd one out - CoPilot has helped me in many ways...
  4. Jason Lee Hayes

    Copy strPath to clipboard

    You may run into permission issues: - This API version gives you far better control with minimal dependencies and greater reliability in constrained environments. '========================================================= ' Requires: Windows API declarations for clipboard control ' Compatible...
  5. Jason Lee Hayes

    Closing Form Instances

    Try this: - Public Function CloseMe(Optional ByRef objMe As Object) As Boolean On Error GoTo ErrHandler Dim blnReset As Boolean ' If no object passed, assume we're in a form module If objMe Is Nothing Then blnReset = True Set objMe =...
  6. Jason Lee Hayes

    Is there a way to get control on the call audio of an android phone?

    Actually, reading back to original request; I've gone off topic, i think! I understood the question to be Is there any way to control the audio volume of an android device on playback using MS access...
  7. Jason Lee Hayes

    Is there a way to get control on the call audio of an android phone?

    No; you didn't miss anything. Technically It could be done with VBA using a script with a bridge between the PC and Android device. Using Kotlin based HTTP server the code would look something like this: - class CommandServer(private val context: Context) : NanoHTTPD(8080) { override fun...
  8. Jason Lee Hayes

    Is there a way to get control on the call audio of an android phone?

    Controlling call audio on an Android phone directly from VBA (Visual Basic for Applications) is not feasible due to platform and permission limitations. VBA is designed for automating tasks within Microsoft Office applications and Windows environments, and it doesn't have native capabilities to...
  9. 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...
  10. 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...
  11. 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 '...
  12. 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...
  13. 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...
  14. 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...
  15. Jason Lee Hayes

    Upgrade to Windows 11 for free?

    It can be upgraded..
  16. 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 =...
  17. 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...
  18. 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
  19. Jason Lee Hayes

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

    Look here: - https://ant.design/
  20. 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.
Back
Top Bottom