Is there a way to get the combo's row count without it calling InitializeRow?
Thanks,~Kelly
Hi Kelly,
Probably not. The combo fires InitializeRow when the rows are created. My guess is that this happens lazily, so it will normally occur the first time you drop it down or try to reference a row in code. Calling the count has to access the rows collection, which causes the rows to get created.
Why do you care if InitializeRow fires or not?
I do not want it to be called multiple times so that my conditional appearance code does not occur too many times.