You can return two or more values from a function by creating a Structure and let the function return it, like this example
vb Code:
Public Class Form1
Private Structure sCount
Public HCount As String
Public VCount As String
End Structure
Private Function HVChecking() As sCount
Dim s As sCount
'
'
'
s.HCount = "90"
s.VCount = "80"
Return s
End Function
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim s As sCount = HVChecking()
Me.Text = s.HCount & " --- " & s.VCount
End Sub
End Class