webbrowser

  • Thread starter Thread starter Joel Allen
  • Start date Start date
J

Joel Allen

Outlook 2003 SP3

Hi,

I'm using the web browser control in my custom form. I use code like this
and it works:

MyPage.WebBrowser1.Navigate("C:\test\")

How do I programmatically make it go up one level - just like in Windows
Explorer.



Thanks,

Joel
 
Not an Outlook question, but either use the GoBack() method or explicitly
use Navigate with a parsed path to the next level back.
 
What forum should I be using?

Let's say I drilled down a couple of folders. How would I programatically
find the current path that I'm in?

Thanks,
Joel
 
I'm not sure what forum would handle this, but it's definitely not an
Outlook question.

You would use the LocationURL or LocationName properties, both are listed in
the Object Browser for SHDocVw, the web browser reference.
 
Back
Top