View Issue Details

IDProjectCategoryView StatusLast Update
0002458JEDI VCL00 JVCL Componentspublic2005-01-03 05:01
ReportermusictronicsAssigned To 
PrioritynormalSeverityminorReproducibilityalways
Status resolvedResolutionfixed 
Product Version 
Target VersionFixed in Version3.00 RC 1 
Summary0002458: Bug in JvEdit
DescriptionWhen editing text in a JvEdit component the caret always jumps to the end of the text after one keystroke. The problem seems to be with the following line:
"SelStart := Length(Text);" in procedure TJvCustomEdit.Change; in JvEdit.pas
Commenting out the line gets rid of the problem.
TagsNo tags attached.

Activities

AHUser

2005-01-03 05:01

developer   ~0006065

Fixed in CVS.
Because the SelStart property is changed by "Text := " it has not worked.

Replaced by:

Sel := SelStart;
Text := St;
SelStart := Min(Sel, Length(St));

Issue History

Date Modified Username Field Change
2005-01-02 20:36 musictronics New Issue
2005-01-03 05:01 AHUser Status new => resolved
2005-01-03 05:01 AHUser Resolution open => fixed
2005-01-03 05:01 AHUser Assigned To => AHUser
2005-01-03 05:01 AHUser Note Added: 0006065
2005-01-03 05:01 AHUser Assigned To AHUser =>