How do I customize the way Freight is calculated?

×

Override the UpdateFreight routine

Protected Overrides Function UpdateFreight(ByVal ShipViaValue As String) As Boolean

    'Custom logic here

End Sub

  • Routine should return True if the calculation is successful
  • To access the base code (which uses eFreight) call MyBase.UpdateFreight(ShipViaValue)