If the answer to my last question is Yes, and if you're running Access 2000
or later, xomething like this will do it:
Dim OriginalString, StrippedString As String
StrippedString = Replace(OriginalString, "box", "")
Me.FirstNumber = Left(StrippedString, InStr(StrippedString, ",") - 1)
Me.SecondNumber = Right(StrippedString, Len(StrippedString) - (InStr
(StrippedString, ",")))
Linq
--
There's ALWAYS more than one way to skin a cat!
Answers/posts based on Access 2000/2003
Message posted via
http://www.accessmonster.com