I am planning to develop visual studio Add-in to verify UI related issues of visual c++ project. Following will be requirement of the project:
- In my project some accelerator keys are reserved for some menus like, “O” is reserved for open file and “S” is reserved for save project. Likewise 15 keywords are reserved by rest of project. I cannot use those 15 accelerator keys in my visual c++ dialog.
Requirement:I want to create Microsoft add-in say “Verify accelerator Key”. This add-in will provide me one menu in visual studio environment. On click of menu I want to take each and every control from dialog and check whether provided accelerator key is belonging to reserved 15 keys or not. If any control accelerator key belongs to 15 reserved keys then I will request developer with error to change accelerator key.
This functionality will be similar to “Check Mnemonics” present in visual studio but for different purpose.
- Alignment in dialog: In visual c++ project, we are continuously facing issue that, controls on dialog should be aligned to each other i.e. top control on dialog should be on same line with last control vertically as well as rightmost control on dialog should be on same line with leftmost control horizontally.
I want to check alignment of each control.
Please provide me any guidance from where I can start or reference code, document ETC.
Thank You for reading.!