Search results

  1. Jason Lee Hayes

    SignalR. Always Red!!!

    To securely connect your Android app to a PC using SSL, you'll need a valid SSL certificate installed on the PC (acting as a server), and your Android app must trust that certificate. Here's a step-by-step guide to acquiring and using a valid SSL certificate: Step 1: Purchase or Generate a...
  2. Jason Lee Hayes

    Delete Sensitive Data from Tables Example

    Deleted Sensitive Data were Field Meta Data = [sensitive] Approach i use; hope someone else can make use of it...
  3. Jason Lee Hayes

    VBA code crashes after installing KB5064081 update

    It's yet another reminder that distancing myself from Microsoft products—however challenging—is the right move. I genuinely sympathize with developers still in the trenches, producing commercial software, only to be blindsided when Microsoft breaks something and the client blames them. I've been...
  4. Jason Lee Hayes

    Form on form

    This sounds like a classic case of needing a clean, modular UI in Access that mimics a dashboard-style layout. The goal is to have a persistent "Background" form acting as a container, with three independent subforms that behave like widgets, each driven by its own query which is what you are...
  5. 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...
  6. 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.
  7. Jason Lee Hayes

    CoPilot removed by recent Windows update

    I must be the odd one out - CoPilot has helped me in many ways...
  8. 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...
  9. 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 =...
  10. 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...
  11. 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...
  12. 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...
  13. 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...
  14. 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...
  15. 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 '...
  16. 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...
  17. 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...
  18. 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...
  19. Jason Lee Hayes

    Upgrade to Windows 11 for free?

    It can be upgraded..
  20. 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 =...
Back
Top Bottom