dynamic adding of tabcontrols

  • Thread starter Thread starter chriske911
  • Start date Start date
C

chriske911

I have a main account with several subrecords
now, since the subrecords are limited (9 max) and have many fields
I was thinking of dynamically building tabpages instead of using a
continuous subform
is this possible?

each tabpage would get it's title from one particular field of the
subrecord

thnx
 
Chris,
If I understand correctly, I think you're trying to create a max of 9
tabs... each to hold one subform record.
I would think this would be "somehow" be possible, but only after many
hours of effort and a lot of experienced coding, and in the end, be
extremely cumbersome and difficult to work with.
Try creating just a normal continous subform with 9 records, and displays
just those very critical fields you need to see from the Main form. Maybe 8
or 9 fields that you need to assist the user in identifying the diffrence
between the subform records.
Create a "jump" function that... when you double click on a subform
record, a new, full sized form opens up to that particular record, and
displays ALL the ancillary fields that you need to edit or view. Upon
working on that record, and upon closing of that "jump" form, you'll return
right back to your normal form.
Practically all commercial software uses this same method. If you want
to edit a deposit in your checkbook program, you jump out to the deposit
slip... do your work, and return to the checking account you came from.
 
Back
Top