Doc Symbiosis Posted February 26, 2006 Posted February 26, 2006 Hi there,while writing an AutoIT Script for Sophos 5, I stumbled across the problem, that I didn't find a way to add two strings. I wanted two have something like this:$savdir = @ProgramFilesDir + "Sophos"but here $savdir gets the value "0".Anyone got an idea?
Acheron Posted February 26, 2006 Posted February 26, 2006 You might try this:$savdir = @ProgramFilesDir & "\Sophos"Notice the backslash
Doc Symbiosis Posted February 26, 2006 Author Posted February 26, 2006 Stupid me. Great thanks for the prompt answer.
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