I have a very simple form with one field to add records to a DB. After successful record insertion, a success message is displayed. How can I hide the success label after X seconds? [record_save_success]
is just a static text label. Here's what I'm doing to show the message:
Private Sub Form_AfterInsert()
[record_save_success].Visible = True
End Sub
Can I add a delay to change the Visible
property to False
?