yeppers
|
| Posted: 06/30/2002, 2:52 PM |
|
This is driving me nuts. Trying to set a value for a label field
and I get the undefined function error.
Anybody know why????
Here's the function:
function products_BeforeShow() { //products_BeforeShow @3-8FD3DA8F
//Retrieve Value for Control @73-9F64F5D2
global $products;
$value = "What the heck?";
$products->customer_name->SetValue($value);
//End Retrieve Value for Control
} //Close products_BeforeShow @3-FCB6E20C
|
|
|
 |
Joachim Uersfeld
|
| Posted: 06/30/2002, 3:07 PM |
|
Put your code in the BeforeShow event of the field customer_name, not in the event of the form.
|
|
|
 |
|