Viewing post 61 (of 61 total)
Private Sub LastName_BeforeUpdate()
Me.LastName = UCase(Left(Me.LastName, 1)) & Mid(Me.LastName, 2)
End Sub
It is better to use the BeforeUpdate event, as this is something you want as part of the actual update,...
February 28, 2006 at 8:55 am
#623716