linedlg.pas
上传用户:xtonglei
上传日期:2019-08-12
资源大小:6118k
文件大小:3k
源码类别:

TAPI编程

开发平台:

C++ Builder

  1. {******************************************************************************}
  2. {*        Copyright 1999-2003 by J.Friebel all rights reserved.               *}
  3. {*        Autor           :  J鰎g Friebel                                     *}
  4. {*        Compiler        :  Delphi 7                                         *}
  5. {*        System          :  Windows XP / 2000                                *}
  6. {*        Projekt         :  TAPI Komponenten (TAPI Version 1.4 bis 3.0)      *}
  7. {*        Last Update     :  24.07.2003                                       *}
  8. {*        Version         :  0.3                                              *}
  9. {*        EMail           :  tapi@delphiclub.de                               *}
  10. {******************************************************************************}
  11. {*                                                                            *}
  12. {*    This File is free software; You can redistribute it and/or modify it    *}
  13. {*    under the term of GNU Library General Public License as published by    *}
  14. {*    the Free Software Foundation. This File is distribute in the hope       *}
  15. {*    it will be useful "as is", but WITHOUT ANY WARRANTY OF ANY KIND;        *}
  16. {*    See the GNU Library Public Licence for more details.                    *}
  17. {*                                                                            *}
  18. {******************************************************************************}
  19. {*                                                                            *}
  20. {*    Diese Datei ist Freie-Software. Sie k鰊nen sie weitervertreiben         *}
  21. {*    und/oder ver鋘dern im Sinne der Bestimmungen der "GNU Library GPL"      *}
  22. {*    der Free Software Foundation. Diese Datei wird,"wie sie ist",           *}
  23. {*    zur Verf黦ung gestellt, ohne irgendeine GEW腍RLEISTUNG                  *}
  24. {*                                                                            *}
  25. {******************************************************************************}
  26. {*                          www.delphiclub.de                                 *}
  27. {******************************************************************************}
  28. unit linedlg;
  29. interface
  30. uses
  31.   Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  32.   Dialogs, StdCtrls;
  33. type
  34.   TSelLineDlg = class(TForm)
  35.     ComboBox1: TComboBox;
  36.     Button1: TButton;
  37.   private
  38.     { Private-Deklarationen }
  39.   public
  40.     { Public-Deklarationen }
  41.   end;
  42. var
  43.   SelLineDlg: TSelLineDlg;
  44. implementation
  45. {$R *.dfm}
  46. end.