I have a field on a form that is populated from a selection of databases. The value in the doc prop looks like this:
Field Name: Filename
Data Type: Text
Data Length: 75 bytes
Seq Num: 1
Dup Item ID: 0
Field Flags: SUMMARY
““App\Dev\ACTION.NSF” “App\Dev\CONFIG.NSF” “App\Dev\LEADS.NSF””
Since this appears to be a text string, I used @Explode to get this:
Field Name: FilenameExplode
Data Type: Text List
Data Length: 75 bytes
Seq Num: 1
Dup Item ID: 0
Field Flags: SUMMARY
“App\Dev\ACTION.NSF”
“App\Dev\CONFIG.NSF”
“App\Dev\LEADS.NSF”
I am lead to believe this is a list or an array. So when I use this last field as a variant in my agent in LS, it pops up as a string. See below:
Dim item As NotesItem
Dim varList As Variant
varlist = currdoc.GetItemValue(“FilenameExplode”)
varlist in debugger actually says String as the datatype and shows this as a text string:
[0] - “App\Dev\ACTION.NSF; App\Dev\CONFIG.NSF; App\Dev\LEADS.NSF” - String
I am really confused…