How can I print all array values on report?
Here is a part of my code:
....
item(0) = "test1"
item(1) = "test2"
item(2) = "test3"
For i = 0 To 2
m_subReport.FormulaFields.GetItemByName("ItemName"
.Text= "'" & item(i) & "'"
Next
.......
But when I'm printing a report only the last array value is shown (test3). What should I do?
Here is a part of my code:
....
item(0) = "test1"
item(1) = "test2"
item(2) = "test3"
For i = 0 To 2
m_subReport.FormulaFields.GetItemByName("ItemName"
Next
.......
But when I'm printing a report only the last array value is shown (test3). What should I do?