Customer ID combo box
Control source - Customer-ID
Row source - SELECT CUSTOMER.ID, CUSTOMER.[Customer ID] FROM CUSTOMER;
Bound column - 1
Column widths - 0";1"
Customer Address list box:
Control source - Customer-ID
Row source - SELECT CUSTOMER.ID, CUSTOMER.[Ship to Name 1] & " " & CUSTOMER.[Ship to Address 1-Line One] & " " & CUSTOMER.[Ship to Address 1-Line Two] & " " & CUSTOMER.[Ship to City 1] & " " & CUSTOMER.[Ship to State 1] & " " & CUSTOMER.[Ship to Zipcode 1] AS Expr1 FROM CUSTOMER;
Bound column - 1
Column widths - 0";1"
Item ID combo box
Control source - Item-ID
Row source - SELECT ITEM.ID, ITEM.[Item ID] FROM ITEM; Bound column - 1
Column widths - 0";1"
I am getting the info I want on the form. The only problem is that after I enter the info on the form, I can not get the customer ID, address and Item ID info entered via the form to populate the main table, all I get is a weird, random number. My ultimate goal is to produce a customer and Item ID report, but I can't because the main table does not have the corresponding customer/item info populated on the main table.
I tried creating a report directly from the form, instead of the table but could not get it to display all the mentioned fields contained on the form.
I am looking for a way to pass the current customer-id, address and item ID info after I enter it on the form to the customer ID, address and item fields on the table or be able to design a report that takes these fields, among others into the report.
FYI - I do not have any problems with any other fields in the report, just the ones from the list or combo boxes that are populated from other tables.