I hope you will excuse the simplicity of my question, I am coming from an Access and ASP world…
I am trying to navigate to a particular record when I update my select field (that is not the primary key)
Let me tell you what my form looks like:
Fields:
ID (Primary Key)
Client (select text field)
Detail1 (text)
details2 (text)
Here is the sql code for my select box:
SELECT ID, Client
FROM TABLE
ORDER BY Client
I also have the checkbox enabled to reload form when value has changed.
When I select the Client name, I want my form to navigate to that client’s record, but clearly I am missing something (an event) that executes after I select my client.
I have tried to use the ID field for the Select field, but for some reason (probably due to the PK) the field always looks disabled.
Thanks very much.
STeve