Is it possible to use for (int i=1;i>0;i++)variable + "aaa"; in the stimula report?
Posted: Wed Sep 08, 2010 1:50 pm
or is there a function similar replicate (aString, 5 ) in FoxPro ?
Reporting tool and data analytics tools for creating reports and dashboards in ASP.NET, ASP.NET MVC, .NET Core, Blazor, Angular, PHP, Python, WPF, JavaScript, and Java applications.
https://forum.stimulsoft.com/
Code: Select all
public string Replicate(string var, int n)
{
string originalVar = var;
for (int i=1; i<n; i++)
{
var += originalVar;
}
return var;
}