Hi Guys,
I'm stuck! I've got a class of bidders (called mobjbidder) ... and in there I have their name, starting price, target price and bid increment (each are called mobjbidder.name , mobjbidder.startingprice ... etc)
These have all been loaded into the array.
I have a listbox in a userform with 4 columns. I want each bidders name and info on each row, and each column to contain just the name, starting price etc.
I've tried:
But this doesnt work ....
Any help would be much appreciated!!!
Many Thanks
James
I'm stuck! I've got a class of bidders (called mobjbidder) ... and in there I have their name, starting price, target price and bid increment (each are called mobjbidder.name , mobjbidder.startingprice ... etc)
These have all been loaded into the array.
I have a listbox in a userform with 4 columns. I want each bidders name and info on each row, and each column to contain just the name, starting price etc.
I've tried:
Code:
For i = 0 To UBound(mobjBidder())
frmAuctionProject.ListBoxBids.AddItem mobjBidder(i).Name
Next i
But this doesnt work ....
Any help would be much appreciated!!!
Many Thanks
James