Grouping breaks on a windows form

rongrace

Member
Joined
Jul 2, 2012
Messages
23
Programming Experience
Beginner
I'm pretty new to .net and have been working my way through. I've created a number of forms where a user enters a single account number or nominal code and gets all the transactions related to that number or code returned in a new screen, but what happens if the input selection is a range and the output needs to appear with breaks in between each account, say something like the following, the user select a range of customer accounts, it could be 1, it could be 100. How do you cater for that on a windows form

Account : 001 Name : Joe Bloggs

Invoice Date Description Value Balance
0001 01/01/2012 Lots of Stuff 100.00 100.00
0002 02/01/2012 More Stuff 200.00 300.00
Payment 05/01/2012 BACS -50.00 250.00

Current Balance for Account 001 Joe Bloggs is 250.00

Account : 002 Name : Fred Bloggs

Invoice Date Description Value Balance
0010 01/01/2012 Lots of Stuff 1000.00 1000.00

Current Balance for Account 002 Fred Bloggs is 1000.00
 
Back
Top