Jump to content


Photo

RAD 2010 support


  • Please log in to reply
18 replies to this topic

#1 Pete

Pete
  • Members
  • 8 posts

Posted 03 September 2009 - 02:17 PM

Hi, is there an ETA when we can await RAD 2010 support?

Regards,

Pete

#2 Boki (Berg)

Boki (Berg)

    Boki (Berg)

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

Posted 03 September 2009 - 04:40 PM

Hello Pete,

I don't have a RAD 2010, but I will get it soon and made packages for it.

I may suggest that you try to compile/install Delphi 2009 packages, it may work.

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 Biblin

Biblin
  • Members
  • 13 posts
  • Gender:Male

Posted 07 September 2009 - 04:24 PM

The packages won't build straight off because of certain compiler options that only check for Delphi 2009. However if you add DELPHI2009 to your compiler options and build the packages it'll work for 2010 as well.

#4 octal

octal
  • Members
  • 54 posts
  • Location:France

Posted 08 September 2009 - 12:39 PM

Did anyone tried to compile under D2010 ?
I want to switch to D2010 but I cannot do it unless I'm sure Berg components compile fine wink.gif

#5 Boki (Berg)

Boki (Berg)

    Boki (Berg)

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

Posted 08 September 2009 - 05:20 PM

Hello Octal,

Do you have try to open and compile Delphi 2009 packages?

I hope that soon I will officially support Delphi 2010.

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 Lelik

Lelik
  • Members
  • 28 posts
  • Gender:Male

Posted 08 September 2009 - 06:49 PM

in all libraries use {$IFDEF VER210} instead of {$IFDEF DELPHI2009}

plus there is an assigning problem in NxDBGrid unit
QUOTE
with VertScrollClipRect do
begin
Left := 0;
Top := GetBodyRect.Top;
Right := GetBodyRect.Right;
Bottom := Top + FBottomLimit;
end;


except this everything installed OK
Кручу-верчу, ЛариÑ?у Ивановну хочу :)

#7 Boki (Berg)

Boki (Berg)

    Boki (Berg)

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

Posted 12 September 2009 - 01:22 AM

Hello,

Delphi 2010 support will be completed till end of a week. There was no problems with creating packages, and Lelik tips are correct.

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 29 September 2009 - 02:16 PM

QUOTE (Boki (Berg) @ Sep 12 2009, 02:22 AM) <{POST_SNAPBACK}>
Hello,

Delphi 2010 support will be completed till end of a week. There was no problems with creating packages, and Lelik tips are correct.

Best regards


Any Update?

Regards, Pete

#9 Boki (Berg)

Boki (Berg)

    Boki (Berg)

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

Posted 29 September 2009 - 04:09 PM

Hello Pete,

I have already upload a new pre-release on members section with Delphi 2010 support. There are new Delphi 2010 packages for new Delphi.

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.

#10 Frank

Frank
  • Members
  • 30 posts

Posted 14 October 2009 - 09:30 PM

QUOTE (Boki (Berg) @ Sep 29 2009, 04:09 PM) <{POST_SNAPBACK}>
Hello Pete,

I have already upload a new pre-release on members section with Delphi 2010 support. There are new Delphi 2010 packages for new Delphi.

Best regards



Hi,

still there is pre-release version in the members section, any updates?


Greetings
Frank



#11 Boki (Berg)

Boki (Berg)

    Boki (Berg)

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

Posted 15 October 2009 - 07:53 PM

Hello Frank,

This pre-release already include Delphi 2010 support. You may download it and use it in Delphi 2010.

Official release will be in next 1-2 days.

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.

#12 Shaman

Shaman
  • Members
  • 16 posts
  • Gender:Male

Posted 06 November 2009 - 08:32 PM

Hello Boki.

There are some suggestions for 2009-2010 versions of Delphi:
1. I don't understand why in
CODE
Windows.DrawText(Canvas.Handle, PAnsiChar(StringText), Length(StringText), ARect, Flags);

you use casting to PAnsiChar. Second parameter in DrawText has PWideChar type in Unicode versions of Delphi. PChar would be enough.

2. You can use CharInSet function when you check symbols instead of IN operator. Better way - using TCharacter class for standard tasks (IsNumber and so on), direct comparison for easy checks (... = '$') and real WideCharSet for complex checks (see DeHL for example).

3. CodeGear implements a warnings on the dangerous Thread.Suspend and Thread.Resume at last. You use those methods in not so harmful scenarios, but warnings are the evil.

Thanks.

#13 Boki (Berg)

Boki (Berg)

    Boki (Berg)

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

Posted 07 November 2009 - 03:05 AM

Hello Shaman,

I have split DrawText and DrawTextW for different Windows version. When unicode is supported, next code for drawing text is used:

CODE
DrawTextW(Canvas.Handle, PWideChar(Text), Length(Text), ARect, Flags)


Maybe I have miss this on some place. Can you please tell me where did you find this code to I fix it smile.gif

I am aware of this warnings, and I hope that I will find a solutions for all Delphi versions.

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.

#14 Aage J.

Aage J.
  • Members
  • 13 posts

Posted 19 December 2009 - 12:24 AM

QUOTE (Boki (Berg) @ Oct 15 2009, 07:53 PM) <{POST_SNAPBACK}>
Hello Frank,

This pre-release already include Delphi 2010 support. You may download it and use it in Delphi 2010.

Official release will be in next 1-2 days.

Best regards



It's been more than a year since I updated the Berg components (in my D2006). I've recently installed D2010, and would like to have the components available there as well. Now, I've downloaded nextcomps_51091.exe. Does this support D2010?
I've started the install, and after a few screens I arrived at the "Select additional tasks" part. However, D2010 isn't mentioned in the list of checkboxes - just D6-D2009 (and C++B/6). At this point I cancelled the install.
Is this the correct install for D2010?
Should I just have continued the install?

TiA
Aage J.


#15 Boki (Berg)

Boki (Berg)

    Boki (Berg)

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

Posted 19 December 2009 - 04:11 PM

Hello Aage,

You only need to add Library Path manually to the files. I will fix append this list of tasks.

Please tell me if you need more help.

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.

#16 Aage J.

Aage J.
  • Members
  • 13 posts

Posted 20 December 2009 - 01:04 AM

QUOTE (Boki (Berg) @ Dec 19 2009, 04:11 PM) <{POST_SNAPBACK}>
Hello Aage,

You only need to add Library Path manually to the files. I will fix append this list of tasks.

Please tell me if you need more help.

Best regards



Good to hear. I'll wait a bit, and look for an announcment of a new version.
Or, if I get too impatient, just run the latest install ...

Thanks,
Aage J.




#17 Boki (Berg)

Boki (Berg)

    Boki (Berg)

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

Posted 20 December 2009 - 02:54 PM

Hello,

Just add path to the \Sources \Sources\NextGrid \Sources\Next DBGrid\ Sources\Next Inspector Sources\Next Collection to the Library Path inside Delphi's Options dialog.

I hope that this helps smile.gif

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.

#18 Jonny Kwekkeboom

Jonny Kwekkeboom
  • Members
  • 24 posts

Posted 03 January 2010 - 02:50 PM

QUOTE (Boki (Berg) @ Sep 3 2009, 04:40 PM) <{POST_SNAPBACK}>
Hello Pete,

I don't have a RAD 2010, but I will get it soon and made packages for it.

I may suggest that you try to compile/install Delphi 2009 packages, it may work.

Best regards


Hi,
will not all worked ;-)

the Inspector component will fail on registration... grrr

cu
Jonny



#19 Boki (Berg)

Boki (Berg)

    Boki (Berg)

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

Posted 03 January 2010 - 07:11 PM

Hello Jonny,

I have already supported Delph 2010. There are packages in Packages\Delphi 2010 sub-folder so you may install it directly.

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.




1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users