You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
400 B
Plaintext
29 lines
400 B
Plaintext
unit u_amend_shenhe;
|
|
|
|
interface
|
|
|
|
uses
|
|
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
|
|
Dialogs, StdCtrls;
|
|
|
|
type
|
|
Tfrm_amend_shenhe = class(TForm)
|
|
Button1: TButton;
|
|
Button2: TButton;
|
|
private
|
|
{ Private declarations }
|
|
public
|
|
{ Public declarations }
|
|
bsno:string;
|
|
|
|
end;
|
|
|
|
var
|
|
frm_amend_shenhe: Tfrm_amend_shenhe;
|
|
|
|
implementation
|
|
|
|
{$R *.dfm}
|
|
|
|
end.
|