What Windows Form control would be a good fit for this use case?
- by Sergio Tapia
I'm going create an open source Help desk solution free of charge for small to medium businesses to use.
I'm currently working on the client application.
I want to have a list of tickets that have been opened by the user. So it would be like a table TicketsByUser:
Ticket Number | Type | Description | Date | Handled?
123456 | Hardware | My mouse broke | 10/20/2010 | No
123456 | Hardware | My mouse broke | 10/20/2010 | Yes
I was thinking of using ListView because of it's name, but I have zero experience with it, so maybe it's not what I'm looking for.
I'm going to be pulling the data from a WCF service which in turn pulls it from a MS SQL database.