selahlynch
Registered User.
- Local time
- Today, 03:06
- Joined
- Jan 3, 2010
- Messages
- 63
I'm trying to improve my understanding of datasheets...
I have a query that I saved in my Access application. I can see its SQL as a variable in Visual Basic by typing the following into the immediate window:
Now I am viewing my query in Datasheet View. I use the GUI to sort by EmpName. After sorting, there is no change to the SQL property of the query definition. Is there a way I can see this sort stored in another Visual Basic variable?
**I am working with Access 2007
I have a query that I saved in my Access application. I can see its SQL as a variable in Visual Basic by typing the following into the immediate window:
Code:
? CurrentDb.QueryDefs("TestQry").SQL
SELECT Employees.EmpName, Employees.EmpNumber
FROM Employees;
**I am working with Access 2007