Jump to content


Photo

XE Support


  • Please log in to reply
7 replies to this topic

#1 Pete

Pete
  • Members
  • 8 posts

Posted 01 September 2010 - 02:35 PM

Hello,

what are your plans supporting RAD Studio XE? The trials can be downloaded at Embarcadero. There are no breaking changes. Only adapt checking for the new Delphi version number and create new package files. That should be it (I hope so rolleyes.gif )

Best Regards

Peter

#2 Boki (Berg)

Boki (Berg)

    Boki (Berg)

  • Forum Admin
  • PipPipPipPipPip
  • 8,289 posts
  • Gender:Male

Posted 01 September 2010 - 03:52 PM

Hello Peter,

Do you have try to open Delphi 2010 packages in Delphi XE?

I will add support for Delphi XE very soon.

Best regards
boki@bergsoft.net | LinkedIn Profile
--
BergSoft Home Page: www.bergsoft.net
Users Section: users.bergsoft.net
Articles and Tutorials: help.bergsoft.net (Developers Network)
--
BergSoft Facebook page
--
Send us applications made with our components and we will submit them on: www.bergsoft.net/apps.htm. Link to this page will be also set on home page too.

#3 Boki (Berg)

Boki (Berg)

    Boki (Berg)

  • Forum Admin
  • PipPipPipPipPip
  • 8,289 posts
  • Gender:Male

Posted 01 September 2010 - 08:14 PM

Hello,

Starting from next release, Next Suite will include Delphi XE packages.

Who want to compile current release on Delphi XE, please open nxsuite.inc file (in Sources sub-folder)

and add next lines at the end:

CODE
{ Delphi XE }
{$IFDEF VER220}
  {$DEFINE DELPHI2010UP}
  {$DEFINE DELPHI2009UP}
  {$DEFINE D2006UP}
  {$DEFINE D2005UP}
{$ENDIF}


Best regards
boki@bergsoft.net | LinkedIn Profile
--
BergSoft Home Page: www.bergsoft.net
Users Section: users.bergsoft.net
Articles and Tutorials: help.bergsoft.net (Developers Network)
--
BergSoft Facebook page
--
Send us applications made with our components and we will submit them on: www.bergsoft.net/apps.htm. Link to this page will be also set on home page too.

#4 Pete

Pete
  • Members
  • 8 posts

Posted 02 September 2010 - 02:10 AM

Hello,

I would like to try it, but I cannot get your last release compiled even under Delphi 2010.
When I try to Install NxDBGriDDsgn.bpl I get the error:

E:\Codegear\Components\Next Suite\Packages\Delphi 2010\NxGridDsgn.dpk(42,60): error F1026: F1026 File not found: 'NxScrollControl.dcu'

And Installing NxThirdpartyRun.bpl leads to:

E:\Codegear\Components\Next Suite\Packages\Delphi 2010\NxDBGridRun.dpk(41,54): error F1026: F1026 File not found: 'NxEdit.dcu'


Any Idea?

Best Regards,

Peter


QUOTE (Boki (Berg) @ Sep 1 2010, 09:14 PM) <{POST_SNAPBACK}>
Hello,

Starting from next release, Next Suite will include Delphi XE packages.

Who want to compile current release on Delphi XE, please open nxsuite.inc file (in Sources sub-folder)

and add next lines at the end:

CODE
{ Delphi XE }
{$IFDEF VER220}
  {$DEFINE DELPHI2010UP}
  {$DEFINE DELPHI2009UP}
  {$DEFINE D2006UP}
  {$DEFINE D2005UP}
{$ENDIF}


Best regards



#5 Boki (Berg)

Boki (Berg)

    Boki (Berg)

  • Forum Admin
  • PipPipPipPipPip
  • 8,289 posts
  • Gender:Male

Posted 02 September 2010 - 04:38 AM

Hello Pete,

You need to add path to the Sources, Sources\Next Grid, Sources\Next DBGrid in Library Path first.

I hope that this helps.

Best regards
boki@bergsoft.net | LinkedIn Profile
--
BergSoft Home Page: www.bergsoft.net
Users Section: users.bergsoft.net
Articles and Tutorials: help.bergsoft.net (Developers Network)
--
BergSoft Facebook page
--
Send us applications made with our components and we will submit them on: www.bergsoft.net/apps.htm. Link to this page will be also set on home page too.

#6 Pete

Pete
  • Members
  • 8 posts

Posted 05 September 2010 - 03:01 AM

QUOTE (Boki (Berg) @ Sep 2 2010, 05:38 AM) <{POST_SNAPBACK}>
Hello Pete,

You need to add path to the Sources, Sources\Next Grid, Sources\Next DBGrid in Library Path first.

I hope that this helps.

Best regards


Hello Boki,

I got D2010 up and running, and Delphi XE almost with the exception of "NxAddAddonsRun.bpl". There I get an error:

[DCC Fatal Error] NxAddonsReg.pas(13): F2063 Could not compile used unit 'NxPreview.pas'

Source Code for Error:

uses
NxAutoCompletion, NxProgress, NxBusy, NxFocus{$IFNDEF VER210}, NxPreview, NxVirtualDataSet;{$ELSE};{$ENDIF}

Something with the $IFNDEF VER210?


Best Regards,

Peter


#7 Boki (Berg)

Boki (Berg)

    Boki (Berg)

  • Forum Admin
  • PipPipPipPipPip
  • 8,289 posts
  • Gender:Male

Posted 06 September 2010 - 02:39 PM

Hello,

Replace complete file with:

CODE
{$I '..\NxSuite.inc'}

unit NxAddonsReg;

interface

uses
  Classes, Types;

procedure Register;

implementation

uses
  NxAutoCompletion, NxProgress, NxBusy, NxFocus{$IFNDEF DELPHI2010UP}, NxPreview, NxVirtualDataSet;{$ELSE};{$ENDIF}

procedure Register;
begin
  RegisterComponents('Next Addons', [TNxAutoCompletion, TNxBusy, TNxFocus,
    TNxProgress]);
  {$IFNDEF DELPHI2010UP}
  RegisterComponents('Next Addons', [TNxPreview, TNxVirtualDataSet]);
  {$ENDIF}
end;

end.


Best regards
boki@bergsoft.net | LinkedIn Profile
--
BergSoft Home Page: www.bergsoft.net
Users Section: users.bergsoft.net
Articles and Tutorials: help.bergsoft.net (Developers Network)
--
BergSoft Facebook page
--
Send us applications made with our components and we will submit them on: www.bergsoft.net/apps.htm. Link to this page will be also set on home page too.

#8 Pete

Pete
  • Members
  • 8 posts

Posted 08 September 2010 - 04:30 PM

Hello Boki,

with your changes it looks fine. I can work with it in CBuilder XE and Delphi XE. However I propose some changes to the package files. I will send them to you with email.

Best Reagards,

Peter





1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users