VBScript Expected End 800A03F6 - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T16:44:30Z http://stackoverflow.com/feeds/question/1029216 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1029216/vbscript-expected-end-800a03f6 0 VBScript Expected End 800A03F6 GavinR 2009-06-22T20:23:18Z 2009-06-23T13:40:30Z <p>I am getting this error while trying to run a VBScript (note this is not in a web environment - just running a VBScript on Windows):</p> <pre><code>Line: [Last line] Error: Expected 'End' Code: 800A03F4 Source: Microsoft VBScript compilation error </code></pre> <p>I think it is an If statement that is not closed correctly with an "End If," but I've gone through every instance of "If" in the code and cannot find the error. Any tips or tools that could help me figure out where/why this error is occurring?</p> http://stackoverflow.com/questions/1029216/vbscript-expected-end-800a03f6/1029300#1029300 2 Answer by C. Ross for VBScript Expected End 800A03F6 C. Ross 2009-06-22T20:45:41Z 2009-06-22T20:45:41Z <p>In VBScript If is not the only token that requires an End. Also look for <strong>Function</strong>'s and <strong>Sub</strong>'s without their appropriate end statements.</p> http://stackoverflow.com/questions/1029216/vbscript-expected-end-800a03f6/1032644#1032644 0 Answer by GavinR for VBScript Expected End 800A03F6 GavinR 2009-06-23T13:40:30Z 2009-06-23T13:40:30Z <p>There was an "Else If" - there should be no space there: "Elseif"</p> <p><a href="http://www.w3schools.com/VBScript/vbscript%5Fconditionals.asp" rel="nofollow">http://www.w3schools.com/VBScript/vbscript_conditionals.asp</a></p> <p>Hopefully this will help someone out in the future.</p>