blob: e440fc5e3bc06e6757c8574182b8cef3a036782e (
plain)
| 1
2
3
4
5
6
7
8
9
10
 | <?php
class Sample4 extends TPage
{
	public function wizardCompleted($sender,$param)
	{
		$this->Result->Text="Your favorite color is: " . $this->DropDownList1->SelectedValue;
	}
}
 |