I d like to add a dcu file to a project before compiling it. I m trying to use the OTA to this. In IOTAProject I have the option to add a file (AddFile()), but when I try to add a dcu it doesn t allow me, and I must set the file as the first file in my project.
我想简单谈谈:
------------------ Original project
program Project1;
uses
Forms,
Unit1 in Unit1.pas {Form1};
etc...
------------------- Before compile I intercept it and set
program Project1;
uses
MyDCU, //Add this
Forms,
Unit1 in Unit1.pas {Form1};
etc...
------------------ After compile remove and it came back to
program Project1;
uses
Forms,
Unit1 in Unit1.pas {Form1};
etc...
编辑拦截之前,并不是IOTAIDENotifier问题给我必要的接口,以便与我合作。 问题只是作为我项目的第一个档案。
有些人能够帮助我? Tks