In this post
let us see, how to show a successfully submitted record's data back on to the
form, as a confirmation.
Take two
screens
- Home Screen
- Success Screen
SubmitForm(frmRegistration)
Success Screen
Take a label to show - success message, as below
"Registration was successful. Registration Id: " & frmRegistration.LastSubmit.'Registration Number'
LastSubmit property of a From Control helps us to show the successfully submitted record's details, including any server generated fields. So, we are leveraging this property.