Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Putting data from array into a text box

Status
Not open for further replies.

robinsql

Programmer
Aug 2, 2002
236
0
0
IE
Hi all,
How do I get the data from an array, into a text box on a report?
I have the three following arrays populated from a list view...

g_asPupilNum(j) = lvPupils.ListItems(i).Text
g_asNames(j) = lvPupils.ListItems(i).SubItems(1)
g_asClassName(j) = lvPupils.ListItems(i).SubItems(2)

How can I get the first text box on my report to display the first item from my array?

Which property should I use where I have placed an X in the following line of code?

objAccess.Reports(0).Controls!txtClass.X = g_asClassName(j)

Or is this the wrong way entirely?

Any help very gratefully received.
 
Arrays to reports?

Difficult, probably easier to create a temp report table, drop the arrays info in as you require and run the report.


Vince
 
Yes, I was thining of a temp table, but is there even any way I can access what comes out in the text box without setting a ControlSource?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top