Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. unit Rybka;
  2.  
  3. interface
  4.  
  5. uses
  6. System.SysUtils, System.Classes, Vcl.Controls, Vcl.Grids;
  7.  
  8. type
  9. TRybka = class(TStringGrid)
  10. private
  11. { Private declarations }
  12. protected
  13. { Protected declarations }
  14. public
  15. { Public declarations }
  16. published
  17. { Published declarations }
  18. end;
  19.  
  20. procedure Register;
  21.  
  22. implementation
  23.  
  24.  
  25. procedure sortuj();
  26. var licznik, ilosc: Integer;
  27. begin
  28. licznik:=1;
  29. ilosc:=TRybka.Rows;
  30.  
  31.  
  32.  
  33.  
  34. end;
  35.  
  36. procedure Register;
  37. begin
  38. RegisterComponents('Samples', [TRybka]);
  39. end;
  40.  
  41. end.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement