Registriert seit: 1. Feb 2018
3.691 Beiträge
Delphi 11 Alexandria
|
AW: EditCaption - markieren ohne Extension
18. Jul 2023, 23:19
Hilft Dir das vielleicht weiter?
Delphi-Quellcode:
procedure TFormXYZ.ListView1Editing(Sender: TObject; Item: TListItem;
var AllowEdit: Boolean);
var
name, ext, new: string;
begin
ext := ExtractFileExt(Item.Caption);
name := Copy(Item.Caption, 1, Length(Item.Caption) - Length(Ext));
new := InputBox('Edit name...', 'Modify', name);
Item.Caption := new + ext;
AllowEdit := False;
end;
|