user81296
0
Q:

subroutine vb.net

Private Sub add(ByVal a As Integer, ByVal b As Integer)
	[action]
End Sub

'example subroutine
Private Sub add(ByVal a As Integer, ByVal b As Integer)
	Dim result As Integer
	result = a + b
	MsgBox("The sum of the two numbers is " & result)
End Sub

'NOTE: If the keyword “return” is in the code, then it’s a function. 
'If not, it’s a subroutine.
2

New to Communities?

Join the community