Hi
Using VB.NET I created an excel sheet with list of items in dropdownlist.
Using the below code
With xlWorksheet.Range("A2", "A101").Validation
.Add(Type:=Microsoft.Office.Interop.Excel.XlDVType.xlValidateList, AlertStyle:=Microsoft.Office.Interop.Excel.XlDVAlertStyle.xlValidAlertStop, Operator:=Microsoft.Office.Interop.Excel.XlFormatConditionOperator.xlBetween, Formula1:="Construct,Testing,Review,Look Ahead Meetings,Process Audit,Process Improvement,Project Monitoring and control,Project Planning,Project Setup,Project Team Management,RCA Activities,Re-Estimation,Review,Review-Rework,Senior Management Reviews, Testing,Testing Rework,Training, Work Product Audit")
End With
But i can able to view the listbox upto "testing", rest of the items are not diplayed in the listbox why?
Is there any limit for dropdown list items, If so how to increase the limit?