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.

36 lines
653 B
Plaintext

unit u_op_seae_edi_modify;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, bsSkinCtrls, bsSkinBoxCtrls;
type
Tfrm_seae_edi_modify = class(TForm)
bsSkinCheckListBox1: TbsSkinCheckListBox;
bsSkinButton1: TbsSkinButton;
bsSkinButton2: TbsSkinButton;
procedure bsSkinButton1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
frm_seae_edi_modify: Tfrm_seae_edi_modify;
implementation
{$R *.dfm}
procedure Tfrm_seae_edi_modify.bsSkinButton1Click(Sender: TObject);
var i,c:integer;
error:string;
begin
end;
end.