giorg70 Posted July 26, 2006 Posted July 26, 2006 I need to launch this command line with the command Run: blat d:\message\outFW.txt -subject "Syslog message" -to xxxx@xxxx.org What kind of format i need to use?
GaryFrost Posted July 26, 2006 Posted July 26, 2006 I need to launch this command line with the command Run: blat d:\message\outFW.txt -subject "Syslog message" -to xxxx@xxxx.org What kind of format i need to use? try something like Run('blat d:\message\outFW.txt -subject "Syslog message" -to xxxx@xxxx.org') SciTE for AutoItDirections for Submitting Standard UDFs Don't argue with an idiot; people watching may not be able to tell the difference.
giorg70 Posted July 26, 2006 Author Posted July 26, 2006 (edited) The filename is a variable. I need to use: Run('blat ' & $filename & ' -subject "Syslog message" -to xxxx@xxxx.org') Edited July 26, 2006 by giorg70
GaryFrost Posted July 26, 2006 Posted July 26, 2006 The filename is a variable. I need to use: Run('blat ' $filename & ' -subject "Syslog message" -to xxxx@xxxx.org') Run('blat ' & $filename & ' -subject "Syslog message" -to xxxx@xxxx.org') SciTE for AutoItDirections for Submitting Standard UDFs Don't argue with an idiot; people watching may not be able to tell the difference.
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