unit fOBS; interface uses System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants, FMX.Types, FMX.Graphics, FMX.Controls, FMX.Forms, FMX.Dialogs, FMX.StdCtrls, System.Rtti, FMX.Grid.Style, FMX.Grid, FMX.ScrollBox, FMX.Edit, FMX.Colors, FMX.ListBox, FMX.EditBox, FMX.SpinBox, FMX.Controls.Presentation; type TfrOBS = class(TFrame) sgWebChats: TStringGrid; btnCreateOBSChat: TButton; btnDeleteeChat: TButton; Label1: TLabel; IntegerColumn1: TIntegerColumn; StringColumn1: TStringColumn; StringColumn2: TStringColumn; btnCreateOBSNotify: TButton; private { Private declarations } public { Public declarations } end; implementation {$R *.fmx} end.