[Win32Lib] ComboBox drop-down doesn't move with window

new topic     » topic index » view thread      » older message » newer message

Below is a demo of a problem I've encountered with combo-boxes:

if I make the list drop-down, & then move the window, the drop-down list
remains where it was instead of moving with the window, though it is still
functional.  Both combos in the demo exhibit the problem, the first is
"auto" drop-downed, the second has the same problem if the user clicks on
the drop-down arrow & then moves the window.

Is this a bug?  What's the best way to fix this?

Dan Moyer

--<code begins>
--  code generated by Win32Lib IDE v0.14.2

include Win32Lib.ew
without warning

----------------------------------------------------------------------------
----
--  Window Window1
constant Window1 = createEx( Window, "Window1", 0, Default, Default, 400,
300, 0, 0 )
constant Combo2 = createEx( Combo, "Combo2", Window1, 44, 64, 148, 420*6, 0,
0 )
constant Combo4 = createEx( Combo, "Combo4", Window1, 208, 64, 148, 20*6, 0,
0 )
---------------------------------------------------------
----------------------------------------------------------------------------
----
object dummy

----------------------------------------------------------------------------
----
procedure Window1_onActivate (integer self, integer event, sequence params)
  for n = 1 to 5 do
   addItem( Combo2, "Item" & sprint(n) )
  end for

    dummy = sendMessage(Combo2, CB_SHOWDROPDOWN, False,0)
  dummy = sendMessage(Combo2, CB_SHOWDROPDOWN, True,0)
    setIndex( Combo2, 1 )

  for n = 1 to 5 do
    addItem( Combo4, "Item" & sprint(n) )

  end for
   setIndex( Combo4, 1 )

end procedure
setHandler( Window1, w32HActivate, routine_id("Window1_onActivate"))


WinMain( Window1,Normal )

new topic     » topic index » view thread      » older message » newer message

Search



Quick Links

User menu

Not signed in.

Misc Menu