Курсовая работа: Облік компютерів та комплектуючих на підприємстві
l: DWORD;
begin
l := GetWindowLong(Self.Handle, GWL_STYLE);
l := l and not (WS_MAXIMIZEBOX);
l := SetWindowLong(Self.Handle, GWL_STYLE, l);
SG.Cells[0,0]:='№';
SG.Cells[1,0]:='Працівник';
SG.Cells[2,0]:='Відео карта';
SG.Cells[3,0]:='Монітор';
SG.Cells[4,0]:='Процесор';
SG.Cells[5,0]:='Материнська карта';
SG.Cells[6,0]:='Оперативна пам’ять';
SG.Cells[7,0]:='Жорсткий диск';
Load;
end;
procedure TForm1.Button3Click(Sender: TObject);
begin
Form2.Caption:='Додати комп`ютер';
if ((DEP[ComboBox1.ItemIndex+1].CompsCount>=100)or
(ComboBox1.ItemIndex<0)) then Exit;
ADD:=True;
Form2.Show;
Form2.ClearEdit;
end;
procedure TForm1.ShowComp(DepIndex,Index,Row:Byte); //Показати комп’ютер в таблиці
begin
if ((Row<1)or(Index<1)or(Index>DEP[DepIndex].CompsCount)) then Exit;
if Row>=SG.RowCount then SG.RowCount:=Row+1;
SG.Rows[Row].Clear;