This is more of an FYI becasue I was going crazy!!! Something changed with how the NSB.MsgBox works in the last week or so. I am programming in VB not sure that matters. Two changes.
-
I am using custom button strings and I had one with a space in the name. It worked as intended. No issue. I do see “no spaces or special characters are allowed.” Not sure if this is new or what but it did work a week ago. Now it does not.
-
The “result” would be past as a string without issue. Now you need to use cstr() function to use the result as one would intend and in the NSB examples. Example
R = cstr(result)
If R = “YES” then
'do this
End If
I hope this saves hours of time for someone.