used mercedes diesel for sale
A Delphi/C++Builder component suite for creating documents in over 20 formats and also export reports from popular Delphi reporting tools. PDFtoolkit VCL. A Delphi/C++Builder component suite to edit, enhance, view, print, merge, split, encrypt, annotate, and bookmark PDF documents.. Add a comment. 0. You can use a home-cooked version of ExtractFileName, like this: function ExtractFileNameW (FullPath:WideString):WideString; var i,pos:Integer; begin // Find the last path separator pos := -1; for i:=Length (FullPath) downto 1 do if (FullPath [i] = '/') or (FullPath [i] = '\') then begin pos := i; Break; end; if pos = -1. Jun 06, 2016 · var MyEXE: string; begin MyEXE := ExtractFileName(Application.ExeName); // or MyEXE := ExtractFileName(Paramstr(0)); end; With ExtractFileName(), you can cut off the path from your program file so that you will get the name of your EXE. 2016-06-07 at 11:24.