View Issue Details

IDProjectCategoryView StatusLast Update
0001564JEDI VCL00 JVCL Componentspublic2004-04-03 01:12
ReporteranonymousAssigned Touser72 
PrioritynormalSeveritymajorReproducibilityalways
Status resolvedResolutionfixed 
Product Version 
Target VersionFixed in Version 
Summary0001564: JvScrollMax: Anchored components on panel will behave bad
DescriptionReproduction:

Place a maxpanel on a form. Place a button on the maxpanel. Achor the button to the right side. Set the maxpanel to align to the form. When starting, resize the form before showing it. When you show it, you will find that the button did not move with the right side. After it's visible, all will work ok.

This problem is commonly encountered when dealing with maxpanels and pagecontrols.

This is because the width is set to 0 before it's visible. If it remembers the design width, you will have no problems with this. Here is the fix:

on TJvScrollMaxBand = class(TJvCustomControl) change

  property Width stored False;
  property Height stored False;

to
  
  property Width;
  property Height;
TagsNo tags attached.

Activities

user72

2004-04-03 01:12

  ~0003622

Fixed in CVS. Thanks.

Issue History

Date Modified Username Field Change
2004-04-02 14:17 anonymous New Issue
2004-04-03 01:12 user72 Status new => resolved
2004-04-03 01:12 user72 Resolution open => fixed
2004-04-03 01:12 user72 Assigned To => user72
2004-04-03 01:12 user72 Note Added: 0003622