Discussion:
Orpheus 4.06
(too old to reply)
Kirt
2008-05-12 16:45:24 UTC
Permalink
i'm trying to compile orpheus 4.06 with cbuilder 2007. i've very new to
2007. most of the orpheus cbuilder packages wouldn't open at all, but i
finally got the builder 4 package to open. it's now telling me that it
can't find DesignerIntf.dcu. i can't find it either. is it hiding in a
package? i gather it comes from DesignerIntf.pas, which i have. can i
make the dcu? i haven't discovered how to compile a single unit yet,
only packages.
Don
2008-05-12 20:30:47 UTC
Permalink
I found this on the SourceForge.net site for OnGuard which I loaded up
today for BDS2006:

in onguard.inc add lines:
{$IFDEF VER180} { Delphi 10 }
{$DEFINE VERSION10} { Version 10 or greater }
{$IFDEF BCB}
{$DEFINE CBuilder}
{$ObjExportAll On}
{$ENDIF}
{$ENDIF}

and if you get compile error like: "cannot find 'dsgnintf' ...",
change these lines:
{$ELSE}
dsgnintf;
{$ENDIF}

to these lines:
{$ELSE}
DesignIntf,
DesignEditors; // dsgnintf;
{$ENDIF}

BDS2006 uses VER180 but I'm not sure what Delphi2007 uses. Maybe this
would work for Orpheus. HTH
Don
Kirt
2008-05-13 12:15:13 UTC
Permalink
Post by Don
and if you get compile error like: "cannot find 'dsgnintf' ...",
{$ELSE}
dsgnintf;
{$ENDIF}
{$ELSE}
DesignIntf,
DesignEditors; // dsgnintf;
{$ENDIF}
thanks. but i found a conditional line like that in the .pas file that
was coughing. alas, neither way works.

Loading...