Zenon
|
| Posted: 05/10/2005, 10:42 AM |
|
I want to read a single value from a database.
I setted up DLookUp action in Before Show event:
Expression: "email_list.email"
Domain: "email_list"
Criteria: "email_list.id_email =1"
Convert result to: text
Type of Target: Variable
Target: sample_var
How to read this "sample_var" variable in textarea ?(I dont know how to set Control Source Type, Control Source, Data Type etc).
Zenek
|
|
|
 |
Martin K.
|
| Posted: 05/11/2005, 12:43 AM |
|
Hello.
You can put your DlookUp Value to the Textarea in Before Show from your Textarea.
global $DBConnection1;
$mess = CCDlookUp("Field", "db", "YourWhere", $DBConnection1);
$YourForm->YourTextarea->SetValue($mess);
greets
martin
|
|
|
 |
|