If you need any help - you can contact me. I'd love to take part in developing of these usefull components
delphi 2009 support
#41
Posted 18 December 2008 - 11:34 PM
If you need any help - you can contact me. I'd love to take part in developing of these usefull components
#42
Posted 18 December 2008 - 11:53 PM
Thank you again. If I have something to ask, I will do.
Best regards
--
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.
#43
Posted 26 December 2008 - 03:51 PM
First release for Delphi 2009 is out. I hope that you may use it
Best regards
--
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.
#44
Posted 26 December 2008 - 09:47 PM
#45
Posted 27 December 2008 - 05:38 PM
You may open this file, and then simply compie and install all packages before NxAddonsRun .NxAddons does not support Delphi 2009 at the moment.
--
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.
#46
Posted 27 December 2008 - 05:48 PM
#47
Posted 27 December 2008 - 06:29 PM
Unit: NxColumnClasses
-- 1480 line, replace it as in example block:
begin
 Result := CharInSet(Key,['1'..'9', '0', DateSeparator]);
end;
-- lines 555, 556 replace it as in example block:
begin
 Result := True;
 if CharInSet(Key, ['1'..'9', '0']) then Exit;
 if (eoAllowSigns in Options) and (CharInSet(Key, ['-', '+'])) then Exit;
 if (eoAllowFloat in Options) and (Key = DecimalSeparator) then Exit;
 Result := False;
end;
Unit: NxColumns
-- 2026 line, replace it as in example block:
 StringText := AsString;
 DrawTextEx(Canvas.Handle, PWideChar(StringText), Length(StringText), Rect, Flags, nil);
end;
Unit: NxGridReg
-- lines 306, 308, 322, 327, 342, use insead of "Key in []" - "CharInSet(Key, [])" function
Unit: NxDbCommon
-- line 31 replace with:
Unit: NxDbColumns
-- line 1213, use insead of "Key in []" - "CharInSet(Key, [])" function
Unit: NxDbGridDsgn
-- line 39, use insead of "vcljpg" - "VCLIMG" unit
Unit: NxPropertyItemClasses
-- function StringToFontStyles replace with:
 const Value: WideString): TFontStyles;
var sBold, sItalic, sUnderline:WideString;
begin
 Result := [];
 sBold:='bold';
 sItalic:='italic';
 sUnderline:='underline';
 if Pos(sBold, Value) > 0 then Result := Result + [fsBold];
 if Pos(sItalic, Value) > 0 then Result := Result + [fsItalic];
 if Pos(sUnderline, Value) > 0 then Result := Result + [fsUnderline];
end;
-- move to the public section of TNxCustomInspector:
#48
Posted 28 December 2008 - 10:06 PM
I will need to look at you code and test it. Not sure why this errors don't appear for me too.
Best regards
--
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.
#49
Posted 02 January 2009 - 04:15 PM
#50
Posted 02 January 2009 - 05:26 PM
I am just release version for download, and now I will work on Delphi 2009 full support.
Best regards
--
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.
#51
Posted 02 January 2009 - 05:52 PM
#52
Posted 02 January 2009 - 06:17 PM
AddOns package still not have, other packages are fine. I will ask Wim to help me for this 1 package
Best regards
--
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.
#53
Posted 02 January 2009 - 08:15 PM
#54
Posted 03 January 2009 - 01:11 AM
I am not really sure about it.
Best regards
--
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.
#55
Posted 09 January 2009 - 06:18 PM
Unit: NxColumnClasses
-- 1480 line, replace it as in example block:
begin
 Result := CharInSet(Key,['1'..'9', '0', DateSeparator]);
end;
-- lines 555, 556 replace it as in example block:
begin
 Result := True;
 if CharInSet(Key, ['1'..'9', '0']) then Exit;
 if (eoAllowSigns in Options) and (CharInSet(Key, ['-', '+'])) then Exit;
 if (eoAllowFloat in Options) and (Key = DecimalSeparator) then Exit;
 Result := False;
end;
Unit: NxColumns
-- 2026 line, replace it as in example block:
 StringText := AsString;
 DrawTextEx(Canvas.Handle, PWideChar(StringText), Length(StringText), Rect, Flags, nil);
end;
Unit: NxGridReg
-- lines 306, 308, 322, 327, 342, use insead of "Key in []" - "CharInSet(Key, [])" function
Unit: NxDbCommon
-- line 31 replace with:
Unit: NxDbColumns
-- line 1213, use insead of "Key in []" - "CharInSet(Key, [])" function
Unit: NxDbGridDsgn
-- line 39, use insead of "vcljpg" - "VCLIMG" unit
Unit: NxPropertyItemClasses
-- function StringToFontStyles replace with:
 const Value: WideString): TFontStyles;
var sBold, sItalic, sUnderline:WideString;
begin
 Result := [];
 sBold:='bold';
 sItalic:='italic';
 sUnderline:='underline';
 if Pos(sBold, Value) > 0 then Result := Result + [fsBold];
 if Pos(sItalic, Value) > 0 then Result := Result + [fsItalic];
 if Pos(sUnderline, Value) > 0 then Result := Result + [fsUnderline];
end;
-- move to the public section of TNxCustomInspector:
im having the same errors as lelik described above
#56
Posted 09 January 2009 - 09:50 PM
Do you have try yet to use latest version from users section?
Best regards
--
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.
#57
Posted 09 January 2009 - 11:41 PM
i will try and let u know
#58
Posted 10 January 2009 - 09:32 PM
i installed the latest version of next suite under D2009 without TNT condition and it seems to be ok
but when i opened my project (D2007 based) and tried to open it under D2009) i got the attached 2 errors
please advice
can it be related to the fact that under D2007 , TNT condition was ON?
update: after re-opening the project, the whole TNextDBGrid class was defined. i may have to re-install NextSuite but first i want to make sure what was the problem
Attached Files
#59
Posted 10 January 2009 - 11:22 PM
If you haved for 2007 NextSuite installed, try to do a clean install and then install Next Suite again.
Best regards
--
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.
#60
Posted 10 January 2009 - 11:27 PM
under D2007 there is no problem
the problem is with D2009 and there i did a clean install, the installation was successful, the above problem was only when i opened my project
0 user(s) are reading this topic
0 members, 0 guests, 0 anonymous users












