Refresh Data

  • Thread starter Thread starter Gary
  • Start date Start date
G

Gary

How do you refresh the data / calculations on a form when
moving from field to field?
Many thanks - Gary
 
Hi Gary,

- Create a Function behind the Form
Function funcRecalculateMyForm()
Me.Recalc
End Function

- On the AfterUpdate Event of each Control add
=funcRecalculateMyForm


I hope this helps! If you have additional questions on this topic, please
respond back to this posting.


Regards,

Eric Butts
Microsoft Access Support

"Microsoft Security Announcement: Have you installed the patch for
Microsoft Security Bulletin MS03-026? If not Microsoft strongly advises
you to review the information at the following link regarding Microsoft
Security Bulletin MS03-026
<http://www.microsoft.com/security/security_bulletins/ms03-026.asp> and/or
to visit Windows Update at <http://windowsupdate.microsoft.com/> to install
the patch. Running the SCAN program from the Windows Update site will help
to insure you are current with all security patches, not just MS03-026."


--------------------
| Content-Class: urn:content-classes:message
| From: "Gary" <[email protected]>
| Sender: "Gary" <[email protected]>
| Subject: Refresh Data
| Date: Wed, 18 Feb 2004 02:48:44 -0800
| Lines: 3
| Message-ID: <[email protected]>
| MIME-Version: 1.0
| Content-Type: text/plain;
| charset="iso-8859-1"
| Content-Transfer-Encoding: 7bit
| X-Newsreader: Microsoft CDO for Windows 2000
| Thread-Index: AcP2DMdZzNyaW46LSWyurcfMTns7yg==
| X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
| Newsgroups: microsoft.public.access.forms
| Path: cpmsftngxa07.phx.gbl
| Xref: cpmsftngxa07.phx.gbl microsoft.public.access.forms:255655
| NNTP-Posting-Host: tk2msftngxa12.phx.gbl 10.40.1.164
| X-Tomcat-NG: microsoft.public.access.forms
|
| How do you refresh the data / calculations on a form when
| moving from field to field?
| Many thanks - Gary
|
 
Back
Top