How to open a .htm file in my own window

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Basically, I have htm files that I want to open when a user invokes a certain
event. I want it to show up as part of the application instead of opening up
in another window. Does anyone know how to do this?

Thank you,
Susan
 
What kind of app are you talking about? Web app or Form app?

If its a forms app then you need to put a browser control on a form
and display that form on your event. Invoke the navigate method
(assuming you are using the IE control) to the path of your HTM file.

If its a web app then there are many ways you can go. You can write
out javascript dynamically to invoke a new browser window, use
redirects, etc.
 
Back
Top