GetMinMaxVal example for Visual Basic

The following example retrieves the values for MinVal and MaxVal using GetMinMaxVal and writes the results.

    'must call GetMinMaxVal first
    Lead1.GetMinMaxVal
    Text3.Text = CStr(Lead1.MinVal)
    Text4.Text = CStr(Lead1.MaxVal)