Devided by zero

KikikKikik Jember
edited 2:22PM in FastReport .NET
i want to convert fastreport delphi to fastreport.net, but i have trouble.

in fastreport delphi can, but in fastreport.net cant. why?
1. Image Fastreport.net
2. Error fastreport.net
3. Fastreport delphi
1.png 10.4K
2.jpg 20.7K
3.png 6.5K

Comments

  • edited 2:22PM
    1. use script to create your custom function.
    using System;
    
    namespace FastReport
    {
      public class ReportScript
      {
    
        public double MyCustomFunction(decimal amount, int quantity)
        {
           if (quantity == 0)
            return 0;
           else
            return ((double) amount / (double) quantity);
        }
      }
    }
    

    2. then call it from textobject

    [MyCustomFunction([Products.Amount],[Products.Quantity])]

Leave a Comment