visual-studio-2005

Unziping files to existing directories in Visual Studio 2005 C++?

I have a possibly pre-existing directory structure on the client machine server that looks like this: -| +css |-ABC |-EFG |-XYZ +img |-ABC |-EFG |-XYZ +js |-ABC |-EFG |-XYZ +htm |-ABC |-EFG |-XYZ When we send our customers updates to their e-commerce websites we send them in a zip file, which has the follow...

How to implement automatic properties in VS 2005 for a delegate callback

I'm attempting to get the TwainDotNet solution I found here (http://stackoverflow.com/questions/476084/c-twain-interaction) to compile, and I'm at my wits end. This solution was obviously developed in VS 2008, and I'm working in 2005 (no choice at the moment). I've spent probably WAY to much time getting this all to compile in 2005, an...

Visual Studio 2005 Design Mode Issue

Hello In visual studio 2005 i create a web site and implement css.When i run the web site everything is works correctly, no problem about css. But when i work in design mode css doesnt implement on my page. how can i fix this? ...

Tips for writing the least verbose Visual C++ code you can in Visual Studio 2005?

While I realize that Visual C++ is a language lacking much of the syntactic-sugar that most of us new programmers are used to these days, VC++ 2005 must have some shortcuts that can decrease the verbosity of the code at least a little; does anyone know of these, or is c++ just that verbose? ...

Which version of boost should I use with c++ visual-studio-2005?

Does anyone know what version of the Boost Library to use with Visual Studio 2005? ...

Which version of zlib should I use with visual c++ on visual-studio-2005?

I was wondering if anybody knew what versions of gzstream are compatible with visual-studio 2005. ...

How to use the .def file for explicit linking?

I am facing the the problem to link to a third party dll. It is windows mobile application, where I am try to link to this third party dll. Here first I had the dll and lib file. I was not able to link to it explicitly, but implicit linking is working. In the explicit linking the getprocaddress was failing. The dumpbin showed only the ...

Are there settings in Crystal Reports that modify sort order of data sources?

I'm working with Crystal Reports in VB.NET in Visual Studio 2005. I have a List(Of Stuff) that I've sorted according to one of the object's members. I've verified in the debugger that the list is sorted correctly. When I define my list as the data source, as in rptDetails.Subreports.Item("rptSubReport").SetDataSource(theListOfStuff) ...

Unziping a zip file with boost and Visual C++ 2005?

Is there a library in boost that can be used to unzip a zip file? ...

Loading Boost 1.40.0 into Intellisense in Visual Studio 2005?

Is there any way to get Intellisense in Visual C++ for Visual Studio 2005? I'm trying to get the Boost libraries to load up with intellisense and in the object browser/class view. I installed the binary for Windows with the BoostPro installer (BoostPro 1.40.0 Installer). I'm not certain that it comes with the source code however, whic...

Mercurial: Maintaining Visual studio 2005 and 2008 branches

I'm trying to develop a workflow which allows us to maintain seperate Visual studio 2005 and 2008 versions of a library, while making sure that changes to one branch are always replicated in the other branch. At the moment, I recommend that changes are only ever made to the default (VS2005) branch and then once complete, merged into the...

Visual studio 2005 "Object Test Bench" popup when debugging

When debugging a project in Visual Studio 2005, I have recently noticed a brief appearance of the "Object Test Bench" window. This window appears and then disappears after less than a second and does not look like the normal "Object Test Bench" window one sees when not debugging, as it looks like this: I would like to stop this window...

Building a winform app in VS for windows 7 x64 - get an error on install

I have a winform application that i desiged in VS2005 that works fine in windows 7 x86 however when i try to install it on x64 I get the error: "You have to run the 64-bit version of DPinst.exe on this machine. Contact the vendor that provided you this package. " In VS I have the build set to 'Any CPU' which should handle 64bit. I cant...

Visual Studio Setup and Deployment - Installation Folder Selection

Hello, I have a VS2005 Setup & Deployment project and i've run into an issue that I would like assistance with....Here is my issue: The 'DefaultLocation' for my application is set to '[ProgramFilesFolder]\MyApp'. Now I would like the user to select what drive to install this application to. I know this is accomplished through the 'Ins...

opening/printing tiff files in VB.NET Visual Studio 2005

I'm trying to use my existing application to open tiff files for clients and staff in order to print or view the reports that we have scanned into our server. Unfortunately I have been unable to find a free, preferably open source library or wrapper for a library that will work in VB.NET running through Visual Studio 2005. Does anyone k...

InnerChannel replacement in SoapHttpClientProtocol when moving from VS2005 to VS2008

In a project I'm working with we're using external services exposed by SOAP. In the proxy classes to access these services generated by Visual Studio 2005, the member InnerChannel was exposed, but this is not the case with the proxy classes generated by Visual Studio 2008. I'm trying to do this, but of course get an error because the me...

How to run Visual Studio 2008 projects in Visual Studio 2005

How do I run Visual Studio 2008 projects in Visual Studio 2005? ...

SSE2 Compiler Error

I'm trying to break into SSE2 and tried the following example program: #include "stdafx.h" #include <emmintrin.h> int main(int argc, char* argv[]) { __declspec(align(16)) long mul; // multiply variable __declspec(align(16)) int t1[100000]; // temporary variable __declspec(align(16)) int t2[100000]; // temporary variable __m128i mul...

Best place to store reference directories for unit tests in boost?

I'm trying to write a library which unzips a zip file contents to an existing directory, replacing the content of only the folders which exist in the zip file. In order to do this I am employing the use of the Boost Unit Testing framework. Before each test I wish make a copy of an existing directory, the copy of which will serve as the...

Boost Unit Testing and Visual Studio 2005/Visual C++ and the BOOST_AUTO_TEST_SUITE(stringtest) namespace?

I'm reading this article on the Boost Unit Testing Framework. However I'm having a bit of trouble with the first example, my guess is that they left something out (something that would be obvious to hardcore C++ coders) as IBM often does in their articles. Another possibility is that my Visual Studio 2005 C++ compiler is just too old f...