Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
How to create hidden list box? JAYARAJ
m_ListBox.ShowWindow(0);
When you create it make sure the WS_VISIBLE style is not set. Steve
WS_VISIBLE
WhiteSky wrote: ShowWindow(0);
WhiteSky wrote:
ShowWindow(0);
prefer using the defined consts: ShowWindow(**SW_HIDE**); it's a question a readability and maintainability... ;) -- modified at 8:16 Monday 6th March, 2006
ShowWindow(**SW_HIDE**);
ShowWindow(GetDlgItem(hdlg,IDC_LIST1),SW_HIDE); gabby