Advertisement
nanda_danis

unit1.pas

Jul 25th, 2017
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pascal 0.34 KB | None | 0 0
  1. unit Unit1;
  2.  
  3. interface
  4.  
  5. uses
  6.   Classes, SysUtils, Controls,
  7.   RaApplication, RaBase, RaControlsVCL, RxGgCharts;
  8.  
  9. type
  10.   TForm1 = class(TRaFormCompatible)
  11.     RxGgCharts1: TRxGgCharts;
  12.   private
  13.     { Private declarations }
  14.   public
  15.     { Public declarations }
  16.   end;
  17.  
  18. var
  19.   Form1: TForm1;
  20.  
  21. implementation
  22.  
  23. {$R *.dfm}
  24.  
  25. end.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement