KoenPiller
Programmer
Hi,
I would like to open a HTM page after I made a selection in in VFP Form. Basicly the same way one could open a Word page. Something like:
however this does not work - error on line loFrontPage=loFrontPage.Activate(cMyPage) : OLEx0800200006 unknown name.
Somebody who could give me a clue how to solve this one?
Thanks,
Koen
I would like to open a HTM page after I made a selection in in VFP Form. Basicly the same way one could open a Word page. Something like:
Code:
cMyPage= ThisForm.txtPage.Value
loFrontPage=Createobject("Frontpage.Application")
loFrontPage=GetObject(,"Frontpage.application")
loFrontPage=loFrontPage.Activate(cMyPage)
loFrontPage.Activate
loFrontPage.Visible=.T.
however this does not work - error on line loFrontPage=loFrontPage.Activate(cMyPage) : OLEx0800200006 unknown name.
Somebody who could give me a clue how to solve this one?
Thanks,
Koen