method pushButton(var eventInfo Event)
var
sq SQL
db Database
endVar
db.open()
sq = SQL
update
":work:blanktst.db" t
set
t."Value" = null
where
t."Value" = True
endSQL
if not sq.executeSQL( db ) then
errorShow( "Can't Blank Field",
"Click [>>] for details..." )
endIf
endMethod