Mar 8, 2002 #1 Detective Programmer Mar 8, 2002 15 NL Hi, Is it possible to open another Delphi file from a Delphi program? (Something like RUN('test.dpr'))
Hi, Is it possible to open another Delphi file from a Delphi program? (Something like RUN('test.dpr'))
Mar 8, 2002 #2 Roderich Programmer Sep 11, 2001 58 DE I guess You want to open a Delphi project file from a program (let me ask why ?) !? Since dpr files are linked to Delphi You just have to call ShellExecute(0, nil, 'c:\xyz\test.dpr', '', nil, SW_SHOWNORMAL); hope this it what you wanted. Regards Roderich Upvote 0 Downvote
I guess You want to open a Delphi project file from a program (let me ask why ?) !? Since dpr files are linked to Delphi You just have to call ShellExecute(0, nil, 'c:\xyz\test.dpr', '', nil, SW_SHOWNORMAL); hope this it what you wanted. Regards Roderich
Mar 11, 2002 #3 BobbaFet Programmer Feb 25, 2001 903 NL Dont forget that you need to include ShellAPI in your uses list. Good luck, BobbaFet Everyone has a right to my opinion. E-mail me at caswegkamp@hotmail.com http://cwcon.50megs.com/ Upvote 0 Downvote
Dont forget that you need to include ShellAPI in your uses list. Good luck, BobbaFet Everyone has a right to my opinion. E-mail me at caswegkamp@hotmail.com http://cwcon.50megs.com/