jclima69 wrote: > Thank you, but what I really want is to compile the application and > get an executable file with a name different of the project's name. > > Is there a way to do it?
You can add a batch file to your project group. The batch file can rename the file for you. Choose "Compile all" or "Build all" from the Project menu so that after your project gets compiled, Delphi executes the batch file. Delphi provides an interface for performing something like this automatically. You can write an expert that will get triggered after a project gets compiled. The JCL includes a demo project that uses that hook to attach the map file to the compiled program, and you could adapt that tool to do what you need. If you rename the EXE, though, you won't be able to debug it anymore because the debugger won't know where your EXE is. -- Rob ----------------------------------------------------- Home page: http://groups.yahoo.com/group/delphi-en/ To unsubscribe: [EMAIL PROTECTED] Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/delphi-en/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/

