Announcements
No record found.
When I use setprefix function in the while select loop with the continue statement, than the behaviour is unexpected. It seems that the continue statement doesn't reset prefix level. See example below. Is it a bug?
static void TestPrefixWithContinue(Args _args) { int i; TaxTable taxTable; setPrefix("setPrefix with continue"); while select taxTable { setPrefix(strFmt("Tax code %1", taxTable.TaxCode)); if (i < 3) { info("Something wrong"); i++; continue; } // Some useful code here i++; } }
*This post is locked for comments
Yes, looks that way.
Log a bug with support if you feel this is important to fix.
Thanks
This is the trick
static void _tmp(Args _args){ int i; TaxTable taxTable; void infomonotree() { setPrefix(strFmt("Tax code %1", taxTable.TaxCode)); info("Something wrong"); }
setPrefix("setPrefix with continue"); while select taxTable { if (i < 3) { infomonotree(); i++; continue; } // Some useful code here i++; }}
static void _tmp(Args _args)
{
int i;
TaxTable taxTable;
void infomonotree()
setPrefix(strFmt("Tax code %1", taxTable.TaxCode));
info("Something wrong");
}
setPrefix("setPrefix with continue");
setPrefix("setPrefix with continue main sublevel");
while select taxTable
if (i < 3)
infomonotree();
i++;
continue;
// Some useful code here
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
Congratulations to our 2026 Super Stars!
We are thrilled to have these Champions in our Community!
These are the community rock stars!
Stay up to date on forum activity by subscribing.
Joris dG 5
Andrew Jones a1x 2
GL-01081504-0 1