View Issue Details

IDProjectCategoryView StatusLast Update
0003427JEDI VCL00 JVCL Componentspublic2006-04-05 01:23
ReportermrieppAssigned Toobones 
PrioritynormalSeverityminorReproducibilityalways
Status resolvedResolutionfixed 
Product Version3.10 
Target VersionFixed in Version3.30 
Summary0003427: TJvDesignSelector: Selecting 2 or more Components on the Designpanel are not available
DescriptionTJvDesignSelector:
Selecting 2 or more Components on the Designpanel are not available

To Resolve this problem change the sourcecode in
TJvDesignImp.pas

function TJvDesignSelector.FindHandles(AValue: TControl):
TJvDesignHandles;
var
  I: Integer;
begin
  Result := nil;
  for I := 0 to Count - 1 do
  begin
    Result := Handles[I];
    if Result.Selected = AValue then

    // Bug-Fix Start
    // Old : Break;

      Break else Result:=nil;

    // Buf-Fix End
  end;
end;

TagsNo tags attached.

Activities

obones

2006-04-04 07:14

administrator   ~0008894

Thanks, this is now ready to be put in CVS and will be as soon as it is back online

obones

2006-04-05 01:23

administrator   ~0008945

This is now in CVS

Issue History

Date Modified Username Field Change
2006-01-08 22:43 mriepp New Issue
2006-04-04 07:14 obones Note Added: 0008894
2006-04-04 07:14 obones Status new => confirmed
2006-04-05 01:23 obones Status confirmed => resolved
2006-04-05 01:23 obones Resolution open => fixed
2006-04-05 01:23 obones Assigned To => obones
2006-04-05 01:23 obones Note Added: 0008945