S
SWE
Hi,
I have a form which is based on a complicated query.
I'm using MS Access 2003 and I am try to update the fields of the form
according to a combo-box value change.
I have creaded an event handler using VBA for the (After-update) event that
requery the form as follows:
Private Sub RequestStatusID_AfterUpdate()
Me.RecordSource = (Original query) & "where
CoreStudiesRequestStatus.RequestTestStatusID=" & Me.RequestStatusID "
Me.Requery
End Sub
Note: (Me.RequestStatusID) is the mentioned combo-box
any solution please ?
Regards
SWE
I have a form which is based on a complicated query.
I'm using MS Access 2003 and I am try to update the fields of the form
according to a combo-box value change.
I have creaded an event handler using VBA for the (After-update) event that
requery the form as follows:
Private Sub RequestStatusID_AfterUpdate()
Me.RecordSource = (Original query) & "where
CoreStudiesRequestStatus.RequestTestStatusID=" & Me.RequestStatusID "
Me.Requery
End Sub
Note: (Me.RequestStatusID) is the mentioned combo-box
any solution please ?
Regards
SWE