SlowCoder74 Posted July 16, 2015 Posted July 16, 2015 (edited) Doesn't look like there's a lot of info on the board for this, so ...Here's my code snippet:$sEmailFrom = "myemail@here.com" $sEmailTo = "goingto@somewhereelse.com" $sEmailSubject = "test" Local $oEmail = ObjCreate("CDO.Message") With $oEmail .From = $sEmailFrom .To = $sEmailTo .Subject = $sEmailSubject EndWithFor some reason, it results in "error: missing separator character before keyword" on the ".To = " line. This code was successfully compiling last August, and I haven't touched it since. I am currently using 3.3.12. Edited July 16, 2015 by SlowCoder74
Developers Jos Posted July 16, 2015 Developers Posted July 16, 2015 There actually is quite a lot of info on this particular issue as it is a bug in au3check which is solved in the current production version. Jos 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