www.pudn.com > yrsCapture.zip > Note.pas


unit Note; 
 
interface 
 
uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls, 
  Buttons, ExtCtrls, mmlabel; 
 
type 
  TNoticeForm = class(TForm) 
    OKBtn: TButton; 
    Bevel1: TBevel; 
    MMLabel1: TMMLabel; 
    MMLabel2: TMMLabel; 
    Label1: TLabel; 
    Label2: TLabel; 
    Label3: TLabel; 
    Label4: TLabel; 
    Label5: TLabel; 
    Label6: TLabel; 
  private 
    { Private declarations } 
  public 
    { Public declarations } 
  end; 
 
var 
  NoticeForm: TNoticeForm; 
 
implementation 
 
{$R *.DFM} 
 
end.