Hi,
From vba Excel I would like to open Frontpage and display a webpage. I tried following, but that does not work:
Any idea how to solve this problem? Thank you very much in advance.
From vba Excel I would like to open Frontpage and display a webpage. I tried following, but that does not work:
Code:
Set FPApp = CreateObject("FrontPage.Application")
FPApp.Visible = True
FPApp.WindowState = fpWindowStateNormal
FPApp.Resize Width:=300, Height:=350
Set FPDoc = FPApp.Documents.Open(MyWebsPath & htmName)
FPApp.Windows(MyWebsPath & htmName).Activate
Any idea how to solve this problem? Thank you very much in advance.