View Issue Details

IDProjectCategoryView StatusLast Update
0001692JEDI VCL00 JVCL Componentspublic2004-04-24 05:04
Reportermiracle2kAssigned Touser72 
PrioritynormalSeveritytweakReproducibilityalways
Status resolvedResolutionfixed 
Product Version 
Target VersionFixed in Version 
Summary0001692: JvDocking: Wrong caption of TTabDockHost panel
Description* Run MSDN Demo
* Dock two forms on the right above each other, so that a TabDockHost is created.
* Select the first(!) tab
* Close MSDN demo
* Run MSDN demo again
=> the caption of the TabDockHost form is labeled incorrectly (caption of the inactive tab instead of the active one)

can be fixed by a call to Change(); in procedure TJvDockTabPageControl.LoadFromStream():

procedure TJvDockTabPageControl.LoadFromStream(Stream: TStream);
....
    Stream.Read(ActiveSheetIndex, SizeOf(ActiveSheetIndex));
    ActivePageIndex := ActiveSheetIndex;
    Change(); // <== inserted, line 3822
  finally
....

**********
Another issue (it's so minor I do not want to open an extra tracker item: I always get the following warning from the compiler, which is a bit annoying:

Value assigned to MemFile never used (JvDockControlForm.pas, 1504)
TagsNo tags attached.

Activities

user72

2004-04-24 05:04

  ~0004053

Fixed in CVS. Thanks.

Issue History

Date Modified Username Field Change
2004-04-24 01:30 miracle2k New Issue
2004-04-24 05:04 user72 Status new => resolved
2004-04-24 05:04 user72 Resolution open => fixed
2004-04-24 05:04 user72 Assigned To => user72
2004-04-24 05:04 user72 Note Added: 0004053