J
Jasmine
In a form, when I Insert a new Record I want to update the REVCD Field
with today's date.
At the same time I want to refresh the RECVDTE with the information.
What is the syntax code for this procedure?
I have tried the code below but the only time the record gets update is if i
move out of the current record.
I want to remain on the current record but refresh the RECVDTE Field.
the code I have is ( which for some reason is not updating that field -
unless i move to another record)
Private Sub Form_AfterInsert()
Me.RECVDTE = Date
[Forms]![INFORMAL]![CASE SUBFORM]![MEDREQ SUBFORM5]![RECVDTE].Refresh
End Sub
with today's date.
At the same time I want to refresh the RECVDTE with the information.
What is the syntax code for this procedure?
I have tried the code below but the only time the record gets update is if i
move out of the current record.
I want to remain on the current record but refresh the RECVDTE Field.
the code I have is ( which for some reason is not updating that field -
unless i move to another record)
Private Sub Form_AfterInsert()
Me.RECVDTE = Date
[Forms]![INFORMAL]![CASE SUBFORM]![MEDREQ SUBFORM5]![RECVDTE].Refresh
End Sub