This question is similar to this question asked here, But that question has no acceptable answer, hence posting this question …
When our developers add new controls to Form using the Designer, the position of old controls in the generated designer.vb is changed. This is causing problem when we compare the old copy of designer.vb with the new version of the file that was generated after adding new controls to approve the changes. The file comparison causes problem where instead of just showing us the differences with new controls, we have to deal with differences triggered by the change in position of some already present controls in the new file.
One workaround was to sort both the files alphabetical as this eliminates the differences that were triggered by positional changes of controls in new file, but this makes understanding and approving newly added controls difficult. We have no idea why VS studio needs/makes the positions of old controls to be re-arranged in the designer.vb file. Is there any setting in Visual studio that we can tweak to avoid this or any tool available that can be used to remedy this.