We all have a thirst for wonder. It's a deeply human quality... There's wonder and awe enough in the real world. Nature's a lot better at inventing wonders than we are.
HELP!!!! I desperately want to disable the Customer drop down from changes after the order data has been completed. For Example - the sales person types in the order - moves to a new record at this point I want to disallow any changes to the form chosen Client by sloppy data entry.
Reply from Richard Rost:
In the form's OnCurrent event you can deal with what happens when you move from record to record (or load a form). You can say something like:
If IsNull(CustomerID) then 'no record yet Me.AllowEdits = TRUE Else 'record exists Me.AllowEdits = FALSE End If
This will effectively prevent anyone from EDITING a record that already has data in it, but won't stop them from adding a new one.
I'm actually going to be making a TIP video on this concept soon.
Sorry, only students may add comments.
Click here for more
information on how you can set up an account.
If you are a Visitor, go ahead and post your reply as a
new comment, and we'll move it here for you
once it's approved. Be sure to use the same name and email address.