What is the absolute fastest way to populate a TWebComboBox? I've got 500 or so items, and it doesn't seem to matter what I try, it still takes a few seconds.
If I set the HTML directly, it is almost instant, but then I get index out of bounds errors presumably because the TWebComboBox doesn't know it has items now.
I've tried things like cmb.BeginUpdate/cmb.EndUpdate, and cmb.Items.Add vs. cmb.Items.AddStrings but the results are about the same?
I haven't run any tests on TWebLookupCombos but I'm guessing whatever works here would work there as well?