Search results

  1. stackoverflow.com/.../17254180/issues-​with-lb-getcursel   Cached
    Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
  2. www.experts-exchange.com/Programming/​Languages/CPP/Q...
    The gui is my problem! ... LB_GETCURSEL, item, (LPARAM) 0); it should be SendMessage(..., LB_GETCURSEL, 0, (LPARAM) 0); (check win32 reference) > char buffer[10];
  3. vbonline.8m.com/oldapi/ref/l/lb_​getcursel.html
    Information about the LB_GETCURSEL message in the Windows API, geared towards the Visual Basic user.
  4. social.msdn.microsoft.com/Forums/sr-​Latn-CS/windowssdk/...   Cached
    Microsoft Developer Network Sign in. United States (English)
  5. social.msdn.microsoft.com/Forums/en-NZ/​windowssdk/thread/...   Cached
    Dev Center - Desktop > Windows Desktop Development Forums >
  6. msdn.microsoft.com/en-us/library/​windows/desktop/hh404152   Cached
    SendMessage(hwnd, LB_GETTEXT, SendMessage(hwnd, LB_GETCURSEL, 0, 0), (LPARAM) achTemp); // TODO: Do something with ...
  7. www.programmersheaven.com/mb/CandCPP/​134950/134950/how...   Cached
    Study all LB_xxx messages - you will find LB_GETCURSEL for single selection list boxes. ... The problem with this is that it is getting a buttondown, ...
  8. www.cplusplus.com/forum/windows/72170   Cached
    ... use SendMessage() to issue a LB_GETCURSEL message. The return value is the index number you are looking for. Read more about it @ ...
  9. stackoverflow.com/questions/1178882/​problem-with-wh...   Cached
    Dunno why LB_GETCURSEL and LB_GETTEXT aren't working though ... Problem - TCHAR as LPARAM to a window that belongs to another process/thread. 5. Keyboard Hook ...
  10. www.bitonwire.com/csharp-forum/problem-​using-sendmessage...   Cached
    > I am using SendMessage(hListBox, LB_GETCURSEL, IntPtr.Zero, > IntPtr.Zero) to get the current selected item from this ListBox. This ... I have a wee problem.