News:

MASM32 SDK Description, downloads and other helpful links
MASM32.com New Forum Link
masmforum WebSite

Combobox

Started by ragdog, August 07, 2011, 05:36:25 PM

Previous topic - Next topic

ragdog

Hi

I found a mistake in my App  ,i have a combox (dopdownlist) and add more as 30 entry´s
with CB_ADDSTRING but this combobox print me not more as 30 entry´s

Gives for it a solution?

ToutEnMasm


With a little piece of code,this surely can be done.

Tedd

A combobox can handle many more entries - the problem is in your code.
We might be able to help if we could actually see it.
No snowflake in an avalanche feels responsible.

Tedd

Add WS_VSCROLL to your COMBOBOX style :wink

At most, 30 items are shown; so the rest need to be scrolled (they are still there, you just don't see them) - this can be done with the arrow keys, or adding a scrollbar.
No snowflake in an avalanche feels responsible.