Questions tagged [visual-studio-2005]

Visual Studio 2005 is a version of Microsoft's Visual Studio integrated development environment product line for .NET-based and C++ development. Do not use this tag unless you have a specific question about Visual Studio -- not just a coding issue.

Visual Studio 2005 has been superseded by the 2008, 2010, 2013 and 2015 versions at this time.

More information:

3144 questions
1
vote
1 answer

VS.NET 2005 Form Designer - Can pages inherit their size from a parent, and can I see it in VS designer view

I have a group of pages I want in the same size. I want to be able to change the page size in the designer view of visual studio, and that all the other inheriting pages size will change. I am currently working with VS.NET 2005 Form Designer is this…
Shuky Capon
  • 785
  • 5
  • 22
1
vote
2 answers

TFS 2005 Wiki Template?

Is there a Wiki plugin for TFS 2005, ie. SharePoint Services 2.0?
1
vote
0 answers

create new language project item in visual studio

I have created a custom template using vsz and vsdir files and can make it appear under visual studio 2005 New Project' Visual C# or Visual C++. But since the template is used to create a makefile type of project so I can use my own build system, I…
Dula
  • 1,404
  • 1
  • 14
  • 29
1
vote
1 answer

Win32 Application Console Output?

When developing a Win32 Application (non-console application) in Visual Studio 2005, is there any way to get the same sort of output as you do from the console? For instance, say I want to see log statements (such as I would with cout in a console…
leeand00
  • 25,510
  • 39
  • 140
  • 297
1
vote
3 answers

Mouse click when the application is busy

When I click on anywhere on my application when the application is busy it changes the cursor into a generic wait cursor. Is there anyway I can code it for an animated cursor?
Rabin
  • 1,563
  • 4
  • 20
  • 44
1
vote
2 answers

Change ConnectionString in VS2005 (C#)

I know there is some similar issue. But, still the question is not answered! I need to modify the connection string not add a new one.
John
1
vote
1 answer

Using animated cursor in C#

How do I use animated cursor "myCrusor.ani" in C# winform?
Rabin
  • 1,563
  • 4
  • 20
  • 44
1
vote
1 answer

Using custom cursor in C#

Let's say I have a cursor named myCur.cur. What I would like to do is use that cursor on my desktop application instead of the boring cursor provided by Visual Studio 2005. How do I write for that?
Rabin
  • 1,563
  • 4
  • 20
  • 44
1
vote
1 answer

Fill the table value in combobox

Using VS2005 with C# I want to fill the combobox by using the table value. Code OdbcConnection con = new OdbcConnection(); OdbcCommand cmd; con.ConnectionString = ""; con.Open(); cmd = new…
Gopal
  • 11,712
  • 52
  • 154
  • 229
1
vote
1 answer

LIB file generation in DLL project

I am using VC++ / Visual Studio 2005. I created a DLL project. The output DLL is getting created properly. But the associated LIB file is not getting created. Where might I go wrong? Do I have to do any special setting for that?
bdhar
  • 21,619
  • 17
  • 70
  • 86
1
vote
4 answers

Name of tool for VB.NET documentation comments

What is the name of the tool that allowed VB.NET code to have embedded documentation comments (corresponding to C# documentation comments) that could be extracted by this tool? I am going through some old code; Visual Studio 2005 era. A trivial…
1
vote
1 answer

SSIS Package failing because "script task is failing because the script is not precompiled"

I developed a pretty straight forward SSIS package (in VS2005 w/ .Net Framework V 2.0.50727 SP2) that gets a list of users to email, starts a for-each loop container and then executes a script task to retrieve user specific data and email it out to…
ÁEDÁN
  • 53
  • 2
  • 8
1
vote
1 answer

Django in VS2015

I am completely a new comer to the python world. Basically I'm used to in Visual Studio. I've installed VS2015 preview recently. It has new project template for python Django. I'm trying to explore it. While taking a new project, I've got the…
s.k.paul
  • 7,099
  • 28
  • 93
  • 168
1
vote
2 answers

Are there issues loading multiple mscvrt**.dll versions?

I have been unable to find much or any information on this. I have a project which is built using VS2005, thus using the mscvr80.dll. My project also loads a third party library, which then loads up mscvrt60.dll. Now I have a strange bug in my…
DeusAduro
  • 5,971
  • 5
  • 29
  • 36
1
vote
2 answers

Visual C++ - the client of a library is unaware that the library has changed using pragma comment lib

The codebase I am working with uses pragma comment lib to express the dependencies of code to the library that it needs. Its build is very broken. I made an experiment to try to understand the use of pragma comment lib. It is the simplest library…