Hi,
I have an insert statement that i need to refine...basically I need to trim the first couple of letters of whats trapped inthe field.
so e.g.
Z:\aaa\1.jpg
needs to become
aaa\1.jpg
Im tried this but its not working
sImagelink = mid(request.form("Imagelink"),4,len(request.form("Imagelink")))
any ideas?