You would be looking to reading lines of code into the VBA editor and setting the BeforeUpdate method to "[Event Procedure]". If you're good with macros then it will be easier.Is there a way to set an event for the dynamically created combo boxes. For instance, when one of the combo boxes changes values, I want it call a function that will switch a global variable from false to true. That way, when I change student it will popup a message box saying some values have changed and ask if the user wants to save.
Unfortunately, you can't. Form events apply to the form and not the controls within it.Just an after thought, can I have the form itself call that function when one of its combo boxes are updated?