Creating a entry from and saving multi docs

Scenario:A user clicks one button to open a form to enter what he has dome during the day.

for example:

ref 03001 - project1 - x hours

ref 03004 - project5 - x hours

ref 03009 - project8 - x hours

etc…

he must be able to enter as many entrys to fullfill a day.

Then he saves the document and this must generate a document for each entry he made.

Any ideas how to do this???

Thanks

Subject: Creating a entry from and saving multi docs.

Not so difficult as it looks.in the Qsave you set code like:

for i% = 0 to ubound(reffield)

set doc = db.createdocument

with doc

.reffield = uidoc.reffield(i%)

.otherfield = uidoc.otherfield(i%)

end with

call doc.save(false,false)

next