Once you find the window for the edit control you are looking for, how do you read the text in it character by character? I do not want to read it into a buffer since the text changes rapidly and I have to stream it all. With the buffer, I would have to wait until the total number of characters are found. This is what I have now:
Code:
SendMessage(hwnd, WM_GETTEXT, 80, ((LPARAM) message));