Why does that function does not work

Jackske

Registered User.
Local time
Today, 13:55
Joined
Feb 28, 2000
Messages
48
I made first a Table with 1 field 'Name'
I made a form with 1 field and I try to start this function 'on exit'
I was excpecting to seen the value of the fiel in the variable 'Seen'
------------------------------------
Public Function Show_Me(Seen As String)
MsgBox "The result of this function is " _
& Seen, vbOKOnly
End Function

Thanks in advance

Jacske/Antwerp
 
All you need to do is;

Public Function Show_Me(Seen As String)
MsgBox ("The result of this function is " & Seen)
End Function

by default you will only be given the OK button.

Paul.
 

Users who are viewing this thread

Back
Top Bottom