IE open in background in vba excel even i used objIE.visible = true.
my code is :
Private Sub CommandButton2_Click()
mystart:
Set objIE = CreateObject("InternetExplorer.Application")
objIE.Top = 0
objIE.Left = 0
objIE.Width = 1024
objIE.Height = 768
objIE.Visible = True 'We can see IE
'On...