Hi. I use Visual Web Developer Express Edition 2008 and SQL Server 2008 Express edition. I have finished a project recently. But many of hosting firms don't have SQL Server 2008. So i decided to uninstall SQL Server 2008 and install SQL Server 2005. Then I would reproduce my database. I uninstalled SQL Server 2008, installed SQL Server 2...
In Visual Studio 2008: Is there a way for me to customly collapse bits of code similar to like how I can automatically collapse chunks of comments?
...
In Visual Studio 2005's About Box, the installed products have a (version?) number associated with them. A couple of our dev machines differ:
Microsoft Visual Studio 2005
Version 8.0.50727.762 (SP.050727-7600)
Microsoft .NET Framework
Version 2.0.50727 SP2
Installed Edition: Professional
...
Microsoft Visual C++ 2005 77626-009-142...
It's been a while since Visual Studio added support for a foreach extension that works like
vector<int> v(3)
for each (int i in v) {
printf("%d\n",i);
}
I want to know how to make any class able to use foreach. Do I need to implement some interface?
...
I am interested in setting up FxCop to run on each of our VS .csproj files in our developing environment by calling it as a target in the .csproj file itself without creating a separate MSBuild file for the project. Is this
<Target Name="AfterBuild">
<Exec Command=""C:\Program Files\Microsoft FxCop\FxCopCmd.exe" /searchgac ...
When Visual Studio generates, e.g., a C# source file, if you edit it in an ASCII text editor, you'll see something that looks like the following character sequence:

Deleting these bytes doesn't seem to harm anything, but why are they put there in the first place?
...
So basically this code was working fine before. I had some computer issues and had to move the development folder around and when I reopened it, I am getting a "Type 'SqlConnection' is not defined" error on all of my pages, even though I am importing System.Data.SqlClient.
Intellisense seems to see that its imported, but I get the erro...
I am building an internal dev tool to manage different processes commonly used in our development environment. The tool show the list the monitored processes, indicate their running state and allow to start or stop each process.
I'd like to add the functionality of attaching a debugger to a monitored process from my tool instead of goin...
Is it possible to use resx files for different languages in a windows forms application, the same way as in a web project?
I think that you can set the culture of the thread and it should read from the correct file.
The problem I am having is how to create the files for each language in visual studio 2008, feel like there is something ...
Hi,
I think that Visual Studio's biggest let down is the Javascript editor. I have been told to use Aptana as an editor for my javascript files, but I would prefer to stick with visual studio if possible.
I have read other similar plugin posts, but none focus specifically on Javascript.
VS2010 may offer some improvements, but will th...
Hi,
I have to build some C source files using Visual Studio (currently using VS2008) but there is a pre-build script that has to be run so the files are able to compile.
So this pre-build script has to modify the source files and here comes the problem: how can I use a pre-build script that modifies the src files.
If I modify the ori...
We use Make to compile our product, which includes, C, C++, Java and a bunch of other bits and pieces. As much as possible we have all tools required to compile the whole thing checked into source control, to eliminate local dependencies and to ensure consistency across dev machines.
Recently we've added some components written in C# us...
I've been working mostly with MS Visual Studio .NET tools and technologies, but started to wonder out of curiosity if there are alternatives to it, especially open source ones, since it seems like for every payed products there are free open source alternatives.
...
With the Edit.MoveContolUp/Edit.MoveContolDown function, i can scroll the view up and down
but it only scrolls one line. Is there any way to scroll the view more than one line with just one key input??
...
I am working on Visual Studio. I make changes in the GUI of VS like the one we have when we goto the properties of a VS project. I want to know that whether there are any scripts in VS with the help of which all the changes that i make in the in-built GUI of VS get stored in one script and if i deploy that script on another machine then ...
In C# code, we can just right click on the class name and then select refactor and then extract the interface for that class.
I wonder if this could be done on VB. Im using the same IDE VS 2008
...
I am working on an old .NET 1.1 windows application. In the debugging configuration we have set debug mode to an external program which is an exe file. I want to debug that exe when I run this windows application. But when I set an break point I am getting an error "symbols not loading".
I tried all the things searched from google like...
I am trying to compile my Visual Basic .NET project named Myproject.sln via command line commands.
I need to build and then to compile that solution.
I read all questions here how to do it but I couldn't make it work.
My Visual Basic .NET compiler is called vbc.exe. Any idea how I do that thing?
I am using Visual Studio 2005.
I have...
In my admittedly somewhat short time as programmer, I have used many development environments on many platforms. Most notably, Eclipse/Linux, XCode/OSX, CLI/editor/Linux, VisualDSP/Blackfin/Windows and MSVC/Windows. (I used each one for several months)
There are neat features in pretty much all of them. But somehow, I just can't find an...
Hi all,
I'm curious about your thoughts on moving to a new IDE (specifically Eclipse). I have been hearing wonderful things about it from this community and I'm always on the lookout to try new things.
Currently I'm running Visual Studio 2005, with a bunch of external commands loaded (for compiling down to a binary, running lint, etc)...