Unless things have changed in your version of RB, or this If statement is in a loop, Exit is used to exit loops, not to stop a process from occurring in an If statement.
> If gblnVariable = false then > exit > end if Use Return instead, if this isn't inside a loop: If gblnVariable = false then Return _______________________________________________ Unsubscribe or switch delivery mode: <http://www.realsoftware.com/support/listmanager/> Search the archives of this list here: <http://support.realsoftware.com/listarchives/lists.html>
