The following insert statement will return a recordset with the Identity of the newly created customers id (if indeed your table is set up with idCustomers with the check box identity)
insert into Customers(chrName, chrPhone)
values("Smith,John", "5551212"
select idCustomers = @@identity
Then, you would use the id from the recordset to tie them together on your next insert statement
insert into CustProfile(idCustomers, chrHobby)
values(rs("idCustomers"

, "Underwater Basket Weaving"
Hope this helps!

) =====================
Dennis B
Remember - YOU ARE UNIQUE!!!... Just like EVERYONE ELSE! ;o)