irgendwie hat er wirklich ne andere Datei genommen.
so funkt es:
Delphi-Quellcode:
public
DatPreFix: String;
//FormCreate
DatPreFix:=IncludeTrailingPathDelimiter(ExtractFilePath(Application.ExeName));
//Load (leicht modifiziert ;-) )
procedure TForm_Settings.VLELoad;
//VLE Laden
begin
try
VLEClear;
VLE_Caps_Apps.Strings.LoadFromFile(Form_Main.DatPrefix+cCAP_APP);
except
ShowMessage('Datei '+cCAP_APP+' wurde nicht gefunden.');
end;
end;