how to fill the DROPDOWNLIST from vbs script?
Dropdownlist
Dim drop ' as dropdownlist
set drop = this.controls("yourdropdownlistctrl")
drop.listvalues ="value1=key1;value2=key2;value3=key3;";
how to fill the DROPDOWNLIST from vbs script?
Dim drop ' as dropdownlist
set drop = this.controls("yourdropdownlistctrl")
drop.listvalues ="value1=key1;value2=key2;value3=key3;";