How to disable "Do you want to allow this website to open an app?"

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Aftab Ahmad
    New Member
    • Jan 2015
    • 49

    How to disable "Do you want to allow this website to open an app?"

    So, I have written a code for a cmd called "Send WhatsApp Message" to open and send WhatsApp messaage. The code is given below.

    Code:
    Dim IE As Object
    
        Set IE = CreateObject("InternetExplorer.Application")
        IE.Navigate "whatsapp://send?phone=" & Me.Mobile & "&text=" & "Welcome! Admission of " & " " & Me.StudentName & " " & Me.Prefix & " " & Me.Father_Name & " " & "has been successful in Class" & " " & Me.Class & " " & Me.ClassSection & ". " & DLookup("[Institute Name]", "Profile")
        Sleep 3000
        SendKeys "~"
        SendKeys "{NUMLOCK}", True
        Set IE = Nothing
    But the problem is that, every time I got a popup message "Do you want to allow this website to open an app from your computer? App: WhatsApp". Can I disable that popup permanently?

    Thanks
  • NeoPa
    Recognized Expert Moderator MVP
    • Oct 2006
    • 32662

    #2
    Hi Aftab.

    I suspect there may be a way, but you've posted your question in the Access forum. The popup is not an Access message but comes from either your O/S (probably) or your browser (maybe). You will need to ask somewhere where they know about this & can help you.

    Good luck.

    Comment

    Working...