Курсовая работа: Расчетная методика проектирования программного комплекса
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, TeEngine, Series, ExtCtrls, TeeProcs, Chart, Math, StdCtrls;
const
MaxN = 1000;
type
TForm2 = class(TForm)
Chart1: TChart;
Series1: TBarSeries;
Series2: TBarSeries;
Series3: TLineSeries;
GroupBox1: TGroupBox;
CheckBox1: TCheckBox;
CheckBox2: TCheckBox;
CheckBox3: TCheckBox;
procedure CheckBox1Click(Sender: TObject);
procedure CheckBox2Click(Sender: TObject);
procedure CheckBox3Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
procedure Raschet;
end;
var
Form2: TForm2;
implementation
uses Unit1, uMath;
{$R *.dfm}
{ TForm2 }