unit InitSDir; { InitStartDir - Changes the program to same directory than .exe is found. Must be first unit in project to work correct. Author: Vesa Lappalainen Date: 16.4.1998 Changes: } interface implementation uses SysUtils; initialization ChDir(ExtractFileDir(ParamStr(0))); end.