I have written a small plug in for Visual Studio 2005. It displays the name and the shortcuts of the last command you have used (nice for learning seldom used command's shortcuts).
I display this information in a window that I manually dock between the project explorer and the property panel.
The problem : every time I start Visual Studio, this window come back in the middle of the screen. It does not remember its last position. I will have to dock it programmatically.
Question : Where should I save the information about the window's size and position when the user close it ? Does some kind of store already exists for this usage in Visual Studio or do I have to find one by myself (say - Windows Repository) ?
Note : I create this window using Window2.CreateToolWindow2()
Thanks in advance, Sylvain.