Subversion Repositories ExamClock

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
9 ron.wellst 1
unit Unit2;
2
 
3
{$mode objfpc}{$H+}
4
 
5
interface
6
 
7
uses
8
  Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, ExtCtrls,
9
  Buttons, StdCtrls;
10
 
11
type
12
 
13
  { TForm2 }
14
 
15
  TForm2 = class(TForm)
16
    CancelButton: TBitBtn;
17
    OkButton: TBitBtn;
18
    FoundationCheckBox: TCheckBox;
19
    IntermediateCheckBox: TCheckBox;
20
    AdvancedCheckBox: TCheckBox;
21
  private
22
    { private declarations }
23
  public
24
    { public declarations }
25
  end;
26
 
27
var
28
  Form2: TForm2;
29
 
30
implementation
31
 
32
{$R *.lfm}
33
 
34
end.
35