Is there any way to allow the user to view/change only some files/classes of a .NET project and compile the whole application on the local machine with TFS2010?
Without splitting the project in multiple DLLs, of course.
Thanks!
...
At work we have a solution with over 90 projects. I want to know if there is a way to stop visual studio from compiling as soon as it encounters an error. Normally it will compile as far as it can and show a list of errors in the error window.
Any ideas?
...
Hello everyone !
I'm working on a VB.Net project and using SVN. I noticed that every time I open my main form, Visual studio slightly modifies my .resx file, which means that I keep having to re-commit it, which is quite annoying.
Has anybody experienced such problems? A diff file demonstrating the problem can be seen at http://synchro...
I am working with a WinCE device which has a radio manager driver written for it in MFC. In the code for the Radio GUI, I can see the function Deviceiocontrol with a specific IOCTL being called. However, I'm unable to trace the particular piece of code called by this function. Can someone tell me how Deviceiocontrol works?
...
Just curious how many people are actually running 2010 and what's your feedback so far?
Can I run 2010 concurrently with 2008 without issues?
Also, are 2008 projects 100% compatible with 2010 and if so should I just uninstall 2008?
Thanks for any feedback.
...
I am using microsoft visual studio to do C++.
I don't see std::err and std::out in the output console of the IDE.
Is there a way to redirect them ?
...
Is it possible to control Visual Studio like you can control Excel through the Python COM API?
I'm trying to kick off a build through COM (don't ask!)
An example would be much appreciated.
...
I've been brought in as an intern to develop a SharePoint site. My team won't authorize the budget for Visual Studio and I don't have physical or remote access to the SharePoint server (running Windows SharePoint Services 3.0 a.k.a. WSS) on the back-end.
So what exactly can I do? I'm a pretty decent programmer when it comes to web t...
In my current job we are not allowed to use databinding. I’m currently using a code generator (ORM) to generate the data layer objects. In the past I usually generated a data source (from the object) and do a drag and drop to automatically add the controls (with the correct databinding to the WinForm).
Is there is a way to do something ...
I have been asked to build an application where I can drag and drop few WebControls onto the WebPage designer surface.
So far I have read some articles on .NET Framework Design-Time architecture, like, MSDN Article: Hosting WinForms Designers, Developer Function Article etc.
But I can't a find a way to host WebForms designer. The only ...
I have poked around the web and Visual Studio file structure and I am getting the feeling that it isn't possible, however I was wondering if anyone knew how to edit the code comment templates for C# in VS 2010.
/// <summary>
///
/// </summary>
I was able to change the class file template so it would seem like the ability it there to...
I'm referencing a WiX extension in a WiX library project. This WiX library project is itself referenced by my main WiX MSI project. Why does the main project have to also reference the WiX extension, even though it doesn't directly need it?
I'd like to keep my wixlib's as self-contained as possible, so that other projects that use them ...
Hi all,
There are a few posts about this question around but most concern remote debugging - here everything is on same machine.
Visual studio 2008. I have a data connection to localhost SQL Server 2008 using Windows authentication with an admin account - this account is a member of sysadmin in SQL server. I double click stored proc an...
good afternoon everyone :)
I got sucha dilemma! (hate being new at stuff!)
What my problem is is that I have a project that is in full design mode swing right now. I built it using the Windows form..
Anyways, on one of my forms..that I already started building (very painstakingly)..
Minds have changed and now what needs to be on that ...
How can I refresh the tab in Visual Studio for a database table? Currently I re-open the table but I would think there is a way to refresh the table. I am referring to tables opened via the Server Explorer/SQL Express.
The clear results does not seem to refresh.
...
I have code like this:
private Box mCurBox;
public Box CurBox
{
get { return mCurBox; }
set
{
if (mCurBox != value)
{
mCurBox = value;
}
}
}
When mCurBox is null then CurBox the debugger says "Could not be evaluated". If it knows tha...
I would like to be able to select the build agent to use to deploy my web application. When the code is being built for testing I would like for it to use a certain build agent and deploy to our test server and when the code is being built for production I would like for it to use another build agent and deploy it to our production serve...
When debugging in Visual Studio and you want to step into a procedure for example, but you dont want to step into the parameter methods.
Is there a way to do this?
var a = StepIntoSomething(getSomeValueDontStepIn(1),getSomeValueDontStepIn(2));
...
Isn't visual studio supposed to automatically generate this file for each webservice creation ? If yes why can't I see it anywhere in project directory ?
...
I'm writing a c# form application and i want to draw a scale and write some rotated values under it,is there any way to do this?
...