Jim-
Don't use OpenQuery. Use:
Dim db As DAO.Database
Set db = CurrentDb
db.Execute "first query", dbFailOnError
db.Execute "second query", dbFailOnError
John Viescas, Author
Microsoft Access 2010 Inside Out
Microsoft Access 2007 Inside Out
Microsoft Access 2003 Inside Out
Building Microsoft Access Applications
SQL Queries for Mere Mortals
(Paris, France)
On Feb 5, 2014, at 4:45 PM, Jim Wagner <luvmymelody@yahoo.com> wrote:
John,I put the code in the On Open event and only the first query ran. The second query did not run. If I put the code behind a button on the form, both queries run. I added msgbox's to see if it gets past the 1st and second queries but the second msgbox never appears. Below is my code.Private Sub Form_Open(Cancel As Integer)' Enable error handler.On Error GoTo Error_ErrorHandlerDoCmd.SetWarnings FalseDoCmd.OpenQuery "qryDeleteAllFromSupervisorTable" 'Deletes all records in the supervisortableMsgBox "Hi"DoCmd.OpenQuery "qryAppendSupervisorTable" 'Appends all records from the tblSourcetblSupervisorList tableMsgBox "Hi"DoCmd.SetWarnings TrueExit_ErrorHandler:Exit SubError_ErrorHandler:Resume Exit_ErrorHandlerEnd SubJim Wagner
On Wednesday, February 5, 2014 8:41 AM, John Viescas <JohnV@msn.com> wrote:
Jim-AutoExec macro or put code to run the queries in the Load event of the form that you open at startup.John Viescas, AuthorMicrosoft Access 2010 Inside OutMicrosoft Access 2007 Inside OutMicrosoft Access 2003 Inside OutBuilding Microsoft Access ApplicationsSQL Queries for Mere Mortals(Paris, France)
On Feb 5, 2014, at 4:00 PM, Jim Wagner <luvmymelody@yahoo.com> wrote:Hello all,How do I have 2 queries run each time the database is opened. Do I have to use an AutoExec macro or is there another way of programming it?Thank YouJim Wagner
__._,_.___
| Reply via web post | Reply to sender | Reply to group | Start a New Topic | Messages in this topic (4) |
.
__,_._,___
Tidak ada komentar:
Posting Komentar