2008-07-06 17:36:37 -04:00
|
|
|
unit fODSaveQuick;
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
uses
|
|
|
|
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
|
2010-07-07 16:31:10 -04:00
|
|
|
fAutoSz, Buttons, ExtCtrls, StdCtrls, ORCtrls, VA508AccessibilityManager;
|
2008-07-06 17:36:37 -04:00
|
|
|
|
|
|
|
type
|
|
|
|
TfrmODQuick = class(TfrmAutoSz)
|
|
|
|
Label1: TLabel;
|
|
|
|
Edit1: TCaptionEdit;
|
|
|
|
ORListBox1: TORListBox;
|
|
|
|
Label2: TLabel;
|
|
|
|
SpeedButton1: TSpeedButton;
|
|
|
|
SpeedButton2: TSpeedButton;
|
|
|
|
Button1: TButton;
|
|
|
|
Button2: TButton;
|
|
|
|
Bevel1: TBevel;
|
|
|
|
Bevel2: TBevel;
|
|
|
|
BitBtn1: TBitBtn;
|
|
|
|
private
|
|
|
|
{ Private declarations }
|
|
|
|
public
|
|
|
|
{ Public declarations }
|
|
|
|
end;
|
|
|
|
|
|
|
|
var
|
|
|
|
frmODQuick: TfrmODQuick;
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
{$R *.DFM}
|
|
|
|
|
|
|
|
end.
|