{* * @(#) sdesigna.pas - System Designer program ('about' module). * (c) 1997 Ivan Maidanski http://ivmai.chat.ru * Freeware program source. All rights reserved. ** * Language: Delphi * Tested with: Borland Delphi DeskTop 2.01 for Windows 95 * Last modified: 1997-04-03 14:50:00 GMT+04:00 *} unit SDesignA; interface uses Forms, StdCtrls, Buttons, Controls, Classes, ExtCtrls; type TAboutForm = class(TForm) AboutPanel: TPanel; OKButton: TBitBtn; ProductName: TLabel; Version: TLabel; Copyright: TLabel; end; var AboutForm: TAboutForm; implementation {$R sdesigna.dfm} end.