is the record full of string delimted by comma? or are those different fields in the form? are they bound fields or unbound? this all makes a difference. In general though:
to remove the first 4 characters from the left of a string:
Code:
right(string, len(string) - 4)
to display numbers only in a string:
Code:
dim c as control, i as integer, strOut as string
for each c in me.controls
for i = 1 to len(c.value)
if isnumeric(mid(c.value, i, 1)) then
strOut = strOut & mid(c.value, i, 1))
end if
next i
c.value = strOut
next c