Thursday 16 October 2014

How to resolve unbalanced TTSBegin/TTSCommit Error in Axapta


static void resetTTS(Args _args)
{
   while (appl.ttsLevel() > 0)
   ttsAbort;
}

No comments:

Post a Comment

Adding a newline into a string in C# and X++

Below is the sample code we can use for  adding a newline after every occurrence of "@" symbol in the string in C#   using System...