copy string

S

Souris

I would like to copy first 255 characters of string to strNewString

Are there any functions to copy the first 255 characters in to my string?

Your infroamtion is great apprecaietd,
 
T

Tom Lake

Souris said:
I would like to copy first 255 characters of string to strNewString

Are there any functions to copy the first 255 characters in to my string?

strNewSting = Left(string, 255)

Tom Lake
 
Top