Hi Edhy,I have had exactly what you are talking about in the past. To overcome it I have created a form level boolean variable that I set to true at the start of the form load, then false when the form load is over.
Then in my various events that fire during the form load, such as the one you describe, I put the line
IF _IsLoading = true then exit sub
---- THE GOTCHA
This method has worked for me in some place, and come back and bitten me in others.
What might work better, and I have done this also, is if your combo box is bound to a BO, maybe look at using the propertychanged events of the BO and running your code from there.
Best of luck
Geoff.