DaGbyte Posted June 16, 2015 Posted June 16, 2015 I get an error with the following code, but oddly enough, only when I have installed SciTE4AutoIt3.exe. If I uninstall it, it works fine. Here's the snippet of code:$oMessage = ObjCreate("CDO.Message") With $oMessage .Subject = """" & $EmailSubject & """" .From = "anyone@gmail.com" .To = "anyone@gmail.com" .TextBody = """" & $EmailBody & """" .Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2 .Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserver") = $SMTPServer .Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = $cdoBasic .Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendusername") = $SMTPLogon .Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendpassword") = $SMTPPassword .Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = $SMTPPort .Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpusessl") = $SMTPSSL .Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout") = 60 .Configuration.Fields.Update .Send EndWith the error I get when try to run it is "error: missing separator character before keyword." and the carat is at the T in .To.If I uninstall version 14.04.05.11 of SciTE4Autoit3 it compiles just fine. Any ideas on this one?
water Posted June 16, 2015 Posted June 16, 2015 That's a bug in Au3Check and is described here My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
Developers Jos Posted June 16, 2015 Developers Posted June 16, 2015 Replace your au3check with the current beta version as it has a bug in it and reported many times..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.
Lobico Posted August 24, 2015 Posted August 24, 2015 Sorry Jos but I don't find the au3check in beta version files
water Posted August 24, 2015 Posted August 24, 2015 Search the forum for this error and you will find a lot of links to the download URL. My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
Developers Jos Posted August 24, 2015 Developers Posted August 24, 2015 Since then a new production version has come out and should work fine now.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