Why it is producing the error "expression required"?
Public Class WinApp
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
End Sub
Private Sub buttonSubmit_Click(sender As Object, e As EventArgs) Handles buttonSubmit.Click
MessageBox.Show("Hello" + ' ' + "how are you");
End Sub
End Class