Jump to content

How can I Run an HTML file


Hugo
 Share

Recommended Posts

Hi,

How can I run a HTML file, what i'm doing now is to open the command prompt, put the file path and then send an enter.

Is there a more direct way?

Thanks,

Hugo

Yes there is:

Run(@ComSpec & " /c Start C:\Path\To\File.html")

[u]My UDFs[/u]Coroutine Multithreading UDF LibraryStringRegExp GuideRandom EncryptorArrayToDisplayString"The Brain, expecting disaster, fails to find the obvious solution." -- neogia

Link to comment
Share on other sites

Another option

#include <Process.au3>
_RunDos("c:\path\to\file.html")


Time you enjoyed wasting is not wasted time ......T.S. Elliot
Suspense is worse than disappointment................Robert Burns
God help the man who won't help himself, because no-one else will...........My Grandmother

Link to comment
Share on other sites

  • Moderators

this work with latest beta

#include <GuiConstants.au3>

DllCall("shell32.dll", "long", "ShellExecute", "hwnd", 0, "string", "", "string", "c:\temp\test.htm", "string", "", "string", "", "long", @SW_SHOWNORMAL)

I use this alot, but it doesn't work 100% of the time.

Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...