blob: 8f6d9ec60ba41185c88f169251f489a9ffb8eb2e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
class Home extends TPage
{
public function pbar1_complete($sender,$param)
{
$this->label1->Text="Progressbar complete!";
}
public function pbar1_changed($sender,$param)
{
$this->label1->Text="Progressbar changed.";
}
}
|