There must be source of some type as Peter says, but the bound datasheet doesn't need to be bound to data though.
There are various choices.
Are you saying that you want to have a continuous form filled with data and then, only when you say "Go" have those rows inserted into your data table?
The most common method is a "work" table, a table which resides locally to your application FE and you append rows from that to the live table when you're ready to do so.
You can do this without even a work tabe if you're so inclined though. The source for the datasheet/continuous form can be created in memory only and assigned. (The append process is then iterative rather than a single append operation).
Just to question though:
>> "but I had to split it up "
Had to?
What sequence of circumstances left you with no choice?





by: peter57rPosted on 2009-06-10 at 00:14:11ID: 24588613
You cannot create an unbound datasheet view (or an unbound continuous form)
It is impossible.
If you want to persist with this approach you will need to acquire a grid control that is compatible with Access.