Sub accessExistingIEtabs()
boolWindowFound = False
Set objShell = CreateObject("Shell.Application")
WinCount = objShell.Windows.Count
winNo = 0
Set IE = objShell.Windows(winNo)
boolWindowFound = True
If boolWindowFound Then
Set doc = IE.document
End If
doc.getElementsByClassName("a-input-text a-form-normal ui-autocomplete-nested-button ui-
autocomplete-input")(0).Value = "italy"
end sub
'this code work just on tab number 0 I WANT TO USE EDIT TO IT SO I CAN CONTROL MULTIPLE PAGES LIKE' 'TAB 1 AND TAB 2 AND MORE TO DO DATA ENTRY TO MULTIPLE PAGES BY GETTING INFORMATION FROM EXCEL BUT' ' 'AT SAME TIME NOT TAB BY TAB' ? end sub