View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Ron[_14_] Ron[_14_] is offline
external usenet poster
 
Posts: 14
Default VBA to Save Web Pages

Using the following code

Range("B230:B235").Select
For n = 1 To 6
Selection.Hyperlinks(n).Follow NewWindow:=True, AddHistory:=False
Next n

I finish up with a group of tabbed network pages.

Now I would like to ask for help for the VBA code to save these pages
to my local c: drive.

TIA

Ron