Access 2002-2003 runtime
App works fine on single proc machines but we are rolling out a tech refresh and we found this case where the code appears to simply slip through the open form command and the form never opens.
If Not IsNull(frmPODet ails.Form!txtPO Number) Then
MsgBox "frmPurchaseOrd ers Open Form"
DoCmd.OpenForm "frmPODetailsUn bound"
End If
Note since this is a production issue Ihad to uses message boxes to see where we get. I also included message boxes in the frmPODetailsUnb ound load event. these were never fired off.
I hae been able to recreate on a few dual core machines but not all.
Example Fail Spec
MS Windows XP Pro Version 2002 SP 2
Intel Core 2 Duo CPU E4600 A 2.40GHz 2.39 Ghz. 1.98 GB ram
But works on this spec
XP Pro Ver 2002 SP 2
Intel core 2 Duo E4400 2.0 GHz 2.0 Ghz 1.98 RAM
I suspect a race condition but there are no do events calls in any of the code that I can see.
Any thoughts would be appreciated
App works fine on single proc machines but we are rolling out a tech refresh and we found this case where the code appears to simply slip through the open form command and the form never opens.
If Not IsNull(frmPODet ails.Form!txtPO Number) Then
MsgBox "frmPurchaseOrd ers Open Form"
DoCmd.OpenForm "frmPODetailsUn bound"
End If
Note since this is a production issue Ihad to uses message boxes to see where we get. I also included message boxes in the frmPODetailsUnb ound load event. these were never fired off.
I hae been able to recreate on a few dual core machines but not all.
Example Fail Spec
MS Windows XP Pro Version 2002 SP 2
Intel Core 2 Duo CPU E4600 A 2.40GHz 2.39 Ghz. 1.98 GB ram
But works on this spec
XP Pro Ver 2002 SP 2
Intel core 2 Duo E4400 2.0 GHz 2.0 Ghz 1.98 RAM
I suspect a race condition but there are no do events calls in any of the code that I can see.
Any thoughts would be appreciated
Comment