Loading |
VBScript |
JavaScript |
Powershell |
Search Options: List Selected Items in a Multi-select ListboxContent of List Selected Items in a Multi-select Listbox.vbsMD5 Hash: 41428CD88122A4929B59A6A7CD2C7BCD |
||
' Description: Sample HTML function that lists all the items that were selected in a multi-select listbox.
Sub RunScript For i = 0 to (Dropdown1.Options.Length - 1) If (Dropdown1.Options(i).Selected) Then strComputer = strComputer & Dropdown1.Options(i).Value & vbcrlf End If Next Msgbox strComputer End Sub | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |