If you look at the provided XML file for the library, you'll find several Initialize routines. The first one (Initialize) will take a string and convert it to a Big Decimal object.
Therefore instead of
BigDecimalNumber = EditText.text
it should be
BigDecimalNumber.Initialize(EditText.text)
Please note that all operations (division, multiplication, addition, subtraction) must be done using the provided methods of the class instead of
CalculateFormula = FormulaFrom * FormulaTo * Ed
it would be
CalculateFormula.Initialize5(FormulaFrom.Multiply(FormulaTo.Multiply(Ed)))
Where CalculateFormula, FormulaFrom, FormulaTo and Ed have all been Dim'd as the proper big decimal type
Note: Code has not been validated. I'm just going off of what I found in the XML file and therefore may be way off base. This is just a more expanded answer to
@sorex's hint.
Ninja'd as usual....