In my form i have a button with C# script that displays a list of folder with a checkbox to select it, but with a new bpm version there aren't checkbox.
I attach the screenshot.
I install bpm 9.2.1 but bpm solution is the same .
an extract of my script.
foreach(string f in searchFolder)
{
DirectoryInfo fi = new DirectoryInfo(f);
sResult.Append("" + fi.Name + "");
sResult.Append("
");
}
Could someone help me?