"Jack" <[EMAIL PROTECTED]> wrote

> Suppose I have a data buffer, and I'd like to copy
> byte 10 to 20 of the data buffer to a string. What
> is the best way to do it?

I would use

SetLength (s, 11);
Move (Buf[10], s[1], 11);

<UNTESTED>

Henry Bartlett



_______________________________________________
Delphi mailing list -> [email protected]
http://www.elists.org/mailman/listinfo/delphi

Reply via email to