Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hey all,
Let's say, I have two entries in my Multi Box:
What I need, is to display these fields as text and their labels.
That would look like:
I've tried this:
<...>
For i = 0 to multi_box_properties.MemberAttributes.Count - 1
msgbox multi_box.GetField(i).GetProperties.Name
msgbox multi_box_properties.MemberAttributes.Item(i).Label.v
Next
However when the loop reaches the second field (expression), I receive an error: "Object required: 'multi_box.GetField(...)' "
Any ideas?