This topic is locked
A
ann 7/22/2010

Hi,
use Print page: Before SQL query event on the Events tab to change 'print' field value.

Here is just a sample:

if ($strWhereClause)

$str = "update tablename set print='yes' where ".$strWhereClause;

else

$str = "update tablename set print='yes' ";



where print is your actual print field name and tablename is actual table name.