CajunCenturion
Programmer
I have taken over an Access project started by another individual, and have across the following situation.
There is an update query in the form
Where Query_Name is the name of Select Query in the form
I have never encountered a situation where an Update Query is updating a Select Query. Can anyone shed some light on just what this type of construct actually does? (or is my first impression correct?)
Thanks
Good Luck
--------------
As a circle of light increases so does the circumference of darkness around it. - Albert Einstein
There is an update query in the form
Code:
UPDATE Query_Name SET Query_Name.Field1=Null
Code:
SELECT Table_Name.Field1, etc,etc
FROM Table_Name
WHERE Table_Name.Field1 = [Forms]![FormName]![TextBox]
Thanks
Good Luck
--------------
As a circle of light increases so does the circumference of darkness around it. - Albert Einstein