You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to
I am using a form to direct users of my db to a website with the code below. I want to hide the form when they go to the internet and unhide when they close it. How can this be done, detect when the object is closed?
Set Newsite = CreateObject("InternetExplorer.application") Newsite.Visible = True Newsite.FullScreen = True ‘hide the form here Newsite.AddressBar = False Newsite.Navigate https://url
Unhide form here when object is closed/on fire quit