Question

is it possible to change the title of the msgbox in vb.net?

Was it helpful?

Solution

Yes, use the right overloaded version of Show():

Visual Basic (Usage)
Dim text As String
Dim caption As String
Dim buttons As MessageBoxButtons
Dim returnValue As DialogResult

returnValue = MessageBox.Show(text, caption, buttons)

From MSDN (the Caption variable is the title of the MessageBox):

Dim Message As String = "You did not enter a server name. Cancel this operation?"
Dim Caption As String = "Error Detected in Input"
Dim Buttons As MessageBoxButtons = MessageBoxButtons.YesNo

Dim Result As DialogResult

'Displays the MessageBox

Result = MessageBox.Show(Message, Caption, Buttons)
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top