ComboBoxe Problem

I am loading dynamic data into comboboxes, but they lock up when clicking on the second one. regardless of which order I click on them, it is always the second click that locks my application.

Here is my code for the remoting services. It displays the first items, therefore, I am sure it’s loading the content from each correctly, not to mention I can pull down one of the boxes the first time.

 
 function handleGetOption1(re:ResultEvent)
 {
  var rs:RecordSet = RecordSet(re.result); 
  //_root.loadOption1ComboBox(rs);
  DataGlue.bindFormatStrings(_root.proddetails_mc.option1_cb, rs,"#optionitemname#", "#optionitemname#");
 }
 
 function handleGetOption2(re:ResultEvent)
 {
  var rs:RecordSet = RecordSet(re.result); 
  //_root.loadOption2ComboBox(rs); 
  DataGlue.bindFormatStrings(_root.proddetails_mc.option2_cb, rs,"#optionitemname#", "#optionitemname#");
 }
 
 function handleGetOption3(re:ResultEvent)
 {
  var rs:RecordSet = RecordSet(re.result); 
  //_root.loadOption3ComboBox(rs); 
  DataGlue.bindFormatStrings(_root.proddetails_mc.option3_cb, rs,"#optionitemname#", "#optionitemname#");
 }

Not sure what the deal is. I was using custom functions to loadOption1ComboBox with the recordset, but found the DataGlue function to do it all in one simple statement, but either way it locks up???:puzzle: :puzzle:

Now for the really weird part… it all works with V1 components, it’s the V2 combobox that is not working!!!:snug:

any help would be nice!!!