| Thread | Last Post | Replies |
|
| Code reorganization | 11 Oct 2005 10:33 GMT | 1 |
I Work in an environment with a lot of code that was written by previous contractors. These contractors have placed methods all over the files and we want to be able to reorganize our classes. For example, place all methods together, all event handlers together, all
|
| Implementing IVsFontAndColorGroup | 11 Oct 2005 08:08 GMT | 2 |
I have been able to implement my own Font and Color categories following the September SDK documentation, as well as the Dr Ex blog entry "Have you had fun with fonts and colors". Now I want to group my categories, and the implementation is not going well
|
| IVsFontAndColorDefaultsProvider & IVsFontAndColorDefaults .. how to do the registry entries?? | 11 Oct 2005 00:00 GMT | 2 |
I'm implementation the IVsFontAndColorDefaultsProvider & IVsFontAndColorDefaults for my package (using C#) i now need to create the registry entries for the Category / Package.. how
|
| Customizing the Build List Error Output | 10 Oct 2005 07:46 GMT | 4 |
My package is hooking into a project system's build process by means of IVsBuildableProject.AdviseBuildStatusCallBack and by implementing IVsBuildStatusCallback. I get notified of build begin and end notifications in my implementation of IVsBuildStatusCallback. In my ...
|
| COM interfaces of DTE | 08 Oct 2005 19:37 GMT | 1 |
Yesterday I began trying the COM interfaces of DTE using C++ & ATL (I know it better than C# and Managed C++, and I had already done COM programming)... I was "exploring" the ToolBox "tree". I finally arrived at the ToolBoxItems & ToolBoxItem level. But then I noticed that the ...
|
| Hide command using DTE automation model (or priority command targe | 07 Oct 2005 13:43 GMT | 6 |
I know I can hide the visibility of a command using IOLECommandTarget::QueryStatus and IVsUIHierarchy::QueryStatusCommand. Is this possible using anything in the automation model? I'd like to hide the command that comes from a package I don't own.
|
| Command-line build broken in RC | 07 Oct 2005 04:39 GMT | 6 |
In Beta2 of Whidbey, I used to be able to build from the command-line, like this: devenv.com MySolution.sln /Build "Release|Win32" In RC, I keep getting "The operation could not be completed. Unspecified
|
| Redistributing VSS interop | 05 Oct 2005 15:11 GMT | 2 |
One of my packages allows the user to perform operations on previous versions of files under source control. Previously, to support VSS, I was simply looking for ss.exe (after checking for its path in the registry), and shelling out to it with redirected console IO. But I wanted ...
|
| VsPackage without Satellite DLL possible? I thought so... | 04 Oct 2005 21:25 GMT | 1 |
...but several attributes and interface methods (e.g. "ProvideLoadKeyAttribute" and "IVsInstalledProduct.IdIcoLogoForAboutbox") refer to numeric IDs for resources. I haven't found any information about an automatic mapping of numeric resource IDs to string identifiers, and it
|
| String references to numeric resources (e.g. "@101" or "#101")...? | 04 Oct 2005 21:19 GMT | 1 |
I've seen strings such as "@400" or "#150" passed as arguments into attributes and other methods, which presumably is interpreted as a numeric resource identifier. For example, one standard GetResourceString method generated as part of my VsPkg.cs:
|
| Questions on VSIP | 04 Oct 2005 17:07 GMT | 1 |
We have a tool developed under VSIP program and we are adapting this tool to work with Visual Studio 2005. We have following queries 1:
|
| Run Addin commands from macro | 03 Oct 2005 23:36 GMT | 2 |
to automate testing of my addin I need to call it's commands from IDE macro. If I call those command from command window ("addinname.connect.commandname") it works ok. But if I try dte.executecommand("addinname.connect.commandname"), VS complains that there
|
| Question re: UICONTEXT_CodeWindow | 03 Oct 2005 08:55 GMT | 3 |
I've got some commands in my VsPackage that I want to show on a menu before the package is loaded. They only make sense when a file is open in the IDE, so I have used UICONTEXT_CodeWindow in the visibility section of my package's CTC file. This seemed to work just fine in Beta2, ...
|
| error PRJ0019: A tool returned an error code from "Performing Cust | 01 Oct 2005 03:49 GMT | 2 |
error PRJ0019: A tool returned an error code from "Performing Custom Build Step". This is the error shown when building a project. This was a Visual Studio Integration Package originally created in
|
| MSBuild problem (DocumentationFileOutputGroup weirdness) | 01 Oct 2005 01:38 GMT | 1 |
I'm trying to setup up some simple staging for one of our projects (the simplest one) to occur after the build is complete. The following has been added to the end of the .csproj file. <!-- Staging -->
|