DoCmd.Echo : DoCmd « Application « VBA / Excel / Access / Word






DoCmd.Echo

 
Private Sub Form_Load()
   DoCmd.Echo False, "Application loading..."
   DoCmd.Hourglass True
   ' Load images for opening screen
   DoCmd.Echo True, "Screen update turned on..."
   DoCmd.Hourglass False
End Sub

 








Related examples in the same category

1.Open a report
2.Save changes to the client record
3.Undo changes made to the current record
4.Closes the window of an Access object: DoCmd.Close([ObjectType][, ObjectName][, Save])
5.Copies a database object into the same or another database: DoCmd.CopyObject([DestinationDatabase][, NewName][, SourceObjectType][, SourceObjectName])
6.Deletes a database object:DoCmd.DeleteObject([ObjectType][, ObjectName])
7.Using the DoCmd Object to Programmatically Add Sections to Reports at Runtime
8.Use DoCmd.OpenForm to open a form
9.Use DoCmd to close a form
10.Setting a Focus
11.Finding a Record
12.Validating a Record
13.Use DoCmd to open a form
14.Makes a sound using the computer's built-in speaker.
15.Using the DoCmd Object to Run Commands
16.Sending Mail
17.Calling the Report from VBA