VB.Net/GUI/MsgBox
Версия от 16:40, 26 мая 2010; (обсуждение)
Read from MsgBox
Module Module1
Sub Main()
Dim Text as String
Text = MsgBox("Click any button", vbYesNoCancel + vbQuestion)
End Sub
End Module