Questions tagged [visual-studio-2008]

This tag refers to the Visual Studio line of software development products from Microsoft, the 2008 version. Do not use this tag unless you have a specific question about Visual Studio -- not just a coding issue. Questions should be specific to the 2008 version of Visual Studio.

Microsoft Visual Studio 2008 is an integrated development environment (IDE) from Microsoft. It is used to develop console and graphical user interface applications along with Windows Forms applications, web sites, web applications, and web services in both native code together with managed code for all platforms supported by Microsoft Windows, Windows Mobile, Windows CE, .NET Framework, .NET Compact Framework and Microsoft Silverlight.

Visual Studio does not support any programming language, solution or tool intrinsically, instead allows the plugging of functionality coded as a VSPackage.

More information:

15670 questions
7
votes
7 answers

How Do I Downgrade a C++ Visual Studio 2008 Project to 2005

How can I downgrade a C++ Visual Studio 2008 project to visual studio 2005? Maybe there is a converter program that someone knows of or otherwise a process that I can undertake. Thanks.
Brock Woolf
  • 46,656
  • 50
  • 121
  • 144
7
votes
1 answer

Adding Existing Form to C++/CLI WinForms Project

I have two C++/CLI projects A and B in separate solutions. I use A for experiments/testing and move the tested code to B once I am finished testing. However, I find that on adding a windows forms class (header, cpp and resx) to project B, I am no…
Agnel Kurian
  • 57,975
  • 43
  • 146
  • 217
7
votes
3 answers

How can I manually add a compound association in entity framework?

This seems like a common case, but for whatever reason, I am stymied by EF's weak editor. I have two tables, like so: Table1 ( Column1 int, PK Column2 int, PK ) Table2 ( Column1 int, PK, FK Column2 int, PK, FK Column3 int, PK ) Now, the database…
Pittsburgh DBA
  • 6,672
  • 2
  • 39
  • 68
7
votes
5 answers

How do I include System.Windows.Shapes?

I am using Visual Studio 2008 with the .NET Framework (v3.5). I cannot seem to use System.Windows.Shapes, or anything System.Windows.* besides Forms. Here is the link to the class description: System.Windows.Shapes (MSDN Library) Is there some…
Joe Fontana
  • 2,306
  • 3
  • 18
  • 18
7
votes
8 answers

Is there an easy way to randomize a list in VB.NET?

I have a list of type System.IO.FileInfo, and I would like to randomize the list. I thought I remember seeing something like list.randomize() a little while back but I cannot find where I may have seen that. My first foray into this yielded me with…
Anders
  • 12,088
  • 34
  • 98
  • 146
7
votes
4 answers

How to call a VSTO AddIn method from a separate C# project?

I have a C# Excel Add-in project "MyExcelAddIn" that has a public method Foo() to do something complex. For testing purposes, the add-in also defines a toolbar button which is wired to Foo() so I can test this and verify that clicking the button…
Ben Robbins
  • 2,889
  • 2
  • 31
  • 32
7
votes
2 answers

How to keep SSIS constraint lines neat?

In SSIS, if I start with one step, then have a lot of steps that can happen all at once, and then have another single step after all of those are done, the constraint lines are all over the place. It's ugly and that makes it hard to read. I can…
thursdaysgeek
  • 7,696
  • 20
  • 78
  • 115
7
votes
1 answer

Visual Studio - Projects from multiple source control providers?

OK, this has got to be a common problem. I hope one of you geniuses knows a solution! The problem I'm trying to solve is this: We use a lot of code from various public sources, and cannot easily keep them all current within Visual Studio because…
7
votes
3 answers

Load testing an ASP.NET web site

I want to load test an ASP.NET web service. I have Visual Studio 2008 Professional Edition and Visual Studio 2010. Can either one of these products facilitate load testing? I can't seem to find anything and all Google returns is higher end…
AngryHacker
  • 59,598
  • 102
  • 325
  • 594
7
votes
3 answers

Visual Studio 2008/2010: show method names in Find In Files results

I had a dream I could see constructor/method/property names along with search results (Visual Studio Find In Files feature), if applicable/available. For example, if I searched for _dreamProvider in Sleep.cs, I would get something like that in Find…
7
votes
0 answers

Can IntelliSense be made accent insensitive?

I am maintaining an old piece of C# code written in Spanish, originally in VS2008, containing names with accented letters where appropriate according to the grammar rules of the Spanish language. Regarding compilation and execution everything is…
Carvo Loco
  • 2,068
  • 13
  • 21
7
votes
3 answers

Keeping console window open when debugging

When I start a program without debugging (Ctrl+F5), I have to press a key to close the console window when the program is finished. When I start the program with debugging (F5), the console window closes immediately. Is there an option in Visual…
fredoverflow
  • 256,549
  • 94
  • 388
  • 662
7
votes
2 answers

Why doesn't Visual Studio 2008 show you the value of const variables when you hover over them in C#?

My question title explains it all. This is extremely frustrating, especially when working with lots of similar constants. It works for Visual Basic projects but not Visual C#. In general, why do the IDEs seem to be so different for the different…
Craig W
  • 4,390
  • 5
  • 33
  • 51
7
votes
15 answers

What are your most frequently used shortcut keys in visual studio?

Recently , I found some shortcut key really helpful which I never used before . Such keys like F7 ,F3 ,Ctrl+g help me a lot when editing and debuging. What are your most frequently used shortcut keys in visual studio?
MainID
  • 29,070
  • 19
  • 57
  • 70
7
votes
5 answers

Trying to not need two separate solutions for x86 and x64 program

I have a program which needs to function in both an x86 and an x64 environment. It is using Oracle's ODBC drivers. I have a reference to Oracle.DataAccess.DLL. This DLL is different depending on whether the system is x64 or x86, though. Currently, I…
Sean Anderson
  • 789
  • 1
  • 7
  • 7