Hi all,
I have a table Customer, which relates to an address table. Each customer has one address. I'd like to have one form that allows the user to create their Customer and Address at the same time.
I currently have an Address field in tblCustomer. It's a lookup field based on this Row Source:
SELECT [tblAddress].[ID], [tblAddress].[AddressLine1] + ', ' + [tblAddress].[City] FROM [tblAddress] ORDER BY [AddressLine1];
This allows me to choose an existing address from a dropdown, but not create a new one (from what I can tell).
Thanks!
-------------------------
Matt Grande
C# Master.
Ruby on Rails Admirer.
ActionScript Student.
JavaScript Hate-Monger.
I have a table Customer, which relates to an address table. Each customer has one address. I'd like to have one form that allows the user to create their Customer and Address at the same time.
I currently have an Address field in tblCustomer. It's a lookup field based on this Row Source:
SELECT [tblAddress].[ID], [tblAddress].[AddressLine1] + ', ' + [tblAddress].[City] FROM [tblAddress] ORDER BY [AddressLine1];
This allows me to choose an existing address from a dropdown, but not create a new one (from what I can tell).
Thanks!
-------------------------
Matt Grande
C# Master.
Ruby on Rails Admirer.
ActionScript Student.
JavaScript Hate-Monger.