Tagged Questions

6
votes
4answers
545 views

Delphi {$IFDEF CONSOLE} Problem

I just tried program Project1; {$APPTYPE CONSOLE} uses SysUtils; begin {$IFDEF CONSOLE} beep; {$ENDIF} end. and expected to hear a beep during runtime, but not. The following test ...
2
votes
2answers
665 views

Delphi 2007 and {$IFDEF…} directive, fails to see our conditional

We have the following in our codebase, in a component file: {$IFDEF ADO} FDatabase : TADODatabase; {$ELSE} FDatabase : TODBCDatabase; {$ENDIF} The reason is that for various legacy applications, ...
0
votes
3answers
105 views

Code navigation breaks inside of $IFDEF blocks in Delphi 2010

I have a few conditionally compiled classes in my app. {$IFDEF SOME_OPTION} type TMyClass = class procedure Foo; end; {$ENDIF} ... {$IFDEF SOME_OPTION} procedure TMyClass.Foo; begin end; ...
0
votes
3answers
377 views

Delphi - Scope of custom definitions

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; ...