I am receiving the error ".NET cannot yet parse percentage formats" when converting to a text box to a percentage format see code:
Dim PercentConvertor As New IdeaBlade.UI.NumericConverter(GetType(System.Nullable(Of Decimal)))
PercentConvertor.FormatString = "p"
mCtlBMgr.Add(
Me.txtMarkupAmount, "MarkupAmount", PercentConvertor)
The text box displays correctly until I try to change the value, then I get the error. I have to press escape to get it to return to its original value.