If I step into this code, it seems to be stuck in an infinite loop, yet if I run it, it's fine:
Option Explicit
Private Sub cmbGraph_Change()
Me.cmbGraph.Clear
Me.cmbGraph.List = Array("a", "b", "c")
Application.EnableEvents = False
Me.cmbGraph.ListIndex...