An application sends the CB_INITSTORAGE message before adding a large number of items to the list box portion of a combo box. This message allocates memory for storing list box items.
CB_INITSTORAGE wParam = (WPARAM) (int) cItems; // number of items to add lParam = (LPARAM) (DWORD) cb; // amount of memory to allocate, in bytes
If the message is successful, the return value is the maximum number of items that the memory object can store.
If the message fails, the return value is CB_ERR.
Windows 95: This message helps speed up the initialization of combo boxes that have a large number of items (over 100). It reserves the specified amount of memory so that subsequent CB_ADDSTRING, CB_INSERTSTRING, and CB_DIR messages take the shortest possible time. You can use estimates for the cItems and cb parameters. If you overestimate, the extra memory is allocated, if you underestimate, the normal allocation is used for items that exceed the requested amount.
Windows NT: This message is not needed on Windows NT. It does not reserve the specified amount of memory, because available memory is virtually unlimited. The return value is always the value specified in the cItems parameter.
CB_ADDSTRING, CB_DIR, CB_INSERTSTRING
file: /Techref/os/win/api/win32/mess/src/msg01_28.htm, 2KB, , updated: 2000/4/7 11:19, local time: 2024/11/8 09:46,
18.223.172.180:LOG IN ©2024 PLEASE DON'T RIP! THIS SITE CLOSES OCT 28, 2024 SO LONG AND THANKS FOR ALL THE FISH!
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://linistepper.com/techref/os/win/api/win32/mess/src/msg01_28.htm"> CB_INITSTORAGE</A> |
Did you find what you needed? |