I've spent some time with new Database project in VS 2008 and decided to go with it (really cool). But i've also discovered that i cannot build it on our CI-server where .NET SDK only is installed. I tried to put Microsoft.VisualStudio.TeamSystem.Data.Tasks.targets to the CI-server but it has too many dependencies on assemblies such as M...
I have a xsl that i've copied out of Sharepoint, and pulled into visual studio.
Visual studio will not compile or apply the transfromation because of this error
XslTransformException
---------------------
Cannot find the script or external object that implements prefix 'http://schemas.microsoft.com/WebParts/v2/DataView/runtime'.
Can ...
I have an add-in for Visual Studio 2008 (C#), which must select file from a local storage and copy it to becoming folder in Team Explorer.
How to copy a file to Documents in Team Explorer?
...
I frequently have 10 or more files open in Visual Studio at one time. I am looking for an add-in that will duplicate the functionality of the "Windows" Window, but in a NON-Modal, dockable type window.
In other words a window with a list of the files open in the IDE, that I can dock next to the Solution explorer or something, and just ...
As an example, I'm trying to add a reference to WatiN in Visual Studio 2008. I download WatiN and I have a folder on my desktop containing 5 files:
WatiN.Core.dll
WatiN.Core.xml
Interop.SHDocVw.dll
Microsoft.mshtml.dll
WatiN.Core.UnitTests.dll
WatiN.Core.UnitTests.dll.config
I can add my reference to WatiN.Core.dll and start coding ...
Is there a "call stack" for compiler errors in Visual Studio 2005 (C++)?
For example, I am using a boost::scoped_ptr as the value in a QHash. This is however causing the following compile error:
1>c:\qt\include\qtcore\../../src/corelib/tools/qhash.h(743) : error C2248: 'boost::scoped_ptr<T>::operator =' : cannot access private member d...
Greetings all,
I have posted this on the MSDN managed news groups as well as a BizTalk site, but I am not sure they get enough traffic that as I don't seem to be getting a response.
Help me StackOverflow, your my only hope.
I am in the process of upgrading our Visual Studio BizTalk projects from BizTalk 2006 R2 to BizTalk 2009.
I s...
Hello. I know it is possible to add a tooltip to just about every element in Visual Studio, but I was wondering if anyone knew if it was possible to add screentips to a label? I have 5 images I'd like to trigger when the user hovers their mouse above the element (a label).
I have 5 labels: Form, Crown, Trunk, Root Flare, and Roots and 5...
I have a VB app that I need to monitor while it is running. I added some variables to the Watch window, but while the app is running the watch window is greyed out. The only way that I have found to see the variable values is to use Debug -> Break All, but this stops the program.
I have used other IDEs and they allow active variable...
Does anyone else have a problem where everytime you need to commit using the TeamCity VS plugin, you have to re-enter the TeamCity server address and credentials?
...
Hi togehter,
I have a compoment developed by myself.
E.g.: Logger.Charts.Exchart() is the constructor.
Now I use "using" in my Form:
Using Logger.Charts;
Exchart x = Exchart();
But every time I click on my component on the designer, it automaticly edit the constructor to:
Exchart x = Logger.Charts.Exchart();
How can I disable tha...
Is there a way to improve the intellisense of intellij? I love how visual Studio intellisense works by making suggestions as you type.
...
I need to display both the AssemblyVersion and the AssemblyFileVersion. In AssemblyInfo.cs, I have:
[assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyFileVersion("2009.8.0")]
However, I only get "2009.8.0" when I reference the above with:
public class VersionInfo
{
public static string AppVersion()
{
...
Is there a fairly inexpensive source control product on the market that integrates into Visual Studio 2008+ and that has the power and capabilities of Visual Studio 2008 Team Foundation?
I have used Dynamsoft, SourceGear, Subversion and Platic SCM and reckon that neither of these products can come close to Team Foundation.
I ideally w...
After installing SP1 of Visual Studio 2008, code completion shows all types when an object member shows the parameter list. Before SP1, parameter list would only show related types.
Take a look at this image for an example: http://img25.imageshack.us/img25/3484/vs2008sp1intellisense.png
Has any one else had this problem? Solutions?
Th...
Does Eclipse have an analog to Visual Studio's "Immediate Window", a window where I can evaluate statements while in the debugger?
...
This is a really strange issue. One day my project started to do a rebuild every time I launched it in the debugger, even if I hadn't changed the code. ie. I would go Build->Build Solution, then Debug->Start Debugging, it would rebuild when I tried to start debugging. The specific file that it recompiles is shown (left out source code, j...
I'm trying to create a web application project template for everyone to use here at work that will minimize the amount of work that we have to do to create a new application with all our normal stuff, and I was thinking that it would be nice to do some setup stuff (add some records to a database) when the developer creates a new applicat...
In VS.NET 2008 / .NET Framework 3.5, Is there anyway to generate intellisense based on the custom config sections?
I've got a config section looks like this:
<custom>
<key name="NameGoesHere" />
<key name="SecondNameGoesHere" />
</custom>
Currently this is tied to a custom config section class so I call it like ...
Good Day,
I am trying to write some code that will print a large image (1200 width x 475 height) over multiple pages.
I tried partitioning the image over three rectangles (by dividing the width by three) and calling e.Graphics.DrawImage three times and that's not working.
If I specify the large image within one page, it works, but how...