M
Mr. Bluemaxx
How to automate already Opened IE browser using excel Macros?Steps:Step 1: Open VBA editor on a new excel file and create a new module.Step 2: Copy below code in the vba module.Sub accessExistingIEBrowser() On Error Resume Next boolWindowFound = False Set objShell = CreateObject("Shell.Application") WinCount = objShell.Windows.Count For winNo = 0 To (WinCount - 1) strURL = objShell.Windows(winNo).document.Location strTitle = obj
Continue reading...
Continue reading...