Compiling FMX.TMSFindDialog

Hi,

I have a problem with the Unit FMX.TMSFindDialog.

When my application tries to compile it, it shows me the errors:

[dcc64 Fehler] FMX.TMSFindDialog.pas(29): E2004 Bezeichner redeklariert: "FMX.Controls.Presentation"
and
[dcc64 Fehler] FMX.TMSFindDialog.pas(30): E2004 Bezeichner redeklariert: "FMX.ComboEdit"

Here is the corresponding Use clause of the FMX.TMSFindDialog:

uses
  Classes, FMX.Forms, FMX.Memo, FMX.Menus, FMX.Edit, FMX.Controls, FMX.Types, FMX.TMSBaseControl,
  FMX.Layouts, FMX.ListBox, UITypes, FMX.StdCtrls, FMX.TMSTypes, FMX.ScrollBox,
  FMX.ComboEdit, FMX.Controls.Presentation
  {$IFDEF DELPHIXE7_LVL}
  ,FMX.Controls.Presentation,
  FMX.ComboEdit, FMX.SpinBox
  {$ENDIF}
  ;

For the time I took the second  FMX.Controls.Presentation and the FMX.ComboEdit out and it works.

I am wondering if I will get any problems by doing this,...

Thanks

Thomas

I guess this is not the latest version of the TMS FMX UI Pack, as I verified this here and in the latest release the uses list is:


uses
  Classes, FMX.Forms, FMX.Memo, FMX.Menus, FMX.Edit, FMX.Controls, FMX.Types, FMX.TMSBaseControl,
  FMX.Layouts, FMX.ListBox, UITypes, FMX.StdCtrls, FMX.TMSTypes
  {$IFDEF DELPHIXE7_LVL}
  ,FMX.Controls.Presentation,
  FMX.ComboEdit, FMX.SpinBox
  {$ENDIF}
  ;
Thanks for the fast answer, I will install the latest version