Petr Danes
Registered User.
- Local time
- Today, 01:07
- Joined
- Aug 4, 2010
- Messages
- 150
I have an Access application that was originally built in Access 2000. Several textboxes and comboboxes use custom right-click menus to call filter routines. The RC menus are built in code, and some are quite extensive - hundreds of items, nested up to four levels deep.When data in a field changes, I need to rebuild the menu for that field, because the menus filter on the database's actual contents.
In 2000, it all worked well, but in newer versions, repeated rebuilds throw an error.
The relevant part of the code is here:
The last line is where it bombs with the error "Unable to add control", but not always. It runs several times, but after about four or five rebuilds, it suddenly starts throwing an error on that line. Shutting it down, doing a C & R and retrying makes it work again, and again several times okay, then starts bombing.
I sort of suspect I'm abusing the RC system, that it was intended for a few items, more or less permanantly left in place, not such intensive build/rebuild activity with so many items, but I've not found any documentation on the subject, or anyone who claims to have experience with it.
Anybody have any ideas?
In 2000, it all worked well, but in newer versions, repeated rebuilds throw an error.
The relevant part of the code is here:
Code:
Dim rst0 As DAO.Recordset, rst1 As DAO.Recordset, rst2 As DAO.Recordset, rst3 As DAO.Recordset, qdf0 As DAO.QueryDef, qdf1 As DAO.QueryDef, qdf2 As DAO.QueryDef, AEp As CommandBarPopup, AEp1 As CommandBarPopup, AEp2 As CommandBarPopup, aec As CommandBarButton
With Application.CommandBars("RCDatum")
Do Until .Controls.count = 0
If .Controls.count Then .Controls(1).Delete
Loop
Set rst0 = CurrentDb.QueryDefs("RCDatumDekady").OpenRecordset(acReadOnly)
Set qdf0 = CurrentDb.QueryDefs("RCDatumRok")
Set qdf1 = CurrentDb.QueryDefs("RCDatumRokMesic")
Set qdf2 = CurrentDb.QueryDefs("RCDatumRokMesicDen")
Do
qdf0.Parameters("LoRok") = rst0.Fields("Dekada")
qdf0.Parameters("HiRok") = rst0.Fields("Dekada") + 9
Set rst1 = qdf0.OpenRecordset(acReadOnly)
Set AEp = .Controls.Add(msoControlPopup)
The last line is where it bombs with the error "Unable to add control", but not always. It runs several times, but after about four or five rebuilds, it suddenly starts throwing an error on that line. Shutting it down, doing a C & R and retrying makes it work again, and again several times okay, then starts bombing.
I sort of suspect I'm abusing the RC system, that it was intended for a few items, more or less permanantly left in place, not such intensive build/rebuild activity with so many items, but I've not found any documentation on the subject, or anyone who claims to have experience with it.
Anybody have any ideas?