![]() | Steema Issues DatabaseNote: This database is for bugs and wishes only. For technical support help, if you are a customer please visit our online forums;otherwise you can use StackOverflow. Before using this bug-tracker we recommend a look at this document, Steema Bug Fixing Policy. |
| Summary: | The TeeGrid 1.10 cannot be installed in Lazarus 2.10 | ||
|---|---|---|---|
| Product: | TeeGrid for Delphi | Reporter: | Jakub Cebula <jakub.cebula> |
| Component: | Grid | Assignee: | david berneda <david> |
| Status: | RESOLVED DUPLICATE | ||
| Severity: | critical | CC: | yeray |
| Priority: | --- | ||
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows | ||
| Chart Series: | --- | Delphi / C++ Builder RAD IDE Version: | |
| Attachments: | Log from Free Pacal Compiler 3.2 | ||
*** This bug has been marked as a duplicate of bug 2338 *** If you want to apply the fix in your TeeGrid version, you just have to add an IFDEF at the declaration of the TFilterComboBox class in VCLTee.Control.pas:
{$IFNDEF FPC}
TFilterComboBox = class(TComboBox)
private
FStoredItems: TStringList;
procedure FilterItems;
procedure StoredItemsChange(Sender: TObject);
procedure SetStoredItems(const Value: TStringList);
procedure CNCommand(var AMessage: TWMCommand); message CN_COMMAND;
public
Constructor Create(AOwner: TComponent); override;
Destructor Destroy; override;
property StoredItems: TStringList read FStoredItems write SetStoredItems;
end;
{$ENDIF}
|
Created attachment 945 [details] Log from Free Pacal Compiler 3.2 My attempts to install TeeGrid 1.10 on Lazaurus 2.10 failed. Failed to compile sources. The compiler terminates compilation. I attach the log from version 1.10 TeeGrid. Lazaurus is installed in the C:\Lazaurus directory, and TeeGrid itself in C:\Lazaurus\teegrid. Windows 10 x64 version version 10.0.19041.388 Installer attempts to install FireMonkey despite ONLY Lazauras being selected for installation. All in all, this is nothing new. This component hasn't worked properly in Lazaurus for a long time. Successive versions generates new bugs. Free Pascal 3.2 doesn't help at all.