add to two forms at once?

add to two forms at once?

Hi, I'm pretty sure this won't be possible until the ability to add records in code is finished, but just to make sure...

I have a database of people with three main forms, "Person", "Waitlist", and "Member". Both Waitlist and Member link to the Person form via a key field ("FirstLast", the concatenation of the first and last names). This works just fine when I want to display the information in a View, but adding is not very efficient.

Here's what I want. I want a form (not a view!) that includes fields for both the Person and Waitlist forms. That is, I want to be able to add entries to both forms at the same time. Is that possible?

I suspect that I could use the API to do this, if I wanted to use a Javascript interface instead of the built-in interface. It would just add the Person, then add the Waitlist separately.

While I'm thinking of it, here's another thing I want. I want to have a checkbox in the Member form that, when selected, causes the record (with the identical key field) to be deleted from the Waitlist form. Is that possible? I can't seem to see a delete command in Deluge...

Thank you!