473,405 Members | 2,300 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,405 software developers and data experts.

Recursive subforms not cooperating with DELETE/REQUERY...

I have an unusual design and some very unusual issues with my code... I have forced Access to cooperate on everything except one issue - record deletion.

My form design involves a recursively nested form. In other words, the form, m_settings_menueditor_recursive has a single subform; m_settings_menueditor_recursive (both are viewed as datasheets - so the form is its own subdatasheet.) The Form_Open event modifies the form's recordset so that the root form only displays root nodes in the tree (Null parent), and the parent/child relationship on the subform is set so that nested forms only display the child nodes of their parent. This implements a tree structure, fully editable as a Microsoft Access datasheet, with open/close tree branch buttons in the form of open/close subdatasheet. In one table, "ui_modes_lkp", the menu elements (and submenu elements, and subsubmenu elements etc.) are specified (relationships are defined using the parent_mode field.

A sample of VBA code inside m_settings_menueditor_recursive:
Expand|Select|Wrap|Line Numbers
  1. Private Function AtRootLevel() As Boolean
  2.     Select Case Me.Parent.Form.NAME
  3.         Case "m_settings_menueditor":
  4.             AtRootLevel = True
  5.         Case "m_settings_menueditor_recursive":
  6.             AtRootLevel = False
  7.     End Select
  8. End Function
  9.  
  10. Private Sub Form_Open(Cancel As Integer)
  11.     pending_delete = False
  12.     If AtRootLevel Then
  13.         Me.RecordSource = "SELECT * FROM ui_modes_lkp WHERE parent_mode Is Null ORDER BY display_order;"
  14.     Else
  15.         Me.RecordSource = "SELECT * FROM ui_modes_lkp ORDER BY display_order;"
  16.     End If
  17.     Me.refresh_display_orders ' Make display orders increase from zero in steps of one.
  18.     Me.Requery
  19.     SetDefaults ' Set default values for fields, including display order
  20. End Sub
There are database relationships (enforcing various kinds of referential integrity between the ui_modes_lkp table and itself); but I've tried removing these and it doesn't help. I also tried breaking the form/subform relationship and implementing that manually, but that led to more problems than it was worth.

In (fully updated) Access 2003/2007 the standard MS Access DELETE events just don't seem to work normally in my form. When I delete a record from the root form, it works fine and deletes the record, although it seems to only invoke Form_Delete and not BeforeDelConfirm or AfterDelConfirm (the delete operation succeeds even though the ...DelConfirm events are not invoked.)
HOWEVER - when I delete records from child subforms, they APPEAR to have been deleted (they disappear from the form) but I see a funny symbol in the record selector of the parent forms, all the way back to the root node... It's like a "no entry" road-sign but in black instead of red (a circle with a diagonal line through it - I have no clue what this means.). When I close the forms completely and reopen them, I see that the deleted child-mode record is back there again as though I never deleted it. Even when I disable all my VBA code, and there are no events listed on the form's Properties window, it doesn't work. It seems like only the Form_Delete event is invoked, and it seems something deep within the workings of MS Access interferes with the record deletion so that the other record deletion events are never invoked.

So to work around this problem, I tried manually implementing the DELETE function with a SQL query when the FORM_DELETE event is invoked, and cancel the event using
Expand|Select|Wrap|Line Numbers
  1. DoCmd.RunSQL "DELETE FROM ... WHERE ..."
  2. DoCmd.CancelEvent
This leaves a row in the subdatasheet with "Deleted" in place of all the fields. I have attempted to shift the focus away and run DoCmd.Requery, and various VBA based Requery methods (all from within the relevant subform), but it just won't get rid of the "Deleted" record from the datasheet displayed... The VBA-based methods just give error messages saying "The record has been deleted."
This technique currently looks messy but at least it actually deletes the record...

Some of these methods even lead to problems when opening other branches of the tree, with the tree complaining that I am trying to do something I cannot do while in the middle of a transaction or something like that... Are these "Transactions" something to do with the Delete events that keep going amiss?

I know my design is a little weird in some respects but I'd be VERY grateful for anyone who can help me with this. If you can help me fix it before I do, I might be amenable to sharing my menu system with you (providing you don't share it around to other folks without my permission.)
Attached Images
File Type: png screenshot_after_delete_attempt.png (17.8 KB, 1034 views)
Mar 11 '09 #1
31 6617
puppydogbuddy
1,923 Expert 1GB
It seems to me that your delete code was deleting only one side of an enforced one o many relationship. You ether need to turn on cascade delete for that relationship or simulate a cascade in your code by deleting the related records in the primary and foreign key tables.
Mar 12 '09 #2
Thank you for your suggestion... Actually I already have "Cascade Delete" switched on, along with all the other Cascade and Referential Integrity options, for that relationship... I have tried without and tried deleting the relationship altogether (relying only on the Form/Subform key relationship as defined in the Form properties box) but to no avail.
It's not the cascade delete that's the problem - since I'm deleting something on the "Many" side of the one-to-many relationship. That should be allowed by referential integrity under any circumstances, right?
Mar 12 '09 #3
puppydogbuddy
1,923 Expert 1GB
In order for the cascade delete to work, you must have referential integrity enforced between all tables involved. In absence of a referential integrity enforced cascade delete, you would delete records on the many side first and then delete the records on the "one" side. See the link below for details.

http://www.databasedev.co.uk/delete_query.html
Mar 12 '09 #4
Only one database table is involved - "ui_modes_lkp". I have added it twice to the relationships diagram, with a relationship between "mode_id" on one and "parent_mode" on the other. I understand that if there is referential integrity WITHOUT cascade deletion, you must first delete the records on the "many" side and then the ones you want to delete on the "one" side (I think this is what you are saying.) I've tried various combinations of options on the relationship and none of them improve matters - so I suspect it's something to do with the referential integrity implemented in the relationship between FORM and SUBFORM... It might be a quirk of MS' implementation of forms.

I have no problem hand-coding DELETE queries, or indeed, constructing them in the Access worksheet/design view.

I've simplified the design now, removing almost all of my event-invoked code, and still I'm getting these errors... I thought the form might be corrupted, so I created a new blank one and copied the controls and code into it - which makes no difference at all...

Still stuck, and beginning to think this might be a problem deep within Access... I might have to resort to using VBA code to close the form and re-open it (with all subdatasheets closed as a result.)
Mar 12 '09 #5
Naturally, before adding the table twice in the relationships diagram, I amended the indexing/ keys as appropriate. "mode_id" is primary key, "parent_mode" is INDEXED, with duplicates being acceptable. The relationships diagram shows a one-to-many relationship as it should.
Mar 12 '09 #6
puppydogbuddy
1,923 Expert 1GB
Ok, what I would do from a debugging point of view is to change my delete query back to a select query and verify that the correct records (both the primary and cascaded records) appear in the query. If the query is missing records, tweak the select query until the correct records show up, then go to the toolbar and change the query type back to a delete query.

Let me know what happened.
Mar 12 '09 #7
I've had the DELETE query running in a DoCmd.RunSQL statement for some time now... There's nothing wrong with it. Except that it puts big fat "Deleted" signs in all the fields, and leaves the deleted record in place (with junk displayed), and messes up the indexing somehow, and prevents Requery from working. The query is technically perfect, apart from that.

I have this code (and some other stuff) inside the Form_Delete event subroutine:
Expand|Select|Wrap|Line Numbers
  1.     DoCmd.CancelEvent
  2.     DoCmd.SetWarnings WarningsOff
  3.     DoCmd.RunSQL "DELETE FROM ui_modes_lkp WHERE mode_id=" & Chr$(34) & Me.mode_id_Box.value & Chr$(34) ' A hack to make this silly thing work...  It seems like something is interrupting/ circumventing all the other delete Events
  4.     DoCmd.SetWarnings WarningsOn
I'm working around the problem now - I've decided to use VBA code to close the form and re-open it (by changing the SourceObject of the parent form's subform containing m_settings_menueditor.) This "solution" is imperfect because it closes down all the open subdatasheets. But it works, and doesn't seem to leave the indexes in a twist.
Mar 12 '09 #8
NeoPa
32,556 Expert Mod 16PB
I'm not sure if this is going to help, but when you describe the record as being deleted in the subform, but marked with No Entry at parent level, I understand this to mean that the records are locked. I don't understand why the subform doesn't realise the delete has failed, but with the same record being in use in multiple forms, I cannot see an easy way to delete (or otherwise amend) any records.

Maybe exploring in the Recordset Type of the form may yield some results.

Welcome to Bytes!
Mar 12 '09 #9
puppydogbuddy
1,923 Expert 1GB
what I was suggesting was to create a select query using the Access query grid, run it and verify that the correct records to be deleted show up, then change the query type to delete.
Mar 12 '09 #10
Thank you, Puppydogbuddy! (Oh my, that's a tongue-twister.) I know what you were suggesting. My delete query actually deletes the correct records, nothing more, nothing less.

NeoPa, I think you're on the right track here... Without the manual DELETE query, when I try to delete PARENT records without first deleting children, despite having cascade-delete selected, I get messages saying:
"Could not update. Currently locked by another session on this machine."


One would think - even with referential integrity - one could delete LEAF CHILD records without difficulty... But apparently not... As described, I get the no-entry symbol (which as you say probably indicates record locking problems that the subform doesn't recognize before changing the display.) And then I start getting the following message when I try to do anything:
"Operation not supported in transactions."

I tried altering the Recordset Type field in the form design/ parameters from "Dynaset" to "Dynaset (inconsistent updates). The Record Locks setting was originally set to "No Locks", I'm now experimenting with changing this to "Edited Record."

While each subdatasheet looks at the same overall recordset, because of the way the recursion/ filtering works, no record appears in more than one subdatasheet (or, in more than one location in the tree.) I thought that would be enough to avoid this problem, but apparently not...
Mar 12 '09 #11
NeoPa
32,556 Expert Mod 16PB
To be honest I struggle to comprehend your setup fully. The other side of a web page can be a bit difficult to comprehend things quite as involved as this.

I'm particularly struggling with the idea that you see the No Entry sign in higher level forms, yet, at the same time, these records are only ever shown at a single level.

As the first thing to consider is nearly always the fundamental design, this could make further help, shall we say, complicated. We'll do what we can of course.
Mar 12 '09 #12
NeoPa, so long as you understand the principles of:
  • Recursion/ self-join
  • Subforms
  • The other stuff (e.g. VBA, record locking issues...) that you obviously do understand,

you should be able to understand my code and database relationships. As for the no-entry sign, have you looked at the graphic near the top of this page?

If you will honour my copyright to the menu system, I'll send you a copy so you can see what's going on. And if you can fix this issue in a tidy manner, I'll give you a free license to my menu system.
Mar 12 '09 #13
If you think you can do it, send me your email address... I think there's some way to email people through Bytes... I can see an Inbox link on my profile. Let me know if you can't do that and I'll post my address.
Mar 12 '09 #14
NeoPa
32,556 Expert Mod 16PB
It's a kind offer Matthew, but I can't imagine I'd want to replace my own menu system at this stage. I can however, promise discretion. I never feel it appropriate to share others' work unless it's clear they are happy to (furthermore I have no-one who might be interested in Access databases - no matter how much I try to enthuse them. For myself, I have more than I know what to do with).

At this stage I cannot promise a lot of time for this. I am quite active across the site and this takes up what free time I have available (and more sometimes). Having said that, if you can produce a copy of the database with as little as possible in it other than required to illustrate the problem (and compact it and Zip it up), I can PM you my address (on the understanding that it's not to be shared) and I will have a quick look through it for anything that I can find that might be causing the problem. Site emailing is limited and doesn't support sending files.

At this stage, my gut feeling is that it won't be easily found, but it may well be something obvious that I simply haven't seen due to the difficulties of understanding something remotely. Let me know if this sounds acceptable to you and I will PM you my email address.
Mar 12 '09 #15
I've created the stripped-down version, and since you don't want the menu system I've taken that out. So no problems... If you can fix it, you are welcome to document your work (and profit from that documentation) however you see fit, on the RECURSION/ SELF-JOIN side of things anyway...

Re: No customers interested in Access databases... I'm not surprised. I avoid Access data-stores like the plague, especially after the number of times they've crashed in-situ (beware of "compact & repair.") I've developed this menu system for:
  • System development purposes (rapid application development/ system design modification)
  • LAN-based user-interface
  • Prototype for future user-interfaces

Go ahead and PM me your address and I'll send it to you. It's 142KB zipped, so that shouldn't bust your mailbox!
Mar 13 '09 #16
NeoPa
32,556 Expert Mod 16PB
I've PMed the address. Feel free to send it on when you're ready.

I'll look at it over the weekend and see if there's anything I can see. You've probably done a lot of what I'll do anyway (you sound as if you've been around the block a few times), but it can't help to put some fresh eyes to it and see what turns up.
Mar 13 '09 #17
NeoPa
32,556 Expert Mod 16PB
I've received the email, but it's in 2007 format (I presume in code fully available mode).

I should say I only work up as far as Access 2003 as I feel Access 2007 is ... well, let's just say I'm no fan.

If you can get me a 2003 (or earlier) MDB file, I'll look at it for you.
Mar 13 '09 #18
NeoPa
32,556 Expert Mod 16PB
Matthew,

Please use this thread for ordinary correspondence. See previous post (#18) for why you've not heard more from me on the technical issue.
Mar 17 '09 #19
Thought I sent you a .mdb file version... About two mins after you asked for it... It must have gone astray - I'll send it again.
Mar 20 '09 #20
... And here's me thinking you'd given up!
;-)
Mar 20 '09 #21
NeoPa
32,556 Expert Mod 16PB
Still no promises Matthew, but I'll have a look when I'm home and see what I notice.
Mar 24 '09 #22
NeoPa
32,556 Expert Mod 16PB
OK Matthew, I have the A2003 version. What do I need to do to see the behaviour you're seeing?

PS It's admirably curt. Nothing extraneous as far as I can see. I hope I will be able to help.
Mar 24 '09 #23
I presume you can open the .mdb file (let me know if not.) Just open the .mdb file. Look in the default form. Try selecting a record in a subdatasheet and deleting it, or try selecting multiple records and deleting them. You should start to see anomalies.
Mar 24 '09 #24
NeoPa
32,556 Expert Mod 16PB
I can open the file (thank you).

When I do it though I don't notice any anomalies :S Everything works as I imagine you intended it to. Records, or even groups of records, delete ok. You did check that this version shows the same symptoms (I'm sure you did but I must ask)?

The only other thing I noticed was that the records all showed as in record layout, rather than in the design of the sub-form as I expected. I don't know where this takes you, but I hope it's some help.
Mar 24 '09 #25
OK. The big anomaly I was talking about was... You try deleting records. It appears to succeed. But then you close the form and reopen it again. And the records are there again. Delete doesn't work on subdatasheet records in Access 2007, on this .mdb or .accdb... I didn't try Access 2003 on this yet.

-->>> Have you tried closing the form and reopening it, and double-checking that the records you deleted do not mysteriously re-appear as I described?

Do you not see the "No Entry" lookalike sign?
Mar 24 '09 #26
I presume you've opened the subdatasheets up... Which is the point... As mentioned, it works fine on mine for the main records, but not for the ones in the subdatasheets. Be sure to click on the "plus" signs on the left and try deleting the records in leaf nodes of the tree... Sorry about the stupid instructions if this is obvious to you.
Mar 24 '09 #27
NeoPa
32,556 Expert Mod 16PB
I closed the whole application and they were still gone when I returned.

I haven't seen any of the no-entry signs. I don't think this is a problem with your code or design. More likely an Access configuration issue (possibly).
Mar 24 '09 #28
NeoPa
32,556 Expert Mod 16PB
@matthewslyman
Yes. This was clear from your earlier instructins, which I followed quite carefully.

No need for apologies. Everything needs to be checked and double-checked when anomalies occur.
Mar 24 '09 #29
:-O

I just tested the .mdb in Access 2003 on my Windows XP virtual-PC... I was quite shocked to find that it worked! Who would have guessed that? MS Access 2007 breaks edits on subdatasheets, inexplicably... No wonder you don't like it... As ever, woe betide MS' early adopters...

"The only other thing I noticed was that the records all showed as in record layout, rather than in the design of the sub-form as I expected." - I don't understand this remark...
Mar 24 '09 #30
...Sifting through Access configuration options...
Mar 24 '09 #31
NeoPa
32,556 Expert Mod 16PB
@matthewslyman
Looking at the design of [m_settings_menueditor_recursive], it doesn't show in record format, whereas when viewed within [m_settings_menueditor], it does.

I would describe record format as fields displaying sequentially across horizontally, rather than as specified in the design of the form.
Mar 24 '09 #32

Sign in to post your reply or Sign up for a free account.

Similar topics

1
by: JJMM | last post by:
Hi, I have a form (form1) with a large number of subforms inside it (around 20 subforms), There is the possibility of filtering the data using a pop-up form that create/change a query (all the...
3
by: Evil | last post by:
Hi, i have a problem with a treeview and some subforms in MS Access97. I have a form with a treeview on the left side which lets me navigate thru some projects. Then on the right side, i have...
0
by: Jenni | last post by:
I currently have a query that is joining two distinct pools of information and turning them into one records with a unique identifier This query is dependent on criteria passed from a form in a...
1
by: M Wells | last post by:
Hi All, I am developing an Access 2003 project application with the back end in SQL Server 2003. I have a master form that tracks projects, and several subforms on it that track various...
3
by: Diana Gard | last post by:
Perhaps this is a design flaw, please let me know. I'm using Access 2000. I have a form with a tab control and 5 subforms within those tabs. The forms match with the tables: Client main,...
2
by: Ron | last post by:
Hi All, I've got a main form (frmMain) with 5 subforms on it. All subforms are linked to different hidden controls on frmMain. The purpose of this form is to record payments by 'source'...
0
by: TD | last post by:
I have a main form with two subforms (both in datasheet view), neither of which are linked to the main form. The main form is based on a query that uses the bound column of a combobox on the main...
3
by: 6afraidbecause789 | last post by:
Think school - students - discipline interventions - misbehaviors - staff for this one....On a mainform frmStudentInterventions, I have linked a subform (sfrmMisbehaviors) with another subform...
10
beacon
by: beacon | last post by:
Hi everybody, This is probably going to sound unorthodox, but I have to log records that are deleted...I know, go figure. Anyway, I have a form with a (continuous) subform, and on the subform I...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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...
0
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,...
0
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...
0
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...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

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.