C
Carl
I am using SQL 2000 as a backend and designed in Access
2003 ADP.
This particular issues is working fine in Access 2003 ADP
but when I went to run it on a client machine running
Access 2002 ADP (which supposedly there are no
compatibility issues) I am receiving the following error
message which debugs to the following After_Update event
when I try to update a subform.
Run-Time error -2147417848 (80010108)
Method 'Controls' of object '_Subform'failed
This is the After_Update event:
Private Sub QtyRqdX_AfterUpdate()
Me!QtyRqdEa = CheckQtyX(Me!QtyRqdX, Me.Parent!
sfmPOItem!PerCase)
If F_QtyRqdEa <> Me!QtyRqdEa Then
Me.Parent!sfmPOItem!QtyRqdEa = Me.Parent!sfmPOItem!
QtyRqdEa + Me!QtyRqdEa - F_QtyRqdEa
Me.Parent!sfmPOItem.Form.ExtendOrderLine
F_QtyRqdEa = Me!QtyRqdEa
End If
End Sub
This is not going to be good when implementing this
application on our companies client machines.....anybody
have any ideas???
2003 ADP.
This particular issues is working fine in Access 2003 ADP
but when I went to run it on a client machine running
Access 2002 ADP (which supposedly there are no
compatibility issues) I am receiving the following error
message which debugs to the following After_Update event
when I try to update a subform.
Run-Time error -2147417848 (80010108)
Method 'Controls' of object '_Subform'failed
This is the After_Update event:
Private Sub QtyRqdX_AfterUpdate()
Me!QtyRqdEa = CheckQtyX(Me!QtyRqdX, Me.Parent!
sfmPOItem!PerCase)
If F_QtyRqdEa <> Me!QtyRqdEa Then
Me.Parent!sfmPOItem!QtyRqdEa = Me.Parent!sfmPOItem!
QtyRqdEa + Me!QtyRqdEa - F_QtyRqdEa
Me.Parent!sfmPOItem.Form.ExtendOrderLine
F_QtyRqdEa = Me!QtyRqdEa
End If
End Sub
This is not going to be good when implementing this
application on our companies client machines.....anybody
have any ideas???