unit WCTGN;
interface
uses
Business.System, Business.Model, Business.Model.Flow, Business.Model.Org;
type
TWCTGN = class(TFunc)
private
{private declarations}
procedure DoRun;override;
public
{public declarations}
end;
implementation
procedure TWCTGN.DoRun;
begin
inherited DoRun;
Borland.Delphi.ShellAPI.ShellExecute(0, 'open', 'IEXPLORE.EXE',
'http://www.sohu.com', '', Borland.Delphi.Windows.SW_SHOW);
Terminate;
end;
end. |