Following assumes the same number of items in each list
k = List1.listcount
For n = 1 to k
Printer.Print Tab(x); List1.List(n);
Printer.Print Tab(y); List2.List(n)
Next n
x and y are for where you want to position the items on output. Put in your own values
|