I have a form for reservation and like to put an dlookup for noShows
I have done this
Private Sub Celular_AfterUpdate()
If (Not IsNull(DLookup("[Celular]", "tblReservations", "[Celular] ='" & Me!Celular & "'"))) Then
DoCmd.OpenReport "rptReservationsNoShow", acViewPreview, ...
Hi
Have tried all this
Forms!frmCashBook!txt13.requery
Forms!Mainform!txt13.requery
Me.Parent.Parent!txt13.requery
Me.Parent!txt13.requery
Forms!frmCashBook!frmSubCashBook.Form!txt13.requery
but not working
To explain u some details
Txt13 is an unbound field on the Mainform...
I have a form CashBook with the subform subCashBook
On the mainform i have a textfield to get the actual cash amount
I programed CashDate on the mainform with setfocus to get the exact amount from the tblCashBook.
I tried everything to change the textbox with the new amount after entering paid...