blob: 819e2d5828c525f2ca63fefd1c7edaa56283b0a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php
class Home extends TPage
{
public function onLoad($param)
{
parent::onLoad($param);
$this->lab1->Text="";
}
public function executeTransaction($sender, $param)
{
$this->lab1->Text="executeTransaction ok";
}
}
|