Hi fellows,
I have the following Workbook_Open event.
If I want the MsgBox "Updating will take place..." to delay for 10 seconds so that a user will be able to decide either click OK or Cancel, how should the code be like ?
Any help is much appreciated. Thanks
Private Sub Workbook_Open()
If ActiveWorkbook.Name = "8800 TSL Change Record( dates sorted).xls" Then
MsgBox "Updating will take place"
Call SortPlt8800TSLchangeRecord
Else
cancel = True
End If
End Sub