473,886 Members | 2,373 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

How to update a table while the record is still open?

Hi All,

When a table is linked to a form, Access normally updates the entire table
when that record is closed. The fields don't get get updated in the table
as they become changed.

I've got multiple users accessing my database, so I need the fields in a
record to be updated immediately when they change. I cannot wait until the
user closes that record for the fields to be updated, as other users will
be using old data.

There must be a simple way to update the record fields as they get changed.
What am I missing here???

Thanks,
Norm
Nov 12 '05 #1
4 3177
Norm

me.dirty = true, or me.refresh will save a record. But if someone else
has the record open this will not be noted unless that form is
requeried or refreshed.

neil
Norm <od*****@comcas t.net> wrote in message news:<Xn******* *************** *********@216.1 96.97.136>...
Hi All,

When a table is linked to a form, Access normally updates the entire table
when that record is closed. The fields don't get get updated in the table
as they become changed.

I've got multiple users accessing my database, so I need the fields in a
record to be updated immediately when they change. I cannot wait until the
user closes that record for the fields to be updated, as other users will
be using old data.

There must be a simple way to update the record fields as they get changed.
What am I missing here???

Thanks,
Norm

Nov 12 '05 #2
Thanks Neil!

What seems to be working well is if I do me.refresh whenever a field gets
the focus. The me.dirty automatically gets set to true. Is that the
typical way to handle this situation - to do a refresh on the getFocus
event?

Norm

ne***********@b oroughmuir.edin .sch.uk (NeilAnderson) wrote in
news:83******** *************** ***@posting.goo gle.com:
Norm

me.dirty = true, or me.refresh will save a record. But if someone else
has the record open this will not be noted unless that form is
requeried or refreshed.

neil

Nov 12 '05 #3
Norm

I don't know about typical, but I use the requery method to reset a
combo box's recordsource based on various fields on a form on the
getFocus event a lot. The help file (access 97) says that a requery is
often faster than a refresh by the way - I've never noticed any
differnce!

Neil

Norm <od*****@comcas t.net> wrote in message news:<Xn******* *************** *********@216.1 96.97.136>...
Thanks Neil!

What seems to be working well is if I do me.refresh whenever a field gets
the focus. The me.dirty automatically gets set to true. Is that the
typical way to handle this situation - to do a refresh on the getFocus
event?

Norm

ne***********@b oroughmuir.edin .sch.uk (NeilAnderson) wrote in
news:83******** *************** ***@posting.goo gle.com:
Norm

me.dirty = true, or me.refresh will save a record. But if someone else
has the record open this will not be noted unless that form is
requeried or refreshed.

neil

Nov 12 '05 #4
Refresh and Requery are the opposite of each other.

Refresh updates the table(s) from the Form; Requery updates the Form
from
the table(s).

When a user enters data into a control on a Form, Refresh will send that
data
to the table. For another user to obtain the latest data from the
table, he/she
needs to use Requery.

To achieve the earliest update of new data, place Me.Refresh in the
AfterUpdate event of each control. Bit excessive but there is the least
delay.

If other users have that record open, they may need to do a Requery -
but will
they know when to do it??

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 12 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
2789
by: Sue Adams | last post by:
I actually have two issues/questions: I have an autonumber field in an access db table that I grab and later use to update a record in another table withing the same db. The code I use to get it from the db table is: ''Retrieve the Registration Identification Number strRegisterID = Rs("Register_ID") Prior to testing my code and actually updating the db, I''m trying to write it to the page to make sure their isn''t a loop or massive...
4
4090
by: Roy Adams | last post by:
Hi posting again because no answer to previous.. tring to loop through a recordset and update a record, thing is it only updates the first record in the table rather than searching through the entire table or records returned, and updating a record if certain criteria is met. shouldn't the while loop do this? I know my syntax must be wrong, but difficult to work out how or where table = String(Request.Cookies("table"));
1
2030
by: mursyidatun ismail | last post by:
Dear all, database use: Ms Access. platform: .Net i'm trying to update a record/records in a table called t_doctors by clicking da edit link provided in the database. when i ran through da browsers and click update it gave me this error: Specified argument was out of the range of valid values. Parameter name:
11
2262
by: Siv | last post by:
Hi, I seem to be having a problem with a DataAdapter against an Access database. My app deletes 3 records runs a da.update(dt) where dt is a data.Datatable. I then proceed to update a list to reflect that the 3 items have been deleted only to discover that the 3 items appear, however when I click on them to display their information which runs a datareader over the same database it appears that the data has now gone. I wondered whether...
5
3549
by: PAUL | last post by:
Hello, I have 2 tables with a relationship set up in the dataset with vb ..net. I add a new record to the parent table then edit an existing child record to have the new parent ID. However when I do the update the changed parentid in the child table fails to change. No error is given its just that the change is not written to the Database. When I step through the records for the child table the one I would expect to be changed has a row...
4
1922
by: Lada 'Ray' Lostak | last post by:
Hello there, I am thinking how to solve another typical problem of online systems with combination of thin client... Imagine simple case, 2 users are going to edit 'same' datas. Both see on the 'screen' the same, after they started edit them. First one changes datas and submit changes (sucessfully). Database (set tables - inserts/updates/deleting) was changed. At this point, datas which second user is watching are not valid anymore. They...
3
3552
by: jpr | last post by:
Hello, I know that this is not the rule but need some help. My datbase has three tables: MASTER TEMPLATES FORMS I have a form which is based on a table named MASTER. I have a primary key set to autonumber and a field SSN which I would
1
2476
by: teenagelcruise | last post by:
hi, i have a problem with my code which is i cannot update and addnew data into the database but i can delete the data.plz give me an idea.this is my code that i wrote. <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> <title>Order Record</title> <meta name="Microsoft Border" content="tlb, default"> </head>
2
2646
by: sirdavethebrave | last post by:
Hi guys - I have written a form, and a stored procedure to update the said form. It really is as simple as that. A user can go into the form, update some fields and hit the update button to update the information which is stored in a SQL database. In testing we noticed that the form was updating correctly but the update mechanism was also updating the first record of the table in the sql database every time. No error messages are on...
0
9957
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9799
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
11172
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10770
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10873
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10430
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
4632
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
4236
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
3245
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.