VBScript Expected End 800A03F6 - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T16:44:30Zhttp://stackoverflow.com/feeds/question/1029216http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1029216/vbscript-expected-end-800a03f60VBScript Expected End 800A03F6GavinR2009-06-22T20:23:18Z2009-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#10293002Answer by C. Ross for VBScript Expected End 800A03F6C. Ross2009-06-22T20:45:41Z2009-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#10326440Answer by GavinR for VBScript Expected End 800A03F6GavinR2009-06-23T13:40:30Z2009-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>