I have a listbox with a few items in it. I am responding to the WM_LBUTTONDBLCLK on the item and I want to get the text of the item. I am a total beginner with Win32 programming. Will the function SendMessage and passing it WM_GETTEXT solve my problem?
I figured it out. I had to do the following.
invoke SendMessage, hWnd, LB_GETCURSEL, 0, 0
mov sel_item, eax
invoke SendMessage, hWnd, LB_GETTEXT, sel_item, ADDR sel_text
You should have a look at the Icz' Tutorials or in the examples with Masm32V6.
Vom-bonjour:-()
You should have a look at the Icz' Tutorials or in the examples with Masm32V6.
Vom-bonjour:-()