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.

46 lines
987 B
Plaintext

unit u_op_seae_state;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, u_op_sate, BusinessSkinForm, Menus;
type
Tfrm_op_seae_state = class(TForm)
bsBusinessSkinForm1: TbsBusinessSkinForm;
fra_op_state1: Tfra_op_state;
procedure FormClose(Sender: TObject; var Action: TCloseAction);
procedure fra_op_state1bsSkinButton11Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
frm_op_seae_state: Tfrm_op_seae_state;
implementation
uses u_send_msg, my_sys_function;
{$R *.dfm}
procedure Tfrm_op_seae_state.FormClose(Sender: TObject;
var Action: TCloseAction);
begin
frm_op_seae_state.Hide;
frm_op_seae_state.ManualFloat(frm_op_seae_state.BoundsRect );
action:=cafree;
frm_op_seae_state:=nil;
end;
procedure Tfrm_op_seae_state.fra_op_state1bsSkinButton11Click(
Sender: TObject);
begin
fra_op_state1.bsSkinButton11Click(Sender);
end;
end.