Raestlin Posted August 29, 2006 Posted August 29, 2006 I have built a utility that needs the ability to run a file from a listview. I have everything running except the last piece. How do I get windows to recognize a filename (extension) and open whatever program is needed? For example, the following will not work: Run('Fitting 50179 compress union.xls', 'w:\qc\Danco QIR\Compression fittings QIR') and Run('w:\qc\Danco QIR\Compression fittings QIR\Fitting 50179 compress union.xls') How can I get AutoIT to recognize the extension and open excel, word, etc? ~ Chris
Moderators SmOke_N Posted August 29, 2006 Moderators Posted August 29, 2006 Run(@Comspec & ' /c "' & $File_Path_Name & '" ' & $Parameters, '', @SW_HIDE) 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.
Raestlin Posted August 29, 2006 Author Posted August 29, 2006 Run(@Comspec & ' /c "' & $File_Path_Name & '" ' & $Parameters, '', @SW_HIDE) Thank you!!! It works perfect now! :-)
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now