Board index » delphi » File not found 'DsgnIntf.dcu'
André Leblanc
![]() Delphi Developer |
Sat, 10 Aug 2002 03:00:00 GMT
|
André Leblanc
![]() Delphi Developer |
Sat, 10 Aug 2002 03:00:00 GMT
File not found 'DsgnIntf.dcu'
I have install TBrowseForFolderDialog by Upscene Productions
When I compile I have this error Any Idea !!! |
André Leblan
![]() Delphi Developer |
Sat, 10 Aug 2002 03:00:00 GMT
Re:File not found 'DsgnIntf.dcu'How can I browse for a folder... like open dialog -- Quote> That file is only needed at design time. It sounds like Upscene |
Team
![]() Delphi Developer |
Sat, 10 Aug 2002 03:00:00 GMT
Re:File not found 'DsgnIntf.dcu'A couple of years ago there was a Delphi Informant article describing the how to wrap the other OS dialogs like the Browse for folder one. If you go to www.informant.com and go to the Delphi section find the download for the file di199904KB_f.zip. Down load it and install the components and you will have a browse for folder dialog component. That's the one I use (with some component editors I wrote for them for design time previewing). Quote"Andr Leblanc" wrote: Jeff Overcash (TeamB) On waves of silver I dreamed of gold (Please do not email 'Till I lost the peace that dreaming gives me directly unless I dreamed of the moment of my own death asked. Thank You) That no one ever dreams and lives (Marillion) |
Team
![]() Delphi Developer |
Sat, 10 Aug 2002 03:00:00 GMT
Re:File not found 'DsgnIntf.dcu'You would need the source. If you have the source it is easy. Take all the component/property editors and move them into their own seperate unit from the component itself. Also move the Register procedure out of hte component unit also. This should allow you to remove DsgnIntf from the uses clause of the component. Compile the now DsgnIntf less runtime package. Create a new design time package. Add the unit that now holds the editors + the unit the holds the Register procedure. The package should require vcl50.dcp and the runtime package that holds the component code. Compile and install that package. Quoteg...@hotmail.com wrote: Jeff Overcash (TeamB) On waves of silver I dreamed of gold (Please do not email 'Till I lost the peace that dreaming gives me directly unless I dreamed of the moment of my own death asked. Thank You) That no one ever dreams and lives (Marillion) |
Lance Olve
![]() Delphi Developer |
Sat, 10 Aug 2002 03:00:00 GMT
Re:File not found 'DsgnIntf.dcu'I may be way off here but we had a similar problem with a third party component. All we have to do is go into Tools|Environment Options|Library and add the path that the .dcu is in. Lance Olvey QuoteAndr Leblanc <a.lebl...@videotron.ca> wrote in message Quote> I have install TBrowseForFolderDialog by Upscene |
Team
![]() Delphi Developer |
Sat, 10 Aug 2002 03:00:00 GMT
Re:File not found 'DsgnIntf.dcu'That file is only needed at design time. It sounds like Upscene Productions has not properly segregated their design time code from their run time code. If you have D5 Pro and up you can find the pas file in the open tools source directory. Using this should only be considered a stop gap solution until you or the component provider correctly removes the design time code from the run time code. D6 will probably see the removal of the pas file also so this segregation will have to be done in future versions. If you are using D5 Std you can compile with packages as the DsgnIntf code resides in Vcl50.bpl but will not be able to statically link it in until the component writers correct this flaw. Quote"Andr Leblanc" wrote: Jeff Overcash (TeamB) On waves of silver I dreamed of gold (Please do not email 'Till I lost the peace that dreaming gives me directly unless I dreamed of the moment of my own death asked. Thank You) That no one ever dreams and lives (Marillion) |
<g..
![]() Delphi Developer |
Sun, 11 Aug 2002 03:00:00 GMT
Re:File not found 'DsgnIntf.dcu'Quote> That file is only needed at design time. It sounds like Upscene |
Rudy Velthui
![]() Delphi Developer |
Sun, 11 Aug 2002 03:00:00 GMT
Re:File not found 'DsgnIntf.dcu'QuoteJeff Overcash (TeamB) wrote... the .hpp? -- Rudy Velthuis |
Team
![]() Delphi Developer |
Sun, 11 Aug 2002 03:00:00 GMT
Re:File not found 'DsgnIntf.dcu'There is no dcu available in D5. The pas file is available, but be forewarned, the pas file will more than likely also be gone in D6 forever and doing things correctly will be the only way to use DsgnIntf in the future. QuoteLance Olvey wrote: Jeff Overcash (TeamB) On waves of silver I dreamed of gold (Please do not email 'Till I lost the peace that dreaming gives me directly unless I dreamed of the moment of my own death asked. Thank You) That no one ever dreams and lives (Marillion) |
Lance Olve
![]() Delphi Developer |
Sun, 11 Aug 2002 03:00:00 GMT
Re:File not found 'DsgnIntf.dcu'Oh, I am on D4. Lance Jeff Overcash (TeamB) <overc...@onramp.net> wrote in message Quote> There is no dcu available in D5. The pas file is Quote> the pas file will more than likely also be gone in D6 Quote> correctly will be the only way to use DsgnIntf in the |
Jacques Beaude
![]() Delphi Developer |
Sun, 11 Aug 2002 03:00:00 GMT
Re:File not found 'DsgnIntf.dcu'You can use the SelectDirectory function in Delphi5 "Andr Leblanc" <a.lebl...@videotron.ca> a crit dans le message news: Quote> How can I browse for a folder... like open dialog |
to..
![]() Delphi Developer |
Sun, 18 Aug 2002 03:00:00 GMT
Re:File not found 'DsgnIntf.dcu'Quote> You can use the SelectDirectory function in Delphi5 BCB3, BCB4, or BCB5. It's been around since day one! :) Sent via Deja.com http://www.deja.com/ |
alanbarker4..
![]() Delphi Developer |
Wed, 11 Sep 2002 03:00:00 GMT
Re:File not found 'DsgnIntf.dcu'So what is the "correct" way of using this previously available interface? I ask becuase a simple Pascal component I've used since BCB1, will now not install due to the missing DsgnIntf file you mention. The BCB5 help stating the the file is no longer available does not give me any guidance of how to modify this 3rd party component (in a language I don't even really know) Can you provide a "old"->"new" example for me? Thanks very much Quote>, Quote> >the pas file will more than likely also be Quote> >correctly will be the only way to use DsgnIntf Quote> the .hpp? Before you buy. |
bret
![]() Delphi Developer |
Wed, 25 Sep 2002 03:00:00 GMT
Re:File not found 'DsgnIntf.dcu'Yes, I am getting the same error when migrating to Delphi 5 from 4. I think I read ages ago in here that to solve it, any runtime components need to be compiled separately, but I can't remember any more specific details. Hoping anyone can help here? Brett. Quotealanbarker4...@my-deja.com wrote: |