G
Guest
Hello,
Can someone demonstrate how to send a value from a sub procedure to a
function procedure if you have the following:
Private Function BDate_BeforeUpdate(bd As Integer)
Debug.Print bd
End Function
Private Sub AnyDate_AfterUpdate()
Dim ad As Integer
ad = BDate(Me.AnyDate.Value)
Me.Birthdates = Null
End Sub
I keep getting error messages when trying to run the above procedures.
-Sky
Can someone demonstrate how to send a value from a sub procedure to a
function procedure if you have the following:
Private Function BDate_BeforeUpdate(bd As Integer)
Debug.Print bd
End Function
Private Sub AnyDate_AfterUpdate()
Dim ad As Integer
ad = BDate(Me.AnyDate.Value)
Me.Birthdates = Null
End Sub
I keep getting error messages when trying to run the above procedures.
-Sky