Hello. I have written a public function as follows:
Public Function FullName() As String
FullName = FirstName & " " & LastName
End Function
The function is contained in a module.
When I try to call this function to use on a form, I get an error message "variable not defined"...