Jump to content


Bas

Member Since 25 Apr 2006
Offline Last Active Feb 24 2007 07:01 PM
-----

Topics I've Started

Error loading package adortl90 after install of NextDBGrid 3.9.3

19 October 2006 - 08:58 AM

Hi,

After installing the dev suite (with NextDBGrid 3.9.3), whenever I launch my Delphi 2005 I get the follow error message:

Cannot load package 'adortl90'. It contains unit 'ADODB', which is also contained in package 'NxDBGridRun'.

How can I get rid of this error?

Not possible to create control inside TNxTabSheet at runtime

10 May 2006 - 01:27 PM

Hi,

When I try the following code where NPC is a TNxPageControl:

CODE
 NxTabSheet := TNxTabSheet.Create(NPC);



 NPC.AddPage(NxTabSheet, FALSE);

 NxTabSheet.Caption := 'some test sheet';



 Edit := TEdit.Create(NxTabSheet);

 Edit.Parent := NxTabSheet;


the TEdit is never displayed on the tabsheet. This actually goes for any control. I have tried TEdit, TPanel, and some third party controls, and they are never put on the sheet.

I also tried to set the ParentWindow property of Edit to NxTabSheet.handle, but this cuases an AV in the inherited constructor of TNxTabSheet.CreateWnd. :?:

Help sad.gif

TNxComboboxItem Problem: self update

26 April 2006 - 11:55 AM

Hi,

I have created an inspector with 3 TNxToolbarItems. Each TNxToolbarItem has a child, a TNxComboboxItem.

For the example lets say the Lines property of these comboboxes if filled with 1, 2, 3, a number for each line. Also, the style property is set to cbDropDownList.

Itemindex for the first box is set to 0, second box is set to 1, third box is set to 2. So they would list 1, 2 and 3 respectively.

Run the project.

Click, but do not select a different value, on the first comboxbox.
Repeat this for the second and third comboboxes.

You are left with 1, 1 and 1 in each combobox. Upon leaving the second and third combox, the selected item is reset to itemindex = 0.

Please please please fix this as soon as possible!

I make extensive use of TNxCombobox, and the way it is working now I can not present it.

Thanks!