procedure TForm1.CategoryButtons1SelectedCategoryChange(Sender:
TObject;
const Category: TButtonCategory);
begin
PrintTabel();
end;
procedure TForm1.ComboBox1Change(Sender: TObject);
begin
StringGrid1.Cells[StringGrid1.Col, StringGrid1.Row] :=ComboBox1.Text;
ComboBox1.Visible :=false;
end;
procedure TForm1.DBLookupComboBox1CloseUp(Sender: TObject);
begin
StringGrid1.Cells[StringGrid1.Col, StringGrid1.Row] :=
DBLookupComboBox1.Text;
DBLookupComboBox1.Visible := False;
end;
procedure TForm1.FormShow(Sender: TObject);
var i: integer;
begin
dm.tabPodr.First;
i:=0;
while not dm.tabPodr.Eof do
begin
CategoryButtons1.Categories.Add;
CategoryButtons1.Categories.Items[i].Caption:=dm.tabPodrpdName.Value;
CategoryButtons1.Categories.Items[i].Data:=Pointer(dm.tabPodrpdID.Value);