P
Paul Overway
This is a difficult one to explain, but I am seeing a bug when Access 2002
is used on a system with Windows XP (Home and Pro). The problem is with a
subform on a wizard.
The following code is executed when the user goes to the next page in the
wizard:
Select Case mintCurrentPage
Case 1 To 3, 7 To clsAddEntityWiz1.LastPage
Me.fsubPage.LinkChildFields = "MemberID"
Me.fsubPage.LinkMasterFields = "txtMemberID"
Case 4 To 6
If IsNothing(Me.txtMemberID_Partner) Then
Me.fsubPage.LinkChildFields = ""
Me.fsubPage.LinkMasterFields = ""
Else
Me.fsubPage.LinkChildFields = "MemberID"
Me.fsubPage.LinkMasterFields = "txtMemberID_Partner"
End If
End Select
txtMemberID_Partner is null when the problem occurs. Nevertheless, in step
4, the page is being displayed as if LinkChildFileds = "MemberID" and
LinkMasterFields = "txtMemberID". This is causing me a lot of grief with
customers running Access 2002 on Windows XP.
The database is compiled in 2000 format. The problem does not occur on
systems with Access 2002 and Windows 2000. Nor does it occur on systems
with Access 2000 on any OS. The same code base is used in Access 97...and
the problem does not occur with any OS. Anyone else run into a similar
problem? Any resolution?
TIA
is used on a system with Windows XP (Home and Pro). The problem is with a
subform on a wizard.
The following code is executed when the user goes to the next page in the
wizard:
Select Case mintCurrentPage
Case 1 To 3, 7 To clsAddEntityWiz1.LastPage
Me.fsubPage.LinkChildFields = "MemberID"
Me.fsubPage.LinkMasterFields = "txtMemberID"
Case 4 To 6
If IsNothing(Me.txtMemberID_Partner) Then
Me.fsubPage.LinkChildFields = ""
Me.fsubPage.LinkMasterFields = ""
Else
Me.fsubPage.LinkChildFields = "MemberID"
Me.fsubPage.LinkMasterFields = "txtMemberID_Partner"
End If
End Select
txtMemberID_Partner is null when the problem occurs. Nevertheless, in step
4, the page is being displayed as if LinkChildFileds = "MemberID" and
LinkMasterFields = "txtMemberID". This is causing me a lot of grief with
customers running Access 2002 on Windows XP.
The database is compiled in 2000 format. The problem does not occur on
systems with Access 2002 and Windows 2000. Nor does it occur on systems
with Access 2000 on any OS. The same code base is used in Access 97...and
the problem does not occur with any OS. Anyone else run into a similar
problem? Any resolution?
TIA