| lectricpharaoh |
Jul 6th, 2007 2:59 AM |
Quote:
Originally Posted by PatBenetar4Life
(Post 130105)
if (add = 1) Then
(my other lines of code)
whenever i try to run it it says: "BASIC Compile halted: END IF expected"
If anyone knows this language please help
|
First, welcome to the forum (you might want to make an intro thread before you start asking questions; then it will look more like you want to be a part of the community here). Second, if you're referring to the 'Hit Me With Your Best Shot' singer, it's Benatar, not Benetar. Third, when the error message tells you exactly what you're missing, adding in that missing something is a good place to start:
:
if (add = 1) Then
(your other lines of code)
End If
Fourth, when posting code excerpts, try to use [code] tags, like I did above. It makes your code a lot easier to follow. Highlight what you want to put in a code block, and then click the little '#' button in the editor. Here it is, circled in red to make it obvious: http://members.shaw.ca/r.sheppard/temp/codeTags.png
|