| re: Access2000 data Entry Unbound Form With Subform
Hmm. Can you get the subsubform to generate more than one record? I
would think that you wouldn't be able to move to a second record there
if you're not saving the data somewhere (though I'm not sure of this).
If that's the case, you've got to look for some funky workaround.
One thought, which is probably how it would be done in a lot of other
programming languages, where there's no such thing as a bound form:
Make an array to store the data from the subsubform. Build a group of
controls that _looks like_ a continuous form, including navigation
buttons, which will have to shuffle data into and out of different rows
of controls, depending on what's in the array.
Then, when it's time to save all this, you save what's in the subform,
grab that ID value, and use that when you save the data from the array
into a table.
I did this for a form once, it's a bunch of work, but it's nothing too
complex. If you're going to do this, I would definitely suggest you
sketch out every ounce of code first--there are a bunch of operations
involved, and you'll want to abstract as much of it as possible, so you
can reuse as much code as possible.
I'll look for that code now, but I'm guessing it's long gone.
Jeremy |