Jump to content

Want to run an non executable file?


hankjrfan
 Share

Recommended Posts

This function should open a file in its default program. Warning the file must be associated with a program for this to have the desired result. This is an idea I got after reading this topic by Felix N. RunFile

Hope someone finds it usefull.

Func _RunFile($file)
    If Not FileExists($file) Then Return 0
    Return Run(@ComSpec & " /c " & "start " & FileGetShortName($file),"",@SW_HIDE)
EndFunc

LOL B) just realized that I put "an non executable" instead on "a non executable" on the title. :o

Edited by hankjrfan
Link to comment
Share on other sites

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...