'Support' wrote:
Hello
Can you repeat this error in a new test-app?
Yes sure. It seems it's related to the order of the import in the uses clause.
This one is bad:
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, sButton, ExtCtrls, sPanel, Grids, DBGrids, acDBGrid,
DB;
This works:
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, ExtCtrls, DB, Grids, DBGrids, StdCtrls, acDBGrid, sButton,
sPanel;
I'm not sure what's the difference, but at least there's a workaround.