View Issue Details

IDProjectCategoryView StatusLast Update
0002965JEDI VCL00 JVCL Componentspublic2005-08-09 03:16
ReporterarturroAssigned Toobones 
PrioritynormalSeverityminorReproducibilityalways
Status resolvedResolutionfixed 
Product Version3.00 
Target VersionFixed in Version3.10 
Summary0002965: TJvImageListBox - event onClick has happend twice
DescriptionWhen I click on any item in JvImageListBox, event onClick has happend twice.
TagsNo tags attached.

Activities

obones

2005-05-19 06:26

administrator   ~0007240

Confirmed with D7

anonymous

2005-05-30 08:50

viewer   ~0007366

When do you plan to fix it?

obones

2005-06-01 05:46

administrator   ~0007374

I haven't looked at fixing it, I merely confirmed it.
Someone will eventually do so, but time is always the issue.

anonymous

2005-07-22 13:46

viewer   ~0007593

Commenting out the call to "click" appears to correct this.
Not real sure of what other side-effects this might have.

JvListComb.pas

{$IFDEF VCL}
procedure TJvImageListBox.CNCommand(var Msg: TWMCommand);
begin
  inherited;
  case Msg.NotifyCode of
    LBN_SELCHANGE:
      begin
        inherited Changed;
      // Click; commented this out {EdB}
      end;
  end;
end;
{$ENDIF VCL}

obones

2005-08-09 03:16

administrator   ~0007703

This is now fixed in CVS, the entire CNCommand code was removed, the base class in the regular VCL was already doing all of it.

Issue History

Date Modified Username Field Change
2005-05-19 04:53 arturro New Issue
2005-05-19 06:26 obones Note Added: 0007240
2005-05-19 06:26 obones Status new => confirmed
2005-05-30 08:50 anonymous Note Added: 0007366
2005-06-01 05:46 obones Note Added: 0007374
2005-07-22 13:46 anonymous Note Added: 0007593
2005-08-09 03:16 obones Status confirmed => resolved
2005-08-09 03:16 obones Resolution open => fixed
2005-08-09 03:16 obones Assigned To => obones
2005-08-09 03:16 obones Note Added: 0007703