Creating a Visual Studio Extension
-
HI, Not sure if i'm posting in the correct area, but if not hopefully someone can redirect me. I'm trying to write a visual studio extension to among other things keep all our check in comments consistant. We have a 3rd part application that we keep all out work tasks in, which i can link to (and already have in the extension). I simply want to use that task name to set the comments in the pending changes window. I can get hold of the window, with
Window window = _Application.Windows.Item("{2456BD12-ECF7-4988-A4A6-67D49173F564}");
but cannot seem to access any of the controls on it. Other windows have and 'object', which allows access to all the controls, however on the pending changes window the object is null. Am i looking at this in the correct way? is this even possible? Any help would be greatly appreciated. Thanks
Martin