Access Guru's,
I have run into a doozy of an issue. I have an application that uses a 'drill-down' like hiearchy to drill through a series of data levels. Each level has its own subform and when the user traverse's to the next level VBA is used to set the source object to the corresponding form.
Here's the code that does it:
Forms!frmAttrAll!frmAttrSub.SourceObject = "frmAttrL1"
Where frmAttrAll is the main form, frmAttrSub is the subform object on the main form and frmAttrL1 is the form that needs to be assigned to it.
This drill down hierarchy works perfectly on 99% of the computers that we've installed it on, but in a few instances it doesn't work.
Here's the weird part. The user can get through levels 1 and 2, but when they try to go to level 3, the subform doesn't load. I put in a quick workaround to jump to level 4 function (to bypass level 3) and the remaining levels work.
Here's another weird part, we re-imaged a test machine with the particular specs of the non-working PCs and it works fine. The particular specs are Win2000 Professional with Access 2000 SP1. Even with the same specs, we can't get it to work on the users PCs.
I've done a compile on these machines to make sure that everything is all right and this problem still remains.
Any ideas???
I have run into a doozy of an issue. I have an application that uses a 'drill-down' like hiearchy to drill through a series of data levels. Each level has its own subform and when the user traverse's to the next level VBA is used to set the source object to the corresponding form.
Here's the code that does it:
Forms!frmAttrAll!frmAttrSub.SourceObject = "frmAttrL1"
Where frmAttrAll is the main form, frmAttrSub is the subform object on the main form and frmAttrL1 is the form that needs to be assigned to it.
This drill down hierarchy works perfectly on 99% of the computers that we've installed it on, but in a few instances it doesn't work.
Here's the weird part. The user can get through levels 1 and 2, but when they try to go to level 3, the subform doesn't load. I put in a quick workaround to jump to level 4 function (to bypass level 3) and the remaining levels work.
Here's another weird part, we re-imaged a test machine with the particular specs of the non-working PCs and it works fine. The particular specs are Win2000 Professional with Access 2000 SP1. Even with the same specs, we can't get it to work on the users PCs.
I've done a compile on these machines to make sure that everything is all right and this problem still remains.
Any ideas???