You've already forked lazarus-ccr
49 lines
765 B
ObjectPascal
49 lines
765 B
ObjectPascal
![]() |
unit colinsertunit;
|
||
|
|
||
|
{$mode objfpc}{$H+}
|
||
|
|
||
|
interface
|
||
|
|
||
|
uses
|
||
|
Classes, SysUtils, FileUtil, LResources, Forms, Controls, Graphics, Dialogs,
|
||
|
StdCtrls;
|
||
|
|
||
|
type
|
||
|
|
||
|
{ Tcolinsertfrm }
|
||
|
|
||
|
Tcolinsertfrm = class(TForm)
|
||
|
CancelBtn: TButton;
|
||
|
ReturnBtn: TButton;
|
||
|
GridNoEdit: TEdit;
|
||
|
BeforeColEdit: TEdit;
|
||
|
AfterColEdit: TEdit;
|
||
|
Label1: TLabel;
|
||
|
Label2: TLabel;
|
||
|
Label3: TLabel;
|
||
|
procedure FormShow(Sender: TObject);
|
||
|
private
|
||
|
{ private declarations }
|
||
|
public
|
||
|
{ public declarations }
|
||
|
end;
|
||
|
|
||
|
var
|
||
|
colinsertfrm: Tcolinsertfrm;
|
||
|
|
||
|
implementation
|
||
|
uses matmanunit;
|
||
|
|
||
|
{ Tcolinsertfrm }
|
||
|
|
||
|
procedure Tcolinsertfrm.FormShow(Sender: TObject);
|
||
|
begin
|
||
|
GridNoEdit.Text := matmanfrm.GridNoEdit.Text;
|
||
|
end;
|
||
|
|
||
|
initialization
|
||
|
{$I colinsertunit.lrs}
|
||
|
|
||
|
end.
|
||
|
|