Hi Sandeep,

Enter all the URLs in a column and then use the below code to open all
the Web Pages,

go to vba editor and go to tools->references-> check "Microsoft
Internet Controls"

Dim sURL As String

        i = 1   'starting cell where URL is Entered in Column D

do while range("D"&i).value <>""
    sURL = Range("D"&i).Value
    With oBrowser
            .Visible = True
            .Navigate sURL
            Do Until Not .Busy And .ReadyState = READYSTATE_COMPLETE
                'DoEvents
            Loop
    End With
    MsgBox "Continue !", vbInformation
i = i + 1
Loop


On Jan 18, 11:08 pm, Sandeep Kadam <sand...@gmail.com> wrote:
> Hi,
>
> I want open multiple web pages in IE 7 using excel macros.
>
> Can i use Arrays to store weblinks & for loop to move the loop to the next 
> link.
>
> I tried but its not working.
>
> Regards,
> Sandeep
-- 
----------------------------------------------------------------------------------
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links : 
http://twitter.com/exceldailytip
2. Excel and VBA Tutorials(Video and Text), Free add-ins downloads at 
http://www.excelitems.com
3. Excel tutorials at http://www.excel-macros.blogspot.com
4. Learn VBA Macros at http://www.quickvba.blogspot.com
5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 

To post to this group, send email to excel-macros@googlegroups.com
If you find any spam message in the group, please send an email to:
Ayush Jain  @ jainayus...@gmail.com
<><><><><><><><><><><><><><><><><><><><><><>
HELP US GROW !!

We reach over 6,700 subscribers worldwide and receive many nice notes about the 
learning and support from the group.Let friends and co-workers know they can 
subscribe to group at http://groups.google.com/group/excel-macros/subscribe

Reply via email to