123456 vba

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...
 

Similar threads

M
Replies
0
Views
69
Mr. Bluemaxx
M
M
Replies
0
Views
74
Mr. Bluemaxx
M
M
Replies
0
Views
77
Mr. Bluemaxx
M
C
Replies
0
Views
61
Christopher Nguyen
C
Back
Top Bottom