View Issue Details

IDProjectCategoryView StatusLast Update
0001457JEDI VCL00 JVCL Componentspublic2004-04-22 02:55
ReporteranonymousAssigned Touser72 
PrioritynormalSeverityblockReproducibilityalways
Status closedResolutionfixed 
Product Version 
Target VersionFixed in Version 
Summary0001457: setting GridSize at 1 of TJvSimScope at creating block totally delphi
DescriptionIf I paste TJvSimScope component on delphi tform and i change GridSize with value 1 (or 0, or negative value) and valid, delphi block totally and systematically (and crash), and i need to kill delphi in process list because unable to escape freezing delphi appli !!! very big bug problematic !!!!!

Nanotonne.
Additional Informationi use jvcl3, delphi 6 pro patched on win2000pro
TagsNo tags attached.

Activities

user72

2004-03-09 15:48

  ~0003291

Change SetGridSize to:

procedure TJvSimScope.SetGridSize(Value: Integer);
begin
  if (FGridSize <> Value) and (Value > 0) then
  begin
    FGridSize := Value;
    UpdateDisplay(True);
  end;
end;

GridSize must always be > 0

Issue History

Date Modified Username Field Change
2004-03-09 14:18 anonymous New Issue
2004-03-09 15:48 user72 Note Added: 0003291
2004-03-09 15:57 user72 Status new => resolved
2004-03-09 15:57 user72 Resolution open => fixed
2004-03-09 15:57 user72 Assigned To => user72
2004-04-22 02:55 user72 Status resolved => closed