pecker
pecker

Reputation: 2037

Which GUI control is suitable for this purpose?

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

Answers (5)

RichK
RichK

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

Nasser Hadjloo
Nasser Hadjloo

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

Rob Fonseca-Ensor
Rob Fonseca-Ensor

Reputation: 15621

Try a ListBox

Upvotes: 5

Ahmed
Ahmed

Reputation: 7238

Most common control for that is the GridView

Upvotes: 0

Gerrie Schenck
Gerrie Schenck

Reputation: 22368

Well you have given the answer yourself I think: a TreeView?

Upvotes: 1

Related Questions