M
mark kubicki
I'd like to move lines of code to a subroutine which are currently on the
form and execute the methods of "me."
' ...code
Me.Acc = ""
Me.Trim = ""
If Len(Me.basedescription.Value) <> 0 Then
'move the next line into a subroutine named ClearBaseDescription()
Me.basedescription = "" 'abbreviated code for brevity
End If
' ...code
as I've never done this within the "me." context, I'm having a bit of naive
difficulty... what should I be passing to the routine
....ClearBaseDescription (me.) ?
thanks in advance,
mark
form and execute the methods of "me."
' ...code
Me.Acc = ""
Me.Trim = ""
If Len(Me.basedescription.Value) <> 0 Then
'move the next line into a subroutine named ClearBaseDescription()
Me.basedescription = "" 'abbreviated code for brevity
End If
' ...code
as I've never done this within the "me." context, I'm having a bit of naive
difficulty... what should I be passing to the routine
....ClearBaseDescription (me.) ?
thanks in advance,
mark