You've already forked lazarus-ccr
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@7886 8e941d3f-bd1b-0410-a28a-d453659cc2b4
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.
|
|
|