Try Catch
Posted: June 13th, 2017, 11:18 am
I am developing an entry application, there are buttons to skip, I use below function to skip works fine.
function skipOP(alpha varToSKP)
skip to varToSKP;
end;
My proble: when I am in same variable and try to skip It gives the warning / Error, I know it is reasonable
Unable to ‘skip to VARXXXX’ – target item is the current item {}
But I want to get rid on this and not to show to user like C#, java languages
function skipOP(alpha varToSKP)
Can I go to implementation like that?
Thanks in advance
Leulae
function skipOP(alpha varToSKP)
skip to varToSKP;
end;
My proble: when I am in same variable and try to skip It gives the warning / Error, I know it is reasonable
Unable to ‘skip to VARXXXX’ – target item is the current item {}
But I want to get rid on this and not to show to user like C#, java languages
function skipOP(alpha varToSKP)
end;try {
skip to varToSKP;
}
Catch {
}
Can I go to implementation like that?
Thanks in advance
Leulae