Question on Message Box Icons

Lazy Days

Registered User.
Local time
Yesterday, 19:10
Joined
Jun 11, 2008
Messages
10
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
 
Thanks Bob. That is what I needed to know
 

Users who are viewing this thread

Back
Top Bottom