Use updated WI in Sharepoint Editor Location Root of the FormsProgramming folder Folder Name - ValidationEditor Editor Click on this file to launch the editor. ValidationEditor.exe Radio button Defaults to New Validation. Most of the requests that come in require a new validation creation. But the easiest way to create a new valdition is to use one already created as a template. So, click the radio button for Existing Validation Under Category - find the one that most closely matches the request. For example, an ID number would be grouped under Account Identifier, Numeric when a single number is the identifier. Once the category is selected, try to find a validation in the list that most closely resembles the request. Here is an example: The DAS requested a new validation where the user enters a number between 1 - 11 that indicates a reason code. Make sure the DAS has provided you with the exact text they want presented to the user. The category where we would search is Numeric, and we find validation #514 is close to what we need with a numeric range of 1-10. Double click on the validation. Now, copy these 3 elements to Notepad++ Validation Description: Range 1 up to 10 Validation: ^([1-9]|1[0])$ Validation Message: Enter a minimum of 1 year up to a maximum of 10 years. Now that you have a template, click the New Validation radio button. Copy the template validation description and modify it: Range 1 up to 11 Validation: Copy the template validation and simply change it to this: ^([1-9]|1[1])$ Validation Message: "Choose reason code 1-11" Click OK Click Finished XML Copy Copy to the clipboard the newly created Validations.xml in the ValidationEditor folder above. Go to the mapped drive F. Open the SuperBoxing folder There will be an older version of validations.xml in the folder. Paste the newer version and overwrite the older version. Open up SuperBoxing and check the properties of any box and click on the validations tab. Scroll down the list of validations until you reach the end should now be the new validation. Apply the new validation to an empty field on the form test to make sure it works properly. Apply the validation to a form and test it!!