PPC Application design question

  • Thread starter Thread starter Showjumper
  • Start date Start date
S

Showjumper

I am working on a veterinary specific calculator to use on my axim 50v. I
expcet to end up with some 60 or 70 possible calculations I am using user
controls for each individual cal. For example ia have a user control for
corrected, sodium, one for corrected calclum, one for serum osmolality etc.
I do a select case in the main form to load the right user control based on
which treeview node is selected. What i am wondering is since i expect to
have so many pssoble calcs, is it efficiet to have a select case with that
many possible conditions or is there a better more efficitent way?

Ashok Padmanabhan DVM
 
If the Forms are regular enough you could make use of some "building
block" panels and rearrange them upon tree node changes.
 
Try to reuse parts of your UI to build the different combinations for
each calculation dialog.
 
Back
Top