View Issue Details

IDProjectCategoryView StatusLast Update
0001575JEDI VCL00 JVCL Componentspublic2004-04-04 05:05
ReporteranonymousAssigned Touser72 
PrioritynormalSeverityminorReproducibilityalways
Status resolvedResolutionfixed 
Product Version 
Target VersionFixed in Version 
Summary0001575: TJvProgressForm.Execute raise a conversion error
DescriptionAfter calling TJvProgressForm.Execute a conversion error EInvalidCase raised. After looking at source file, i figure out, that in execution method following bug exists:

if not Assigned(FForm) then
    FForm := TJvProgressFormForm.CreateNew(Owner);

This must be changed to:

  if not Assigned(FForm) then
    FForm := TJvProgressFormForm.CreateNew(Self);

After this, the component works expected.
TagsNo tags attached.

Activities

user72

2004-04-04 05:05

  ~0003627

Are you using JVCL 2.10? Because this is already fixed in JVCL3. Thanks anyway

Issue History

Date Modified Username Field Change
2004-04-04 00:48 anonymous New Issue
2004-04-04 05:05 user72 Status new => resolved
2004-04-04 05:05 user72 Resolution open => fixed
2004-04-04 05:05 user72 Assigned To => user72
2004-04-04 05:05 user72 Note Added: 0003627