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