Search results

  1. L

    Second instance of Word opened from Access arises security warning?

    Still I would like to know why opening several instances of Word should create the security problem!
  2. L

    Second instance of Word opened from Access arises security warning?

    Taller in StackOverflow spotted the error in my code. The instruction: Set objWordApp = GetObject( "Word.Application") should be: Set objWordApp = GetObject( , "Word.Application") That was the reason why the open instance of Word was never intercepted! Thank anyway to all, Lauro
  3. L

    Second instance of Word opened from Access arises security warning?

    I removed the Nothing and the result is the same. Yes, I leave the files opened for the user
  4. L

    Second instance of Word opened from Access arises security warning?

    Hi The_Doc_Man, thanks for your answer. Still, I don't understand why this simple code, used before thousand of times, is causing this problem now when the files based on a very simple template are opened. The Word files, the Word template, the Access or Excel mother application are all in a...
  5. L

    Second instance of Word opened from Access arises security warning?

    Why 2 instances of Word with the problem?
  6. L

    Second instance of Word opened from Access arises security warning?

    A little more information. If the files opened are only based on "normal.dotm" everything is fine. If are based on "my.dotm" with only Debug.Print Now() in Document_New and Document_Open the problem arises. If push the button "Disabilita macro" [disable macros], The file opens; it's the rigth...
  7. L

    Second instance of Word opened from Access arises security warning?

    Hi, an update. I created a UserForm in Excel and used the same code. Same problem!!!
  8. L

    Second instance of Word opened from Access arises security warning?

    Hi, thanks to both of you. The_Doc_Man said: > Take a look at the discussion of the "Revert" option. Where is the discussion? It's not in the link provided. I checked carefully and debugged: I removed the Set objWordApp = Nothing The file names are different. The second time the Set...
  9. L

    Second instance of Word opened from Access arises security warning?

    Hi, I have a new and very strange problem arising from Word and Access interop. Never noticed something similar before. Now I'm using Microsoft 365 I an Access form I have only a text control where I can type the name of the word file I want to open and a buttons that opens it. The first time...
  10. L

    Microsoft Access: Edge Browser Control is finally here :)

    To distribute an Access solution using the new Edge Browser Control in forms and/or reports, I need at installation time to know if user has already a version of Access with it if doesn't have it, to automatically dowloand the right runtime Which is the easiest and safest way to achieve this...
  11. L

    BoundObjectFrame with Word doc OLE doesn't update

    Hi, I have two tables and two forms. A form's control is an BoundObjectFrame for a field with linked OLE Word document. Strange enough, in one form, the changes in the Word documents are update (not immediatly but when I change record), on the other the update never happens! I couldn't spot the...
  12. L

    Microsoft Access: Edge Browser Control is finally here :)

    Thank for the suggestion. I tried to download and install on a Windows 8 laptop, but it tells me to upgrade to windows 10. I think I'm going to wait. I wanted something to run also on older computer. Thanks again, anyway, Lauro
  13. L

    Microsoft Access: Edge Browser Control is finally here :)

    Thanks again. How could I check if it's already available in A365 runtime? In this page I cannot find any indications. Lauro
  14. L

    Microsoft Access: Edge Browser Control is finally here :)

    Thanks for the answer! So I have to hope that Microsoft will soon release a new build of the A365 runtime. Following your experience when that could it happen? Few or several months? Thank again, Lauro
  15. L

    Microsoft Access: Edge Browser Control is finally here :)

    I would like to share my experiences with the new Edge Browser control and ask some questions. I made simple database (1 table with addresses, 1 form, 1 report) and I tried to visualize both internet sites and local files. That’s what I gathered: Internet addresses starting with “https://”...
  16. L

    Replace or disable right click menu on Web Browser Control

    Thanks again Edgar. I'm encountering the same error in both versions at line: scr.innerhtml = "function disableRightClick(event) {event.preventDefault();}" I found on the web the following file/ example that correctly disable right click in Firefox, Chrome and Edge. <!DOCTYPE html> <html>...
  17. L

    Replace or disable right click menu on Web Browser Control

    I'm not using a PDF plugin, but the Microsoft Access the WebBrowserControl . As default browser I have Firefox 112.0.2 (64 bit), but I don't think it's relevant.
  18. L

    Replace or disable right click menu on Web Browser Control

    Hi Edgar I uploaded a sample database with one table and one mask. You should insert the fullname of same html files. Thanks again, for your interest. Lauro
  19. L

    Replace or disable right click menu on Web Browser Control

    Thank a lot Edgar, at the line: scr.innerhtml = "function disableRightClick(event) {event.preventDefault();}" I'm receiving I was calling the DisableRightClick sub at onLoad form.
  20. L

    Replace or disable right click menu on Web Browser Control

    Hi, I'm using the WebBrowserControl in an Access form to show HTML or PDF files. When I right click on the control area I get the context menu on the left for HTML and on the right for PDF. I would like to replace those menu with my own, but the WebBrowserControl doesn't expose a...
Top Bottom