Reputation: 2037
I'm using winforms of .NET & C#. I'm developing a medical software. I need to implement "Patient History". When doctor enters the PatientID. All the previous appointment dates will be displayed in a side panel. These entries will dynamically fetched from the database. Interface will be more or less similar to Histroy in web browser. Except that I'm not going to use tree control and categorize entries into 'today' 'yesterday' 'older than 7 days' 'last week' etc..
What controls do I need to use. I'm not clear about this. If you have any better idea. Please mention.
Upvotes: 1
Views: 135
Reputation: 11871
It looks like there's a few different ideas given so far. How about mocking out each the ideas (on paper, or code if you've got time) and try to get a feel for which works best for you.
Upvotes: 0
Reputation: 12610
If I were you, I used a page like this
.......................................................................
. .
. Doctor Entry for patient ID (search box) .
. .
.......................................................................
. . .
. . .
. Patient Picture . patient Info (most on Label) .
. . .
. . .
.......................................................................
. .
. .
. .
. Patient History Only In GridView .
. (which Customized as well as Possible) .
. .
.......................................................................
Upvotes: 1
Reputation: 22368
Well you have given the answer yourself I think: a TreeView?
Upvotes: 1