Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
what is the method to select a single item at a time in a listbox.
Regards
Chriss
Select a value in the listbox, go into Properties for the listbox, select the option "Always One Selected Value".
Hi,
For this you need to do the following steps
1. Select single value in listbox
2. Listbox properties -> Select "Always one selected value" option.
Hope this helps you.
Regards,
Jagan.
Hi
Try like this
Listbox properties -> General -> Always One Selected Value
Before that, please select a value in the filter.
Hope it helps
Hi All,
Thanks for your reply, I would like to mange this in a script see below bold part, doc.Selected (Object doesn't support this property or method: 'doc.Selected').
How do I mange, please help...
Sub SelectCustomer
Set doc = ActiveDocument.GetSheetObject("LB01")
boxvalues = doc.GetPossibleValues
for i = lbound(boxvalues) to ubound(boxvalues)
' msgbox(boxvalues(i))
doc.Selected
call ExportToExcel
next
End Sub
Hi,
Is anybody can help me....
Regards
Chriss