I have an application written in VBA for Excel that takes in a live data feed. Whenever there is a change in the data, various events are triggered within VBA.
I also have some UserForms with ComboBoxes on them. My problem is that when I click the down arrow on the ComboBox and try to make a selection, the moment I get an update from the data feed, the ComboBox resets. What I would like to do is pause the events while I'm making my selection in the ComboBox and unpause it when I'm done.
I feel like this should be a simple thing to do but I'm just not sure which functions I should be putting my code into. Any help would be greatly appreciated. Thanks.