copy string

  • Thread starter Thread starter Souris
  • Start date Start date
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,
 
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
 
Back
Top