Курсовая работа: Облік компютерів та комплектуючих на підприємстві
SG.Cells[1,Row]:=DEP[DepIndex].Comps[Index].USER;
SG.Cells[2,Row]:=DEP[DepIndex].Comps[Index].MVC.Firma;
SG.Cells[3,Row]:=DEP[DepIndex].Comps[Index].MM.Firma;
SG.Cells[4,Row]:=DEP[DepIndex].Comps[Index].MP.Firma;
SG.Cells[5,Row]:=DEP[DepIndex].Comps[Index].MMB.Firma;
SG.Cells[6,Row]:=DEP[DepIndex].Comps[Index].MR.Firma;
SG.Cells[7,Row]:=DEP[DepIndex].Comps[Index].MH.Firma;
end;
procedure TForm1.ShowDepartament(Index:Byte); //Вивести всю інф про відділ на екран
var i:Word;
begin
if ((Index>Count)or(Index<1)) then begin
Edit1.Clear;
SG.RowCount:=2;
SG.Rows[1].Clear;
Exit;
end;
for i:=0 to Count-1 do
if ComboBox1.Items.Strings[i]=DEP[Index].Name then begin
ComboBox1.ItemIndex:=i; Break;
end;
if DEP[Index].CompsCount>0 then
SG.RowCount:=DEP[Index].CompsCount+1
else begin
SG.RowCount:=2;
SG.Rows[1].Clear;
end;
Edit1.Text:=DEP[Index].Director;
for i:=1 to DEP[Index].CompsCount do