OnDropDown / OnCloseUp not work

Moderator: Rathinagiri

Post Reply
Rossine
Posts: 87
Joined: Thu Jun 30, 2011 10:04 pm

OnDropDown / OnCloseUp not work

Post by Rossine »

Hello,

I could not use these methods in hmg.4. They are already implemented ?

Code: Select all


       DEFINE COMBOBOX oCombo1
          Row      40
          Col      10
          Width    100
          Items    { "E - Item 1", "D - Item 2", "C - Item 3", "B - Item 4", "A - Item 5" }
          Value    3
          OnDropDown { || msgstop( "opening list" ) }
          OnCloseUp  { || msgstop( "closing list" ) }
       END COMBOBOX

Regards,

Rossine.
Ricci
Posts: 255
Joined: Thu Nov 19, 2009 2:23 pm

Re: OnDropDown / OnCloseUp not work

Post by Ricci »

Looking in Qt´s QComboBox() I find no HMG3 compatible signals. So you can forget these old commands.

OnDropDown is now reserved for the drag and drop future.
Post Reply