A
Agnes
my datafield is "bit" type, I can put 1 or zero into the current item.
e.g bm.current.item("lock") = 1 , (sucesfully)
However, if bm.current.item("lock") = 1 then messagebox.show("warning")
The above statment didn't work . Finally, I solve that by...if
bm.current.item("lock") = true then messagebox.show("warning")
I don't understand.. why (1) cannot be used ???
e.g bm.current.item("lock") = 1 , (sucesfully)
However, if bm.current.item("lock") = 1 then messagebox.show("warning")
The above statment didn't work . Finally, I solve that by...if
bm.current.item("lock") = true then messagebox.show("warning")
I don't understand.. why (1) cannot be used ???