Good Morning,

I have a unit which I want to use in two different programs, to tell the difference I wanted to Define a symbol and then check that in the unit.

In my DPR for the project I have;

program Project1;

{$Define MYDEF}  

uses
  Forms,
  ...

and in my Form1 file I have

procedure TForm1.FormCreate(Sender: TObject);
begin
 {$IfDef MYDEF}
   ShowMessage('boo');
 {$EndIf}
end;

however I don't get to see boo! Are definitions limited to a certain scope?

link|improve this question

74% accept rate
Just saw this; stackoverflow.com/questions/1277309/… which answers my question! – Wizzard Oct 5 '09 at 11:09
feedback

3 Answers

up vote 3 down vote accepted

http://stackoverflow.com/questions/1277309/delphi-2007-and-ifdef-directive-fails-to-see-our-conditional

Under your project add the define to 'Conditional Defines'

link|improve this answer
feedback

The defines are local to the file. If you want them to be global, add them to the project options.

link|improve this answer
feedback

Another solution is to have an includefile and include it in all units and the .dpr.

This solution is more delphi version independant.

If your defines are related to Delphi versioning, check out http://www.stack.nl/~marcov/porting.pdf for some tips how to setup a systematic structure in your defines.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.