| |
vbwrangler
Posts: 3
Score: 0
Joined: 8/21/2003
From: USA
Status: offline
|
You will need to use the Mid(), InStr(), and the Len() functions putting them together as you would an algebraic expression. Perhaps also Left() and Right(). For example if "strYour" is your string: Mid(strYour, InStr(strYour, "="), InStr(strYour, "/")-1) vbwrangler@yahoo.com MCSD
|
|