In MS-Access, I am getting an error message when I try to read a multi-selected item from list box :
Set jso = pdFormCapture.GetJSObject
If jso.numFields Then
For I = 0 To jso.numFields - 1
FV = ""
fn = ""
fn = Trim(jso.getNthFieldName(I))
Set f = jso.getField(fn)
If f.Type = "listbox" Or f.Type = "Combobox" Then
FV = f.Value
End If
Hope this can help.
Max Wyss.