When I run this button event:
Private Sub Command1_Click()
Dim x
x = MsgBox("test", vbYesNoCancel)
End Sub
I get messages in the message box in Danish instead of English (yes, no, cancel). The same with other MsgBox arguments (vbRetryCancel ...). My operating system is Windows XP Danish. No effect in changing language in control panel.
Problem:
I want the messages in English regardless of the operating system.
Private Sub Command1_Click()
Dim x
x = MsgBox("test", vbYesNoCancel)
End Sub
I get messages in the message box in Danish instead of English (yes, no, cancel). The same with other MsgBox arguments (vbRetryCancel ...). My operating system is Windows XP Danish. No effect in changing language in control panel.
Problem:
I want the messages in English regardless of the operating system.