Advertisement
Guest User

VbPAAS(2)

a guest
Sep 12th, 2019
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.55 KB | None | 0 0
  1. 'VB PASS #2'
  2.  
  3. 'Microsoft Visual Basic Guide'
  4. 'https://docs.microsoft.com/en-us/dotnet/visual-basic/programming-guide/'
  5.  
  6. 'Name -> remember to put capital letters'  'naming convention is very important'
  7.  
  8. 'Multi line text box -> Just right click the text box and select multi line'
  9.  
  10. Public Class MyForm
  11.     Private Sub SubmitButton_Click(sender As Object, e As EventArgs) Handles SubmitButton.Click     'the Sub is actually something like void'
  12.             Dim name As String
  13.  
  14.             name = InputTextBox.text
  15.  
  16.             HelloLabel.Text = "Hello, " & name
  17.  
  18.     End Sub
  19. End Class
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement