Forum Replies Created

Viewing post 61 (of 61 total)

  • RE: Input Mask?

    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,...

Viewing post 61 (of 61 total)