jvcllaz: Add TJvYearGrid

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@6241 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz
2018-03-13 00:10:34 +00:00
parent d041eee65c
commit 67811dddf6
11 changed files with 1944 additions and 4 deletions

View File

@ -0,0 +1 @@
tjvyeargrid.bmp

View File

@ -0,0 +1 @@
lazres ../../../resource/jvjansreg.res @images.txt

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1,27 @@
unit JvJansReg;
{$mode objfpc}{$H+}
interface
uses
SysUtils;
procedure Register;
implementation
{$R ../../resource/jvjansreg.res}
uses
Classes, JvDsgnConsts, JvYearGrid;
procedure Register;
begin
RegisterComponents(RsPaletteJvcl, [
TJvYearGrid
]);
end;
end.