Read from MsgBox : MsgBox « GUI « VB.Net





Read from MsgBox

  


Module Module1

    Sub Main()
        
        Dim Text as String
        
        Text = MsgBox("Click any button", vbYesNoCancel + vbQuestion)


    End Sub
End Module

   
    
  










Related examples in the same category