Problem binding array to listbox

R

Rob

Hello all:
When I bind a 2-D array to a listbox, only the first
column (column 0) will show. The columncount property is
set, and I think my code is correct, see below.
Any help?
Thanks
Rob

Dim arraytest(5,2)
set mypage=item.getinspector.modifiedformpages("Log")
arraytest(1,0) = "test10"
arraytest(0,1) = "TEST01"
mypage.Controls("ListBox2").list() = arraytest
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top