Hi again
Looks like there's a spare closing parenthesis in the above template in the "One to One" section which results in code like the following:
Code:
Get
If Me._UpToPerson Is Nothing _
AndAlso Not PersonID.Equals(Nothing) _)
Again, fix is easy enough - line 338 needs changing from:
Code:
{%> AndAlso Not
)%>.Equals(Nothing) _)
To:
Code:
{%> AndAlso Not
)%>.Equals(Nothing) Then
Cheers
Martin