Hello, guys. I wanted to place a CheckedListBox on one of the installer pages. Since there is no macro for this purpose, I tried to use the Windows API. I made the following command:
System::Call "user32::CreateWindow(i WC_LISTVIEW, t 'blub', i WS_CHILD | i LVS_REPORT | i LVS_EDITLABELS | i WS_VISIBLE, i 0, i 0, i 50, i 15, i $HWNDPARENT, i (HMENU)ID_LISTVIEW, i hInst, *i 0) i .s"
That corresponds to http://msdn.microsoft.com/en-us/library/ms632679(VS.85).aspx specification of the CreateWindow command. But the control element does not appear on my installer page
( What could be wrong???
BR
Ewgenij
System::Call "user32::CreateWindow(i WC_LISTVIEW, t 'blub', i WS_CHILD | i LVS_REPORT | i LVS_EDITLABELS | i WS_VISIBLE, i 0, i 0, i 50, i 15, i $HWNDPARENT, i (HMENU)ID_LISTVIEW, i hInst, *i 0) i .s"
That corresponds to http://msdn.microsoft.com/en-us/library/ms632679(VS.85).aspx specification of the CreateWindow command. But the control element does not appear on my installer page

BR
Ewgenij
Comment