View Single Post
  #6 (permalink)  
Old 02-21-05, 13:01
DavidCoutts DavidCoutts is offline
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
Reply With Quote