The November 2007 release of Microsoft Visual C++, a C and C++ compiler for Windows.

learn more… | top users | synonyms (1)

4
votes
0answers
91 views

How do I debug a potential endless loop and heap corruption issue involving boost::interprocess managed_shared_memory?

I have the following "first-chance exception" message which is coming from a DLL I wrote which is running inside an executable that I did not write. That is, the DLL is a plugin. The first time this ...
0
votes
0answers
49 views

VC++ compiler ignores an overloaded function

Here is my code (simplified): //wrapper.h #include <play3d.h> class wrapper { private: soundengine *soundEngine; public: sound *playSound3D(source *source, D3DXVECTOR3 pos, bool ...
1
vote
0answers
46 views

Side-By-Side Configuration and Wix Installer

I'm working on WiX installer for a C++ VC9 x64 application which is dependent on Microsoft Visual C++ 2008 SP1 Redistributable Package (x64) ...
0
votes
1answer
39 views

Need more eyes for spotting the bug with compilation of doxygen on windows

Summary: 1>Executing Lex for d:\usr\doxygen\src\code.cpp ... 1>flex: can't open ..\src\code.l 1>Project : error PRJ0019: A tool returned an error code from "Executing Lex for ...
0
votes
1answer
25 views

project won't link in release mode error lnk1181

I have a project that i can compile and link in debug mode, but i am not able to link in release mode. I can compile, but not link. The error i get is fatal error LNK1181: cannot open input file ...
1
vote
0answers
43 views

Does BluetoothSelectDevices contain an MS bug?

So, I narrowed down the unpredictable crashes in my application to the BluetoothSelectDevices function. It is supposed to allow a device selection by the user. #include <windows.h> #include ...
7
votes
1answer
185 views

How can I return an opaque handle (void* or dword) that can be cast back to a value element stored in a boost::interprocess map?

I am a bit confused by the heap and by-value-versus-by-reference semantics involved in putting a std::string key and a large struct value into a container like boost::interprocess::map. Here is my ...
0
votes
2answers
273 views

ClistCtrl set color of an item

I have ClistView control in my MFC application. I need to color some of the items according to its content. For example, if it begins with "No Response to", i need to make it red. So far, i've tried ...
0
votes
0answers
52 views

Qualnet compilation with VC++ 2008 Express: fatal error 1052 : nmake

I am working on Qualnet 5.2 and try to compile qualnet with VC++. But I am getting an error that addons Makefile is not found. I followed the instruction given by them in programmers guide. Also ...
0
votes
1answer
74 views

'InterlockedIncrement': identifier not found error in visual c++ 2008

hi i have compiled the below specified code long (*interlocked_increment) (volatile long *); long InterlockedIncrement(volatile long & value) const { return ...
1
vote
1answer
152 views

When boost library “interprocess” defines a named_mutex do those named_mutexes work properly between different processes, or only with threads?

I think I must be assuming something from the name boost::interprocess that is not true. The documents repeat that named_mutex is global here. I am unable to make it work though. Two copies of the ...
0
votes
0answers
32 views

Porting Posix Msgqueues to windows using visual c++. is it possible?

I have developed an application in linux using c . I want to port this to Windows . The application has posix msg queues and pthreads . I tried visual c++ and was able to use pthreads by dowloading ...
0
votes
1answer
113 views

One more letter causes Access Violation in imread

For some reason, this code produces an access violation at the second imread, but not the first. #include <opencv2/core/core.hpp> #include <opencv2/highgui/highgui.hpp> using namespace ...
-1
votes
2answers
79 views

Ubuntu - Windows incompatibility on C++/Vector subscript out of range

The C++ projects I wrote and run without any problems on Ubuntu return the exception "vector subscript out of range" when I run them on windows. I use Windows 7 and Visual C++ 2008 Express. I hope ...
0
votes
0answers
47 views

How do I deal with the following error: “mlabraw.cpp(142) : fatal error C1083: Cannot open include file: 'engine.h': No such file or directory” if

How do I deal with the following error: mlabraw.cpp(142) : fatal error C1083: Cannot open include file: 'engine.h': No such file or directory ...if I have already added the path to engine.h in ...
0
votes
1answer
178 views

how to combine image sequences into video in opencv2.3?

I am trying to combine image sequences such that it will be a video.I have image sequences which are split into frames of 200 numbers. Please anybody tell me how can I combine them and make a video ...
0
votes
0answers
72 views

Visual Studio 2008 C++: error C2923 - invalid template type argument for parameter '_Kty'

I am compiling the following simple code in VStudio 2008, and get the C2923 error on the indicated line, which I do not understand (the same code under g++ does not produce any error): #include ...
0
votes
0answers
89 views

Minimizing and maximizing open view(Documents) in MFC mdi application

In MDI application, if one opens many documents (for example 3) and maximize document #1. I want to minimize this view and maximize another opened document. I have tried this but it is not working ...
0
votes
0answers
97 views

Creating ANE for communication with c#

I am creating Air Native Extension (ANE) to communicate with c#. I have created c# dll and referenced it into my Visual C++ dll project. Now after creating .ane file and adding that .ane file into my ...
0
votes
0answers
94 views

Microsoft linker warning LNK4217 with static library linkage

I have the following three c++ binaries. DLL_A.dll , LIB_B.lib (static library) and EXE_C.exe. LIB_B.lib consumes certain API's exposed by DLL_A.dll. EXE_C.exe consumes API's from LIB_B.lib. For ...
0
votes
1answer
712 views

How to make a taksbar (system tray) application in Windows

The only way I know to launch a windows application is through CreateWindow. Unfortunately, there is not a window style for a taskbar application, and I was wondering how to make a one. I did find ...
1
vote
0answers
98 views

Overriding memory allocator in MSVC++

While Microsoft standard runtime provides debugging version of allocation functions, it does not really work, because you are not supposed to use naked new in C++ code, so the instrumentation points ...
0
votes
1answer
211 views

Disabling change folder in CFileDialog in MFC at certain case

I am trying to overload the CFiledialog class to add functionalities as per my need. I am not getting the solution for restricting user from changing folder in certain situation as mentioned below. ...
6
votes
0answers
119 views

Reference collapsing under C++03

I need to create a predicate from bound member function, so I wrapped it in a boost::function<bool(SomeObject const &)>. That seems to be fine and everything, but I also needed to negate it ...
-1
votes
1answer
36 views

Function does not perform as expected

Code bellow is written in Visual Studio 2008 (C++), Win32Application. What I try to do is that after clicking on button1 first write Some text to textBox1, and then after the ...
0
votes
1answer
213 views

Call CreateDispatch from a dll gives m_lpDispatch as NULL

I have a program where I call an exe from a COleDispatchDriver. This gives the m_lpDispatch pointer as NULL. I am calling this from a dll from the main exe. I have added ...
0
votes
0answers
84 views

run an exe and pass it an access file C++

I need to open an exe file (of an exisiting program) and load an access file in that launched program. I have used ShellExecute to load the exe, but I could not load the access file. What are the ...
0
votes
1answer
78 views

Program crashes while executed in release visual c++

I have just begun to use Visual C++ 2008 to create an app for my PC. Program work both in debug and release mode when its run from visual c++. When I run release when is visual c++ closed and click ...
0
votes
1answer
81 views

compiler error when declaring constructor function

I'm working on my serious c++ program. It's been awhile since I've taken any classes, so I'm a little rusty. When starting the basic implementation of a game loop (After spending freaking FOREVER ...
0
votes
3answers
2k views

How to scan all files in a folder, including subfolders in VC++ 2008?

I'm want to build an application in VC++ 2008 (Windows form application). Here I want to browse a folder of my choice (push button "browse"), such that when I press the "scan" button my application ...
0
votes
1answer
109 views

Connector/c++ with SSL?

How to connect to MySql using Connector/c++ over SSL? I read about mysql_ssl_set(): seems to work only with Connector/c. I have openSSL enabled and working for require SSL users on MySql. And I can ...
3
votes
1answer
465 views

Can I use VC9 compiled PHP with Apache?

According to the Windows Binaries download page http://windows.php.net/download/ Do NOT use VC9 version with apache.org binaries Does this still hold? The only VC6 binaries are for PHP 5.2 and I ...
0
votes
1answer
168 views

Issue in convert project from vc6 to vc9

I have a project that was build in vc6,Now I have to convert it into vc9. In the code there is line CMapStringToOb cLogPathMap; ofstream tlogFile; But when I build the project the ...
0
votes
1answer
333 views

invalid dialog template name MFC

I have created a dialog box in my MFC app as below: BackfaceControlPoints *controlpoints = new BackfaceControlPoints(); controlpoints->Create(BackfaceControlPoints::IDD); ...
1
vote
2answers
2k views

ATL Based Linker Errors

I got a linking problem with atls.lib lately. I updated my linker's additional dependencies lines with: comctl32.lib C:\WinDDK\7600.16385.1\lib\ATL\i386\atls.lib ...
6
votes
4answers
388 views

Unreachable code at constructor's closing brace

I'm working on an application built with VC9 and I've hit upon a warning I don't fully understand: why is there an "unreachable code" warning on the closing brace of the constructor? The minimal ...
0
votes
1answer
133 views

Is Windows SDK for Windows Server 2008 a dependency for Visual C++ and C#?

When I installed Microsoft Visual C++ and C# 2008 Express, I got "Microsoft Windows SDK for Windows Server 2008" added in. I want to know if I can remove it and still have all the functionality of ...
1
vote
1answer
293 views

using a legacy (VB6) DLL in new visual studio express (C++ prefrred) project

I've got an old legacy application for communicating via serial port to an embedded controller communications bus. that someone else developed. The application is written in VB6, and is structured as ...
0
votes
1answer
282 views

Migrated application crashes, if DEP is active

I've ported our MFC application from vc6 to vc9 (VS2008). Everything's fine, but if DEP is active, program crashes (s. stacktrace below). I've already tried to play around with NX-Flag, but nothing ...
0
votes
1answer
56 views

unable to display png and gives warning in some part of code in my application after msi installation

I want to know the complete method of msi installation because The msi file created when installed is not displaying the pictures that are of .png type why does this happen and how to solve this ...
0
votes
1answer
750 views

Browse file in visual c++ windows form application

I want a browse option button into my form application which should browse the file till the path and get the only file name(which has been selected) into a text box. Please reply.. Thanks, Amrita
1
vote
2answers
361 views

How to generate vcproj files?

Suppose I've got a cross-platform C++ library, let's call it ylib. My primary development platform is Linux. I'd like ylib to be buildable by MSVC (2008, 2010, 11, etc). What's the best way to do ...
1
vote
3answers
3k views

Stack around the variable was corrupted

i have a function that loops untill the correct y,n answer is typed but at the end of the choice i get the error: Time Check Failure #2 - Stack around the variable 'YESNO' was corrupted. ive had a ...
2
votes
5answers
174 views

re-initialize a struct's members

It's easy to create and initialize a struct... struct S{ int x; bool b; }; S s = {123,false}; But is it possible to use the same trick on an existing object? Or is this a 1-time only thing? S ...
0
votes
1answer
89 views

No SB_LINEDOWN when scrollbar position is zero

Scrollbar isn't giving SB_LINEDOWN or SB_PAGEDOWN events when the current position is at the top. If I drag the thumb down, then events are delivered. What am I missing?
1
vote
0answers
401 views

Visual C++ cannot open include file error, fixes with a second consecutive build

I am running into this issue, which, although not a show-stopper is becoming increasingly annoying. I have a project where a rebuild or a build after some changes will result in the C1083 error: ...
0
votes
1answer
467 views

Visual C++ 2008 x86 SP1 redist debugging symbols can't be found by Visual Studio 2008

For some reason, Visual Studio can't seem to find the debugging symbols for VC++ 2008 SP1 Redist (this one: ...
0
votes
4answers
344 views

String pointer syntax, is this correct?

I'm coming from a C# background and my C++ is very rusty so please bear with me. The following function definition accepts pointers (LPTSTR) to strings representing an input filename (szIn) and ...
5
votes
3answers
134 views

Can I check which function templates have, or have not, been instantiated at least once?

I have a lot of template code. Since bad template code does not throw a compiler error unless it is compiled, is there any way I can check which template functions the compiler actually 'compiled' and ...
1
vote
1answer
98 views

View integer on memory locations allocated as char in Visual C++ 2008 debugger

I'm using Visual C++ 2008 to write and debug my project. I have a char* pointer. I want to view 4 bytes starting at my pointer as an integer in the debugger. How do I do it? (int)(*pointer) comes to ...

1 2 3 4