What Windows Form control would be a good fit for this use case?
Posted
by Sergio Tapia
on Stack Overflow
See other posts from Stack Overflow
or by Sergio Tapia
Published on 2010-04-25T19:33:46Z
Indexed on
2010/04/25
19:43 UTC
Read the original article
Hit count: 220
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.
© Stack Overflow or respective owner