Would anybody know how to change the text of the buttons of a msgbox? I want a 2 choice set up. But I don't want just a yes or no. This is what I have now.
Dim strPrompt As String, strStyle As String, strTitle As String
Dim varPress As Variant
Dim varPress1 As Variant
strPrompt = "Is this Project Review Complete?"
strStyle = vbYesNo
strTitle = "Project Review"
varPress = MsgBox(strPrompt, strStyle, strTitle)
This works but I would prefer a more customize text.
This then gets passed through an "If/Then" based on choosing yes or no.
Any help is always appreciated.
Thanks.
Dim strPrompt As String, strStyle As String, strTitle As String
Dim varPress As Variant
Dim varPress1 As Variant
strPrompt = "Is this Project Review Complete?"
strStyle = vbYesNo
strTitle = "Project Review"
varPress = MsgBox(strPrompt, strStyle, strTitle)
This works but I would prefer a more customize text.
This then gets passed through an "If/Then" based on choosing yes or no.
Any help is always appreciated.
Thanks.