Active or visible FrontPage

E

EstUfg

How to make visible or active frontpage if I've use this code:
set app = createobject("FrontPage.Application")

this leave in background the program then, how to make show, or visible, what's propertie
 
S

Stefan B Rusynko

Looks like you are trying to open FP from another MSO app

Try
Dim objApp As FrontPage.Application
Set objApp = GetObject(, "FrontPage.Application")

Note:
If FP is already running you will probably get an error 429 (Error 429 is a "Can't Create Object" error), so use an error handler to
check for that error and, if you get it, in your error handler use CreateObject("FrontPage.Application")




| How to make visible or active frontpage if I've use this code:
| set app = createobject("FrontPage.Application")
|
| this leave in background the program then, how to make show, or visible, what's propertie
|
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top