Rouge Posted May 7, 2009 Posted May 7, 2009 Hi newbie want to create script to open browser and after that , open this variable in excel. He ask for the file, but never open in excel. #include <GDIPlus.au3> Opt("MustDeclareVars", 1) Global $excel ; Get BMP file to convert $excel = InputBox("CVS to XLS", "Entrer le nom du cvs:", @MyDocumentsDir & "\Image.csv", "", 400, 130) if @Error or not FileExists($excel) then Exit run ("C:\Program Files\Microsoft Office\Office12\EXCEL.EXE" & $excel)
Developers Jos Posted May 7, 2009 Developers Posted May 7, 2009 try: run ('"C:\Program Files\Microsoft Office\Office12\EXCEL.EXE" "' & $excel & '"') or use shellexecute() SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
Rouge Posted May 7, 2009 Author Posted May 7, 2009 wow, perfect. with this code, i need to write my path manually, do you know how to have a browser ??
Developers Jos Posted May 7, 2009 Developers Posted May 7, 2009 FileOpenDialog() ? SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
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