Robert Meek wrote:
> Yes, I've set up packages before so that they work with newer
> versions, however in this case the one and only problem is that it requires
> 'Dsgnintf' after ver 6 of Delphi.  Before that it requires 'designide'.  Is
> there a replacement file I can use for this?  Do you have any idea what I
> can look for in the Delphi units that might do the job in D2007?

You have it backward. Delphi 5 and earlier had the DsgnIntf unit and the 
DsnIde package. Delphi 6 changed it to DesignIntf and DesignIde. 
DesignIntf, the unit, is not included as a DCU because you aren't 
allowed to include it in anything you compile. Instead, you add 
DesignIde to your design-time package's "requires" clause.

If you have a DPK file that says it requires DsnIde, or if you have 
source files that use the DsgnIntf unit, then change them to require 
DesignIde and use DesignIntf instead. No run-time code should use either 
DsgnIntf or DesignIntf, so if they do, just remove those units entirely. 
Then start sweeping up after the compiler errors that result -- you 
wouldn't be able to use those features anyway, so there's no harm in 
deleting them to make the code compile.

> And speaking of D2007, I'm just a little confused about the
> currently available versions.  When I purchased D2007, I did so directly
> from Borland and received the RAD Pro Studio version 11.0.2627.5503.  But on
> the web sites and blogs I see references to D2007 that was released without
> Vista compatibility.  Mine has a Vista dialogs component set, yet they speak
> of one which doesn't have it included.

Who is "they"? Names and URLs, please.

Among the blogs you read, please add Nick Hodges's. If you read his, you 
would have see this post:

http://blogs.codegear.com/nickhodges/2007/09/14/38940

> Mainly the only reason I want to know about this is to find the
> correct updates and/or patches if any have been released.  When I go to the
> update site of Borland's, they have 3 patches listed, but I'm not sure if
> they are referring to my version or a different one! 

Note that 'Delphi 2007 for Win32' <> 'RAD Studio 2007'. The updates on 
CodeGear's site are labeled as updates for Delphi 2007 for Win32. RAD 
Studio was just released this month; there are no updates for it.

-- 
Rob
_______________________________________________
Delphi mailing list -> Delphi@elists.org
http://www.elists.org/mailman/listinfo/delphi

Reply via email to