<cb:APNSoftComboBox id=c1 runat="server" StructureFileURL="./Structure.xml" TransitionEffect="Fade" ImagesFolderURL="./Images/" AutoPostBack="True" AutoScrollList="True" OpenListEvent="OnMouseOver"> </cb:APNSoftComboBox>
using APNSoft.WebControls; //Create component instance APNSoftComboBox myComboBox = new APNSoftComboBox(); //Set component properties myComboBox.ID = "c1"; myComboBox.StructureFileURL = "./Structure.xml"; myComboBox.TransitionEffect = APNSoftComboBox.TransitionEffectValues.Fade; myComboBox.ImagesFolderURL = "./Images/"; myComboBox.AutoPostBack = true; myComboBox.AutoScrollList = true; myComboBox.OpenListEvent = APNSoftComboBox.OpenListEventValues.OnMouseOver;