Simple User Interface - How To?

gregtriplett

New member
Local time
Today, 13:50
Joined
Apr 6, 2009
Messages
6
I've got 3 tables. One for "products", one for "customers", and one that shows which products go with each customer. This 3rd table is called "product_to_customer" table. I'd like to create a form that provides a simple user interface where the user enters a customer name and a product name. If the customer name and product name are already in the their respective tables the form automatically enters the product and customer information into the "product_to_customer" table to show the desired new product/customer relationship. If either the product name is not already in the "products" table and/or if the customer name is not already in the "customers" table the form automatically enters this new product and/or new customer into the respective tables and then also makes an entry into the "product_to_customer" table to show their relationship. Can anyone get me started on this? Thanks in advance...
 
A form? SQL server is a backend database only...it has no forms
 
If your tables are in an SQL server, you will need to use something as the front end to create a User Interface.

A few options are:

MS Access
VB
.NET
ASP ( Web Page)
An ODBC compliant development system

Note it is possible to create front ends in all of the above and they can all be used at the same time.
 
Looks like I placed this in the wrong section of this forum. Thanks for the feedback. I've re-submitted under the VBA section of the forum.... I'm a newbie to this forum..
 
Last edited by a moderator:

Users who are viewing this thread

Back
Top Bottom