|
Hi Sasha!
Thank you so much for the proposed solution. I am having trouble using the Function. The code below looks ok if the value of Double is literal or hard
coded. The code below is working fine if I just put a literal double value
Double n = 900.75;
label7.Text = NumWordsWrapper(n);
But on the report, the double Value should come from the data on the report by using the GetCurrentColumnValue
Double n = GetCurrentColumnValue("Amount");
The error says "cannot implictly convert "type" to double, an explicit conversion exist"
Hope you can help me on this. Thanks once again!
|