I am trying to extract content from a external application made in visual basic 6 using c#. I use SendMessage function and others from user32.dll. I can read from textboxes, buttons, etc but the problem comes when I try to read information from labels controls. I have read that labels in visual basic 6 have not Windows Handle (hWnd), so I can't send a WM_GETTEXT message to the control.
I would know if exists any method to read the caption property of these labels objects?