Hallo,
natürlich geht es auch mit den Jedis:
Delphi-Quellcode:
procedure TDemoForm.Button2Click(Sender: TObject);
begin
with TagV2 do
begin
Open;
EnsureExists([fiTrackNum, fiAlbum, fiBand, fiTitle]);
Texts.TrackNum := formatFloat('000', 1);
Texts.Album := 'the album';
Texts.Band := 'the interpret';
Texts.Title := 'the title';
Commit;
Close
end;
end;
Freundliche Grüße