Dropdownlist

how to fill the DROPDOWNLIST from vbs script?

#403312

Dim drop ' as dropdownlist
set drop = this.controls("yourdropdownlistctrl")
drop.listvalues ="value1=key1;value2=key2;value3=key3;";

#403342