Re: turn hourglass off
From: RobFMS (Rob_at__DropThis_fmsinc.com)
Date: 03/10/04
- Next message: Laurie Brand: "Re: DoCmd.GotoRecord in Access97 vs. Access 2000"
- Previous message: Roger Carlson: "Re: Automatic Incremental Search"
- In reply to: Emily V: "turn hourglass off"
- Next in thread: Emily V: "Re: turn hourglass off"
- Reply: Emily V: "Re: turn hourglass off"
- Messages sorted by: [ date ] [ thread ]
Date: Wed, 10 Mar 2004 11:00:34 -0500
Emily
If you are opening a query for the user to perform edits, then it is not
necessary to use the hourglass. It is recommended to use the hourglass when
you have an action query, such as when you are executing a delete query or
an update query.
-- Rob FMS Professional Solutions Group http://www.fmsinc.com/consulting Software Tools for .NET, SQL Server, Visual Basic & Access http://www.fmsinc.com -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- "Emily V" <anonymous@discussions.microsoft.com> wrote in message news:C8078B10-4747-42C6-BA28-828B25439DC1@microsoft.com... > Ok, now that I have the hourglass ON - it won't turn off! > I included the DoCmd.Hourglass False in the code... > > Here's the full code. > > Private Sub runUpdateQuery_Click() > > On Error GoTo Err_runUpdateQuery_Click > > Dim stDocName As String > > stDocName = "qryUpdateLandCSZ" > DoCmd.SetWarnings False > DoCmd.OpenQuery stDocName, acNormal, acEdit > DoCmd.SetWarnings True > RetValue = MsgBox("Thank You", vbExclamation) > DoCmd.Hourglass True > > > Exit_runUpdateQuery_Click: > DoCmd.Hourglass False > Exit Sub > > Err_runUpdateQuery_Click: > MsgBox Err.Description > DoCmd.Hourglass False > Resume Exit_runUpdateQuery_Click > > End Sub
- Next message: Laurie Brand: "Re: DoCmd.GotoRecord in Access97 vs. Access 2000"
- Previous message: Roger Carlson: "Re: Automatic Incremental Search"
- In reply to: Emily V: "turn hourglass off"
- Next in thread: Emily V: "Re: turn hourglass off"
- Reply: Emily V: "Re: turn hourglass off"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|