teufel
|
| Posted: 09/27/2002, 9:30 PM |
|
I inserted a code at my FORM event 'Before Show', setting property 'Visible' to FALSE but it didn't seem to work. What am I doing wrong here?
<?php
//BindEvents Method @1-350FE8A8
function BindEvents()
{
global $my_formSearch;
$my_formSearch->CCSEvents["BeforeShow"] = "my_formSearch_BeforeShow";
}
//End BindEvents Method
function my_formSearch_BeforeShow() { //my_formSearch_BeforeShow @205-5B0FE1D3
//Custom Code @339-2A29BDB7
// -------------------------
global $my_formSearch;
$my_formSearch->Visible = false;
// -------------------------
//End Custom Code
} //Close my_formSearch_BeforeShow @205-FCB6E20C
?>
|
|
|
 |
Nicole
|
| Posted: 10/01/2002, 7:08 AM |
|
Hello,
put the hide code in the page After Initialize event.
|
|
|
 |
|