How do I accomplish the following?
If Trim(mARMasterScreen) <> "" Then
mScreen = "Forms![" & mARMasterScreen & "].SetFocus"
Eval (mScreen)
' The contents of the memvar = Forms!["Sales"].SetFocus
Else
Forms![Main Tabs]![AR Customer Listing].SetFocus
End If
I just want to set the focus to Forms![Sales]. What am I doing wrong?
Steve G.
If Trim(mARMasterScreen) <> "" Then
mScreen = "Forms![" & mARMasterScreen & "].SetFocus"
Eval (mScreen)
' The contents of the memvar = Forms!["Sales"].SetFocus
Else
Forms![Main Tabs]![AR Customer Listing].SetFocus
End If
I just want to set the focus to Forms![Sales]. What am I doing wrong?
Steve G.