Tuesday, March 4, 2014

Microsoft dynamics ax2012 : Number Sequence Framework, Step by Step

http://www.slideshare.net/HamdaouiAmine/microsoft-dynamics-ax2012-number-sequence-framework-step-by-step

3 comments:

  1. what is the use run method in forms?

    ReplyDelete
  2. how can we know that form is executed??pls reply

    ReplyDelete
  3. Static Server boolean validateEmail(socialsecuritynumber _socialsecuritynumber)//syntax error//
    {
    Str MatchEmailPattern =
    @"^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,4}$";
    System.Text.RegularExpressions.Match myMatch;
    ;

    myMatch = System.Text.RegularExpressions.Regex::Match(
    _socialsecuritynumber, MatchEmailPattern);

    return(myMatch.get_Success());
    }
    I am getting error in Validate email as syntax error.Please can one rectify??

    ReplyDelete