im using
VB Code:
  1. case WM_SIZE:
  2. {
  3. RECT rcClient;
  4. GetClientRect(hwnd, &rcClient);
  5.  
  6. SetWindowPos(hList, NULL, 0, 0, rcClient.right, rcClient.bottom, SWP_NOZORDER);
  7. break;
  8. }

Is this a good way to do it?