How to create records programmatically

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a system that involves number of combo boxes that users has to select
from in order to input data and they do not find it very freindly; as there
is lots of items to select and lots of other fields to complet for the data
entry. The records are statistical recorde per project and upon selecting a
project on double click event, I would like all the statistical items to be
pre-selected in a way so that the user can then only enter the figures for
the rest of the fields.

I know there must be a way to do this, so if any one can point me in the
right direction I would very much appreciate it.

Thank you
 
There are a couple of ways you can do this, depending on where you get the
values you want loaded and when you want them loaded. Assuming that the
values are static and will always be the same regardless of other data
values, is to assign the values to the Default Value property of your combo
boxes. If, on the other hand, the values may be different based on other
data, you will have to find an event to load the values into the combo boxes
that fires when you have the data necessary to assign the values.
 
Back
Top