Hi all,
I had a form which consisted of a single page (one 'tab') and now I've added multiple pages. I now get an error for the following code:
intCurrentLevel = Me![Current Level]
This line of code assigns the value of 'Current Level' to the variable intCurrentLevel.
I think the problem is with the use if "Me!", and now that I have muktiple pages, it doesn't know what Me! is... Am I correct? If so, What is the proper syntax?
I've tried this syntax, but it didn't work either:
intCurrentLevel = FormName.PageName.[Current Level]
I had a form which consisted of a single page (one 'tab') and now I've added multiple pages. I now get an error for the following code:
intCurrentLevel = Me![Current Level]
This line of code assigns the value of 'Current Level' to the variable intCurrentLevel.
I think the problem is with the use if "Me!", and now that I have muktiple pages, it doesn't know what Me! is... Am I correct? If so, What is the proper syntax?
I've tried this syntax, but it didn't work either:
intCurrentLevel = FormName.PageName.[Current Level]