Ask a Question related to Microsoft Access, Design and Development.
-
Jacob #1
After Update
On my After Update on a form. I have it populate 2 fields showing who was in
there and what time the changes were made. The problem is, after the after
update fires, I can no longer navigate to the next record. It seems to lock
up. Is there a script that will allow me to continue. Here is the code I
used on my After Update...
Me.[Datemo] = Now()
Me.[Modifiedby] = user
Jacob Guest
-
why is the "Adobe Acrobat 6.0.1 Update" message there at the top? -- the update doesn't work
why is the "Adobe Acrobat 6.0.1 Update" message there there at the top? -- the update doesn't work -
can't update to 6.01 pro
updater does not work tells me I need msi file I HAVE msi file on my AcroPro CD, and I am correctly navigating to it. Installer tells me msi is... -
PSE Update?
From www.sitelink.net: CNET News.com reports that Adobe is preparing to make several major product announcements -- including a new version of... -
5.0.7 Update Pack 1 requires SCO Update license?
I was just up on SCO's FTP site and noticed they have, as of today, Update Pack 1 and Maintenance Pack 1. I have a question about the Update Pack... -
Specifying "do not update" values in "additive" UPDATE sprocs
Hello, I want to write a sproc whose purpose is to perform 'additive' UPDATEs to a given table. By 'additive', I mean I would like the existing... -
Rick Brandt #2
Re: After Update
"Jacob" <jacob@intermed1.com> wrote in message
news:Ol1lH%23TTDHA.1324@TK2MSFTNGP11.phx.gbl...Use BeforeUpdate.> On my After Update on a form. I have it populate 2 fields showing who was in
> there and what time the changes were made. The problem is, after the after
> update fires, I can no longer navigate to the next record. It seems to lock
> up. Is there a script that will allow me to continue. Here is the code I
> used on my After Update...
Think about it. You are updating a record in the AfterUpdate event. Guess what? The
event has to fire again now because you made an update. The record is stuck in a
loop.
Rick Brandt Guest
-
Van T. Dinh #3
Re: After Update
For time stamp and audit trail data, you should use BeforeUpdate Event. I
think you will create a non-terminating loop with AfterUpdate for this
(unless Access picks it up and I have seen cases where my logic was wrong
and Access picked it up).
--
HTH
Van T. Dinh
MVP (Access)
"Jacob" <jacob@intermed1.com> wrote in message
news:Ol1lH#TTDHA.1324@TK2MSFTNGP11.phx.gbl...in> On my After Update on a form. I have it populate 2 fields showing who waslock> there and what time the changes were made. The problem is, after the after
> update fires, I can no longer navigate to the next record. It seems to> up. Is there a script that will allow me to continue. Here is the code I
> used on my After Update...
>
>
>
> Me.[Datemo] = Now()
> Me.[Modifiedby] = user
>
>
Van T. Dinh Guest
-
Jacob #4
Re: After Update
You guys rock....Thanks I did not think of it that way and it works just
fine now.
"Jacob" <jacob@intermed1.com> wrote in message
news:Ol1lH%23TTDHA.1324@TK2MSFTNGP11.phx.gbl...in> On my After Update on a form. I have it populate 2 fields showing who waslock> there and what time the changes were made. The problem is, after the after
> update fires, I can no longer navigate to the next record. It seems to> up. Is there a script that will allow me to continue. Here is the code I
> used on my After Update...
>
>
>
> Me.[Datemo] = Now()
> Me.[Modifiedby] = user
>
>
Jacob Guest



Reply With Quote

