ricardocpa
New member
- Local time
- Today, 15:42
- Joined
- Apr 2, 2025
- Messages
- 6
I am working on a local copy of an Access file that only operates with tables linked to a SQL server.
This file works with no issue, but recently a new table 'Subbasin' table has been added, and a related field has also been added to an existing parent table 'Facility':
My goal is to add, in design view, the new field 'Subbsasin_code' in an Access form so that the value for Subbasin_Code can be seen/modified by the user. This form displays one Facility record at a time:
The issue is that after the text box for Subbasin has been added to the form, in Form View, making modifications to any field in the form will trigger a "Write Conflict" error (the kind where the option 'Save Record' is greyed out) when trying to save the modification. Please note that the buttons in yellow all work with underlying VBA scripts.
Things that I have already checked/tried to do based on other threads found here in AccessWorld, without same 'Write Conflict' outcome:
.
Anyway, I am at a dead end, any help or guidance will be so appreciated - let me know if I can expand on any of the issues at hand. Thank you!
This file works with no issue, but recently a new table 'Subbasin' table has been added, and a related field has also been added to an existing parent table 'Facility':
My goal is to add, in design view, the new field 'Subbsasin_code' in an Access form so that the value for Subbasin_Code can be seen/modified by the user. This form displays one Facility record at a time:
The issue is that after the text box for Subbasin has been added to the form, in Form View, making modifications to any field in the form will trigger a "Write Conflict" error (the kind where the option 'Save Record' is greyed out) when trying to save the modification. Please note that the buttons in yellow all work with underlying VBA scripts.
Things that I have already checked/tried to do based on other threads found here in AccessWorld, without same 'Write Conflict' outcome:
- Checked that the new child table 'Subbasin' is properly defined, meaning:
- There is a unique identifier field defined as primary key (PK)
- There are a modified by (user) & modified at (datetime) fields
- There are no Boolean fields - besides the stated above, there is only nvarchart-type fields
- Refreshing (Home > Refresh All)
- Relink Tables from Access:
- Tried relinking only these 2 tables
- Tried removing and re-link all tables
- Reviewed the VBA script set for the 'Save button' - this is the part I am the least familiar with:
- How can I detect which step of the script is triggering the error, if any?
- In the script, it establishes a variable in order to compare the access record being modified against the SQL database
Code:
Dim rs As DAO.Recordset
- Does DAO.Recordset collect all field/value pairs by default or is that defined somewhere else?
- I assume an error is taking place because a error dialogue appears after the "Write Conflict" one, which matches the Else condition set for errors ≠ 2291, am I correct to assume that?
Code:
anErrMod8: If err.Number = 2291 Then
MsgBox "An Error Occurs During Save Record... @@ " & err.Description & vbCrLf & " For example Address may not match Owner", 16, "Error..."
Else
MsgBox "An Error Occurs During Save Record... @@ " & err.Description & vbCrLf, 16, "Error..."
End If
Anyway, I am at a dead end, any help or guidance will be so appreciated - let me know if I can expand on any of the issues at hand. Thank you!
Last edited: