DsgnIntf is for registering component editors.

> -----Original Message-----
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On
> Behalf Of Eion McIntosh (Christchurch)
> Sent: Wednesday, 19 September 2001 11:47
> To: Multiple recipients of list delphi
> Subject: RE: [DUG]: DsgnInft unit D5 Standard
>
>
> I have found this also recently updating a D4 to D6 project and couldn't
> figure out where it came from as I hadn't seen this unit before either. It
> didn't show up in the original D4 uses clauses which I checked.
> So I decided
> it must be something new in the of the package units. I just
> deleted it and
> everything was then fine. Weird!!
>
> So what bugs me it that when this sort of error occurs my Delphi
> just tells
> me there is an error at compile time but doesn't tell me which
> unit or form.
> Its very annoying when you have lots for forms and you don't know
> which one
> it has appeared in!!
>
> Is there a setting somewhere I haven't got set to tell me which unit/form
> this error has actually occured in?
>
> Eion McIntosh
> PPCS Ltd
>
> > -----Original Message-----
> > From:       Patrick Dunford [SMTP:[EMAIL PROTECTED]]
> > Sent:       Wednesday, 19 September 2001 11:28
> > To: Multiple recipients of list delphi
> > Subject:    [DUG]:  DsgnInft unit D5 Standard
> >
> > I'm updating a project from Delphi 3 to Delphi 5.
> >
> > One of the components causes this error message at compile time:
> >
> > "cannot find unit dsgnintf.dcu"
> >
> > I checked and found only a dsgnintf.int file, not a dcu or pas.
> But Delphi
> > 3 puts a Dsgnintf.dcu unit into its Lib directory.
> >
> > The reference to DsgnIntf is made in the Register procedure, which for
> > this component looks like this:
> >
> > procedure Register;
> >
> > implementation
> > uses
> >  DsgnIntf;
> >
> > type
> >  {Design-time testing by Double-clicking or from popup menu take Test}
> >  {Added by Ahto Tanner}
> >  TDialogTest=class(TDefaultEditor)
> >  public
> >   procedure ExecuteVerb(Index: Integer); override;
> >   function GetVerb(Index: Integer): string; override;
> >   function GetVerbCount: Integer; override;
> >   procedure Edit; override;
> >  end;
> >
> > const
> >  CUSTOM_BUTTON_ID=255;
> >  MAX_PATH_DISPLAY_LENGTH=35;
> >
> >
> >
> >
> >
> //------------------------------------------------------------------------
> > --------------------------------//
> > procedure Register;
> > begin
> >  RegisterComponentEditor(TBrowseFolder, TDialogTest);
> >   RegisterComponents('Dialogs', [TBrowseFolder]);
> > end;
> >
> >
> > Is Borland in the habit of shipping DsgnIntf.dcu depending on
> the edition
> > of Delphi? Using D5 Standard edition.
> >
> > ====================================
> > Patrick Dunford, Christchurch, New Zealand
> > <http://pdunford.godzone.net.nz/>
> >
> >
>
> ##################################################################
> ###################
> This e-mail message has been scanned for Viruses and Content
> ##################################################################
> ###################
> ------------------------------------------------------------------
> ---------
>     New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
>                   Website: http://www.delphi.org.nz
> To UnSub, send email to: [EMAIL PROTECTED]
> with body of "unsubscribe delphi"
> Web Archive at: http://www.mail-archive.com/delphi%40delphi.org.nz/
>

---------------------------------------------------------------------------
    New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
                  Website: http://www.delphi.org.nz
To UnSub, send email to: [EMAIL PROTECTED] 
with body of "unsubscribe delphi"
Web Archive at: http://www.mail-archive.com/delphi%40delphi.org.nz/

Reply via email to