blob: c5e9e3572f3f04f13dfc2fda32f220d642f842f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php
class Ticket290 extends TPage
{
function customValidate($sender, $param)
{
$this->label1->Text = "Doing Validation";
}
function button_clicked($sender, $param)
{
$this->label2->Text = $sender->Text . " Clicked!";
}
}
?>
|