visual-studio-2005

Compiles fine but have problem publishing whit updatable option

Hello evey one, I have a web site developed on VS2005. that compiles fine. But when i try to publish it whit the "Allow this web site to be updatable" i get the following compiller error: error BC30002: The type 'ASP.ucDireccion' is not defined. The problem seams to be related to a user control im accesing its public properties and me...

In VS 2005 How do I generate the connection strings for web.config?

I thought that VS 2005 automatically generated the connection strings in the web.config, however I can't for the life of me remember how. ...

LNK2005 Error when trying to override global new and delete operators

I have a C++ project that has been compiling and linking without problems. Recently we added code to override the global new and delete operators and now the project fails to link with the error: error LNK2005: "void * __cdecl operator new(unsigned int)" (??2@YAPAXI@Z) already defined. I have spent a lot of time googling this problem and...

continous integration with just Visual Studio 2005

any hints on how to start CI with just VS2005 without TFS? will hudson be able to build VS2005? ...

compilation error in vc++ vs2005

I am getting an error while compiling in vc++ vs2005. error LNK2019: unresolved external symbol __imp__MessageBoxA@16 referenced in function "void __cdecl MsgBox(char const *,char const *,...)" (?MsgBox@@YAXPBD0ZZ) ...

Visual Studio 2005 - Remote Debugging Connection Issue?

I’m trying to get remote debugging working again on a Windows 2003 server that I use for ASP.Net 2.0 development. I had everything up and running for months then one day, I was forced by our AD policy to change my password and the remote debugging has not worked since. I have a Windows 2003 server running virtually (MS Virtual PC 2007)...

error while porting from vc6 to vs2005

hi i am getting the link error, as it worked fine vc6,please do help me on this LINK : fatal error LNK1104: cannot open file 'mfcs42.lib' ...

Reading data from a SAS data source in .Net

Hi all I've been asked to read some data from SAS in an ASP.Net application. I've got working code for a Windows Forms app. However the same code doesn't work in ASP.Net however I can try it. A clean project with the same references consistently fails. Here's what I've got for the connection: SASWorkspaceManager.WorkspaceManager ...

Easy way to add text above all methods in a solution in VS 2005?

A colleague was working on a Perl script to consume a C++ source file and add text above all of the methods in the file. He was looking to develop code using regular expressions from the ground up to detect the top line of the method: void MyClass::MyMethod(int somethingOrOther) Trying to do this from scratch is fraught with landmine...

debugging windows service

Hello, I am trying to debug a windows service in Visual Studio 2005 on a Windows XP machine. I can install the windows service and start it from the admin console. However, the process appears disabled in the list of available processes and I cannot attach the debugger to it. What can I do to enable the process in the list of available ...

porting to vs2005 from VC6

i was getting an link error mfc42.lib cant be opened, while porting vc6 to vs2005, i added the lib path form vc6 directory to vs2005 option, but nw i am getting error link2001 unresolved external symbol "unsigned int (__stdcall* ATL::gfunc() ...

Problem with ASP.NET 2.0 GridView hidden Columns are shown on Postback

Please Help, I have User Control that contain GridView where i am hiding its Columns on GridView RowCreated event : private void gvGrid_RowCreated(object sender, GridViewRowEventArgs e) { foreach (TableCell objCell in e.Row.Cells) { if (objCell is DataControlFieldHeaderCell) ...

Spelling check in Visual Studio 2005

I read about Spelling checker for VS 2008. I wonder if there is something similar for VS 2005 (+freeware, -shareware). Thanks. ...

Where to get Visual Studio CD images?

My Visual Studio 2005 CD (Standard) is broken and I have to install it to me new PC. I tried downloading "pirated" ISOs, but they have illegal keys pre-pidded to the setup (cannot be changed). So where can I get the original images with which I can use my own cd-key? ...

C++/VS2005: Defining the same class name in two different .cpp files

Somewhat of an academic question, but I ran into this while writing some unit tests. My unit test framework (UnitTest++) allows you to create structs to serve as fixtures. Usually these are customized to the tests in the file, so I put them at the top of my unit test file. //Tests1.cpp struct MyFixture { MyFixture() { ... do some se...

Is Visual Studio 2005 Express Edition still legally available anywhere?

All the links on the Microsoft site now redirect to the 2008 edition. The problem is the new version won't link with C libraries built with the 2005 edition. ...

VS 2005 debug mode not working

I am opening a visual studio 2005 solution file and building it in release and debug mode. while I am able to run the application in release mode. but when I try to run the debug mode, I am getting following error: "Unable to start program XXXX.exe". "This application has failed to start because the application configuration is incorrec...

Unhandled exception: 0x80000001: Not implemented. (VC++)

Hi all, I am using MS Visual Studio 2005 (C++).. Could anyone tell me what could cause a runtime exception like so..? Unhandled exception at 0x07ed0027 (xxx.dll) in yyy.exe: 0x80000001: Not implemented. xxx.dll is a dll i am working on and yyy.exe is an exe that is calling that dll.. When the undhandled exception comes up while d...

Project Build gets Skipped in VS2008 after conversion from VS2005

Hi, I recently installed VS2008 and opened a VS2005 project(C++). Then after the conversion to VS2008, i tried building the project. But the project is getting skipped. I tried Clean as well as Rebuild, and it is getting skipped for those as well. How can i solve this problem and build the project in VS 2008? Forgot to mention, Also in...

Does any one know how to find following string using regular expression of visual studio?

Does any one know how to find following string using regular expression of visual studio? <fo:block> </fo:block> I have tried with following but it didn't work \<fo\:block\>*$\n*\</fo\:block\>$ ...