Your users may not be happy if they have to navigate 8000+ elements in a drop down control :)
Here is how I populate list items: I do this in a document level script that initializes empty controls, or in the JavaScript console. Regardless which way you select, you need to write some JavaScript that initializes the field. Here is code that assigns a list of con tries to a drop down contral (I've shortened the list quite a bit):
var lCountries = [
" ",
"United States",
"-------------",
"Afghanistan",
"Albania",
"...",
"Yemen",
"Zambia",
"Zimbabwe",
];
var f = this.getField("YourDropDownField");
if (f.numItems == 0)
{
f.setItems(lCountries);
}
Karl Heinz Kremer
PDF Acrobatics Without a Net
PDF Software Development, Training and More...
http://www.khkonsulting.com