GetMinMaxBits example for Access 2.0

The following example retrieves the values for MinBit and MaxBit using GetMinMaxBits and writes the results.

    Me![LEAD1].Object.GetMinMaxBits

    MsgBox "MinBit" & Str(Me![LEAD1].Object.MinBit)

    MsgBox "MaxBit" & Str(Me![LEAD1].Object.MaxBit)