One way to do this is the handle the ValueChanged Event for each BasicLabel. In that event add all the values and put it in another Label.
Similar to this:
Private Sub BasicLabel3_ValueChanged(sender As Object, e As EventArgs) Handles BasicLabel1.ValueChanged, BasicLabel2.ValueChanged, BasicLabel3.ValueChanged
Try
Dim Sum As Integer = CInt(BasicLabel1.Value) + CInt(BasicLabel2.Value) + CInt(BasicLabel3.Value)
Label1.Text = Sum
Catch ex As Exception
End Try
End Sub