open web page in worksheet

Maheshp

Board Regular
Joined
Jul 29, 2009
Messages
186
How can i open web page in worksheet, not on browser window , not on userform ? it should be in excel itself.
is it possible with using Microsoft Web Browser control ?
i have serach on goole but didnt get any info.
i will appreciate any help on this
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
How can i open web page in worksheet, not on browser window , not on userform ? it should be in excel itself.
is it possible with using Microsoft Web Browser control ?
Yes. For Excel 2003, the MS Web Browser Control is in the Control Toolbox, in More Controls. Choose this and draw it on the worksheet. Then you need something to make it navigate to a web page, for example a command button:
Code:
Private Sub CommandButton1_Click()
    WebBrowser1.Navigate "http://www.mrexcel.com"
End Sub
 
Upvote 0
Hi John W

Thank u so much for u r help !

<marquee>Appreciate u r help & knowledge</marquee>
 
Upvote 0

Forum statistics

Threads
1,224,570
Messages
6,179,608
Members
452,930
Latest member
racefanjtd

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top