order Amend tick box Refresh

kabir_hussein

Registered User.
Local time
Today, 09:13
Joined
Oct 17, 2003
Messages
191
Hi on my database i have a order amendment form where if any changes are made to an order, the order amendment check box ticks it self.

This works fine, and is very useful when printing a order change report as the query just looks for all "yes" for order amendment


but i have been told that a order may be changed more than once, so i was thinking is there anyway where i can make changes to a form then when i close the form and the reopen it the tick are set back to "NO" ready for new changes. this way the report function will work again, by only looking for "Yes" changes.

Thank you

below is a picture how the form looks
 

Attachments

  • OrderAmend.JPG
    OrderAmend.JPG
    41.5 KB · Views: 140
Last edited:
On the open event of the form add code like Me.MyCheckBoxName.Value = 0.
This however gives you no history of changes, just unchecks the box.
 
cheers mate works fine

thank you
 

Users who are viewing this thread

Back
Top Bottom