I have the following code for one of my action buttons. My question is when I want an icon to show beside the message, what are the different options for different icons? In this example I have Exclamation, but I am not sure I want to keep it as this.
Private Sub Command18_Click()
On Error GoTo Err_Command18_Click
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "Boxes Ordered In The Last 90 Days"
MsgBox "This file may be very long. ", vbExclamation, " Microsoft Access"
DoCmd.OpenForm stDocName, , , stLinkCriteria
Exit_Command18_Click:
Exit Sub
Err_Command18_Click:
MsgBox Err.Description
Resume Exit_Command18_Click
End Sub
Thanks for any help
Private Sub Command18_Click()
On Error GoTo Err_Command18_Click
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "Boxes Ordered In The Last 90 Days"
MsgBox "This file may be very long. ", vbExclamation, " Microsoft Access"
DoCmd.OpenForm stDocName, , , stLinkCriteria
Exit_Command18_Click:
Exit Sub
Err_Command18_Click:
MsgBox Err.Description
Resume Exit_Command18_Click
End Sub
Thanks for any help