I was told to use this but I'm not sure how do I put this in the afterupdate
of the form properties . and is the control name the name of the subform??
Private Sub YourControlName_AfterUpdate()
Me.YourControlName.DefaultValue = """" & Me.YourControlName.Value & """"
End Sub
"June7" wrote:
>
> Try something like:
> DoCmd.RunCommand acCmdRecordsGoToPrevious
> varData = fieldname
> DoCmd.RunCommand acCmdRecordsGoToNext
> fieldname = varData
>
>
> --
> June7
> ------------------------------------------------------------------------
> June7's Profile: http://www.thecodecage.com/forumz/member.php?userid=784
> View this thread: http://www.thecodecage.com/forumz/sh...d.php?t=129660
>
>