Спасибо! Извиняюсь за свою невнимательность. Действительно вся проблема крылась только в том, что я нигде не вызвал функцию RegisterFunctions(). Добавив сразу после инициализации вот так все выполнилось отлично.
Код: Выделить всё
public class Report : Stimulsoft.Report.StiReport
{
public Report() {
this.InitializeComponent();
MyFunction.RegisterFunctions();
}
#region StiReport Designer generated code - do not modify
#endregion StiReport Designer generated code - do not modify
}
Код: Выделить всё
MyFunc.MyFunction.RegisterFunctions();
report.Design();
Спасибо.