Board index » cppbuilder » BDS2006 - Missing source files?
TerryC
![]() CBuilder Developer |
TerryC
![]() CBuilder Developer |
BDS2006 - Missing source files?2006-04-11 05:15:03 AM cppbuilder71 I'm trying to compile a library which uses DesignEditors. It wants the DCU file, if it can find it, but will compile the PAS file if not. Well, the DesignEditors.pas file USES, among others, Proxies, ToolsAPI and ActnList. None of those files are present, neither in DCU nor PAS form. I can't compile what I need. Where do I find these dource files and/or DCU's ? -Terry |
Andreas Hausladen
![]() CBuilder Developer |
2006-04-11 06:14:05 AM
Re:BDS2006 - Missing source files?
TerryC wrote:
QuoteI can't compile what I need. Where do I find these dource files the requires clause. -- Regards, Andreas Hausladen |
Remy Lebeau (TeamB)
![]() CBuilder Developer |
2006-04-11 08:11:51 AM
Re:BDS2006 - Missing source files?
"TerryC" < XXXX@XXXXX.COM >wrote in message
QuoteI'm trying to compile a library which uses DesignEditors. QuoteWell, the DesignEditors.pas file USES, among others, Proxies, binary format only. Design-time packages are supposed to Require Borland's own design-time packages, such as the "DesignIDE" package. Gambit {smallsort} |
TerryC
![]() CBuilder Developer |
2006-04-12 12:06:20 AM
Re:BDS2006 - Missing source files?Quote>I'm trying to compile a library which uses DesignEditors. Quote>Well, the DesignEditors.pas file USES, among others, Proxies, DesignIntf, DesignMenus, DesignEditors, But the DCUs for those are not present. What am I supposed to do? Is this library only compatible with an older version of C++ Builder and/or Delphi? |
Remy Lebeau (TeamB)
![]() CBuilder Developer |
2006-04-12 12:55:56 AM
Re:BDS2006 - Missing source files?
"TerryC" < XXXX@XXXXX.COM >wrote in message
QuoteIt's a 3rd party design-time package. The PAS file has: Gambit |
David Dean
![]() CBuilder Developer |
2006-04-12 01:11:34 AM
Re:BDS2006 - Missing source files?
In article <443bd3fc$ XXXX@XXXXX.COM >,
"TerryC" < XXXX@XXXXX.COM >wrote: QuoteBut the DCUs for those are not present. What am I supposed to -- -David Nihil curo de ista tua stulta superstitione. |
TerryC
![]() CBuilder Developer |
2006-04-12 01:14:24 AM
Re:BDS2006 - Missing source files?Quote>It's a 3rd party design-time package. The PAS file has: couldn't be found. So, I found DesignIntf.pas in the sources (BDS\source\ToolsAPI) and put that path in the search list so the compiler could find it. So why don't I get the other design-time sources that DesignIntf.pas needs to compile? And why doesn't DesignIDE in the Requires list fix anything? This is simply baffling to me. -Terry |
TerryC
![]() CBuilder Developer |
2006-04-12 01:16:31 AM
Re:BDS2006 - Missing source files?QuoteSome googling led me to: add DesignIde.dcp to the requires that list. -Terry |
Jonathan Benedicto
![]() CBuilder Developer |
2006-04-12 01:27:36 AM
Re:BDS2006 - Missing source files?
TerryC wrote:
QuoteThanks for the help, but I can't add a DCP file to the Requires click OK, and it should work. HTH Jonathan |
David Dean
![]() CBuilder Developer |
2006-04-12 01:27:43 AM
Re:BDS2006 - Missing source files?
In article <443be46f$ XXXX@XXXXX.COM >,
"TerryC" < XXXX@XXXXX.COM >wrote: QuoteThanks for the help, but I can't add a DCP file to the Requires -- -David Nihil curo de ista tua stulta superstitione. |
TerryC
![]() CBuilder Developer |
2006-04-12 01:44:09 AM
Re:BDS2006 - Missing source files?
"Jonathan Benedicto" < XXXX@XXXXX.COM >wrote:
QuoteGo to the Pascal options in the Project Options, and check the I already have "dbrtl" and "dcldb" in my Requires, but that isn't getting it. -Terry |
TerryC
![]() CBuilder Developer |
2006-04-12 01:47:44 AM
Re:BDS2006 - Missing source files?QuoteI thought you said it was delphi source. Why aren't you just doing it the same way as always. If I can't get this to work within the C++ Builder personality, I'll take a crack at the approach you mentioned. -Terry |
TerryC
![]() CBuilder Developer |
2006-04-12 02:08:30 AM
Re:BDS2006 - Missing source files?QuoteI thought you said it was delphi source. Why aren't you file. I'll need those in C++ Builder, no? -Terry |
Jonathan Benedicto
![]() CBuilder Developer |
2006-04-12 02:16:59 AM
Re:BDS2006 - Missing source files?
TerryC wrote:
QuoteDelphi generates a .dcu, .bpi and .hpp, but no .lib nor .bpl Also, did you check Build all C++Builder files in the linker options ? Jonathan |
TerryC
![]() CBuilder Developer |
2006-04-12 02:23:01 AM
Re:BDS2006 - Missing source files?Quote>Delphi generates a .dcu, .bpi and .hpp, but no .lib nor .bpl I'll need to spend more time perusing the options and understanding their consequences. :-) Many thanks! -Terry |