1. 程式人生 > >tms web core 裏面調用pascal 過程。

tms web core 裏面調用pascal 過程。

cal begin asm button procedure this str tms ring

procedure show(s:string);
begin
showmessage(s);
end;

procedure TForm3.WebButton1Click(Sender: TObject);
begin
asm
// this is pure Javascript code
$impl.show("你好");
end;

end;

tms web core 裏面調用pascal 過程。