Explorer in my AutoplayMenu

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • cenarius
    Forum Member
    • Apr 2008
    • 1

    Explorer in my AutoplayMenu

    Hey guys

    Well...
    I want that wen I click on a button, program goes to a specific page in wich there is an Object representing explorer's folder view...

    Can anyone help me...?

    Sorry for my bad english
  • eric_darling
    Indigo Rose Customer
    • Jun 2002
    • 1805

    #2
    Windows Explorer is not accessed in the AMS environment - it's able to be called by AMS, of course, but it's going to open in a Windows-built window outside of your interface:

    Code:
    File.ExploreFolder(your_path_here, SW_SHOWNORMAL);
    You can always point a web object to a local directory, but that won't work like Explorer - it will still be a web browser environment with all of its limitations:

    Code:
    Web.LoadURL(Web1, "AutoPlay\\Docs");
    Bear in mind, however, that local files must be called by an absolute path - relative paths don't work. Basically, it's really hard to do much with local files in a web browser environment.
    Eric Darling
    eThree Media
    http://www.ethreemedia.com

    Comment

    Working...
    X