Linkmasterfields property setting has provided this error: 'Return

  • Thread starter Thread starter forest8
  • Start date Start date
F

forest8

Hi

I'm currently getting this error message when I open my database:

Linkmasterfields property setting has provided this error: 'Return without
GoSub'

How do I resolve this issue?

This message started after I created a text box which I use to calculate the
age of a student.

Thank you for your help in advance.
 
When you get the error message, click the button on the error dialog. It
will take you back to the procedure where the eror is occuring. You have a
Return statement that does not belong on the routine. Probably you once had
GoSub code to branch to a subroutine. You must have deleted the GoSub but
did not delete its corresponding Return statement.

Steve
(e-mail address removed)
 
Back
Top