Delete picture from a form?

R

rost_b

Hi. I have a table with paths to a pictures on my HD, and an form,
that shows this pictures, via picture controls.
What I would like to do is be able to mark pictures by clicking on
them, and than, when I move to the next record, I'd like marked
pictures to be deleted.
I already figured out a way to mark them - I change bordercolor
property.
But how do I delete it from my table?

Thanks
 
N

NetworkTrade

In an action/event (and you will have to decide which) you would want to add
code for that event that essentially blanks the field (holding the path)...

field = ""
 
Top