View Issue Details

IDProjectCategoryView StatusLast Update
0002885JEDI VCL00 JVCL Componentspublic2005-04-24 02:46
ReporteranonymousAssigned ToAHUser 
PrioritynormalSeverityminorReproducibilityalways
Status resolvedResolutionfixed 
Product Version3.00 
Target VersionFixed in Version3.10 
Summary0002885: TJVMRUManager populates values in incorrect order on initial load
DescriptionIf you use MRU manager to add the most recent file to the top of the list (Insert mode), then when you first populate the data, you must set it to Append Mode before adding data, then set it to Insert mode after adding data.

  mainform.recentFiles.Mode := rmAppend;
  mainForm.recentfiles.strings.text := getStringHKCU( rFileHistory, '' );
  mainform.recentFiles.Mode := rmInsert;

Strings.text should add in the same order as the string given it - ie it should ignore the fMode settings.
TagsNo tags attached.

Activities

AHUser

2005-04-24 02:46

developer   ~0007054

Fixed in CVS. The SetTextStr() method now sets Mode temporary to rmAppend.

Issue History

Date Modified Username Field Change
2005-04-17 06:45 anonymous New Issue
2005-04-24 02:46 AHUser Status new => resolved
2005-04-24 02:46 AHUser Resolution open => fixed
2005-04-24 02:46 AHUser Assigned To => AHUser
2005-04-24 02:46 AHUser Note Added: 0007054