View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Ron[_14_] Ron[_14_] is offline
external usenet poster
 
Posts: 14
Default Saving web pages with VB possible?

The code below opens hyperlinks (Excel2002) from cells to IE7 tabbed
pages. I would like to know if it is possible with VB to save these
tabbed pages to my local drive.

Sheets("Sheet3").Select
Range("A1:A13").Select
For num = 1 To 13
Selection.Hyperlinks(num).Follow NewWindow:=True, AddHistory:=False
Next num


TIA

Ron