Thread
:
Compile Error: Block IF without END IF
View Single Post
#
6
(
permalink
)
02-21-05, 13:01
DavidCoutts
Registered User
Join Date: Jan 2004
Location: Aberdeen, Scotland
Posts: 1,067
another thing to quickly check is to make sure you dont have anything like this
if test then
with something
end if
end with
or any loops built such etc.
Change them to open and close sequentially i.e.
if test
with something
end with
end if
DavidCoutts
View Public Profile
Find all posts by DavidCoutts