Public Function ReturnToHere(Ret as MarkState)
Static ThisSpot as Variant
Select Case Ret
Case MarkState = 1
ThisSpot = Me.Bookmark
Case MarkState = 2
Me.Bookmark = ThisSpot
End Select
End Function
---
and with that, I can avoid the user losing his/her spot on the form (b/c as you all know, users are unpredictable beasts)
hopefully no more geekposts
Select Case Ret
Case MarkState = 1
ThisSpot = Me.Bookmark
Case MarkState = 2
Me.Bookmark = ThisSpot
End Select
End Function
---
and with that, I can avoid the user losing his/her spot on the form (b/c as you all know, users are unpredictable beasts)
hopefully no more geekposts
0 Comments:
Post a Comment
<< Home