Finding Field when entering ID

ManuNeko

Registered User.
Local time
Today, 20:04
Joined
Aug 23, 2006
Messages
31
I have a form where I want to enter an ID and then see the Name in the next field.
How do I do that? Everytime I enter an ID I get "?Name" in the next field.

The Table is "BudgetLine" and I enter an ID from a table "Item"

Item
ID
Name
 
I didn't look at your database but the solution is most likely that you need to base the form on a query that joins the two tables. That way you can see both the numeric "id" and the text "description". If you use this technique, be sure to set the control properties for all the columns from the lookup table to locked = yes and enabled = no. This will prevent accidental updates to the lookup data.
 

Users who are viewing this thread

Back
Top Bottom