I am trying to make a chat application that will post a message into a memo in the form like this: USERNAME-> Message
but it is posting to my memo like this: USERNAME
Here is my code:
const
cnMaxUserNameLen = 254;
var
sUserName: string;
dwUserNameLen: DWORD;
text : string;
begin
dwUserNameLen := cnMaxUserNameLen - 1;
SetLength(sUserName, cnMaxUserNameLen);
GetUserName(PChar(sUserName), dwUserNameLen);
SetLength(sUserName, dwUserNameLen);
text:= sUserName + '-> ' + edit1.Text;
memo1.Lines.Add(text);
any suggestions on how to fix it?
thanks for any help.
GetUserNamethe first time and saving the result, since it won't change during the run of this program. Then you save the overhead of repeated calls toSetLength,GetUserNameandSetLengthagain; they're only called once. – Ken White Nov 21 '11 at 21:26[fish]:-) – user539484 Nov 24 '11 at 15:16