I have created a window with an EditBox on it.
I want to create a function that appends the EditBox text with a line of text.
I currently have the following.

PHP Code:
void OutputDebug(char *text)
{
  
SendMessage(hwndEditWM_SETTEXT0
             (
LPARAMtext); 

The above code overwrites what is already in the EditBox.
How do I append it?
Thanks