Microsoft Visual C++ is a C and C++ compiler for Windows. The most recent version of the compiler is Visual C++ 2012, which is available in both commercial editions and in a free Express Edition. The compiler supports the following languages: C: Only the C90 standard is supported; there is ...

learn more… | top users | synonyms (5)

0
votes
1answer
47 views

Error: Vector subscript out of range c++

I hope somebody can help me with this. I have tried to fix this program, but I don't know what else to so. I keep getting this error about a vector's subscript being out of range. However, I have ...
0
votes
2answers
23 views

Having trouble sorting a file's contents in alphabetical order [closed]

I'm creating a program that sorts the contents of the file in order depending on the way the user wants it to be done. The file contains the student's last name, first name, gpa, and family income. ...
4
votes
1answer
71 views

How can handle foreign words in C++ code?

I recently download some C++ source code which is written by Russian. When I open the project in my MSVC(VC2008 Chinese edition), the comments of codes is hard too see. And When I compile the code, ...
-1
votes
1answer
15 views

How to close serial port while it is still receiving data in c windows form?

How do i close the serial port if it is still receiving data? I am writing a program that the serial port will always receive data from wireless RF receiver. For wireless RF receiver, it will ...
0
votes
1answer
34 views

Creating a bitmap from char* buffer MFC

I'm working with an unsigned char *buffer that contains an image (16bit grayscale). I'm attempting to load this buffer into a HBITMAP so that I can use SetBitmap on a picture box control to show a ...
0
votes
0answers
8 views

SortableBindingList in Visual C++

I'm just stuck on this. Need to use sorting on DataGridView. As DataSource I'm using BindingList, but it does not support Sorting. I haven't found any solution how to do that. I'm newbie to Visual ...
0
votes
0answers
27 views

How to use exel in MS visual C++

I want to make an windows form app. U can write text in textBox'es and when u press a button the app would create an excel file and write the txt from the boxes. I got only the UI that, I know some ...
0
votes
2answers
63 views

fprintf not printing Unicode character [closed]

This morning I found a very weird problem and I can't find the solution. Please help me solve this problem with the code below (using Visual Studio C++ and MFC): FILE *fp = NULL; //fp = ...
0
votes
1answer
121 views

C++ Weird error. Fails to compile

I have been using the allegro 5 libraries for developing a game in C++ for some time. Today I got some weird error: I have a class called level. I have a header file called levelhandler. Here's how ...
-2
votes
2answers
39 views

how to extract the detected region in opencv?

Everyone. I have shown below my code for tracking objects and it shows background subtraction result also. Here I am using frame differencing method. now my problem is that I have to extract that ...
2
votes
2answers
102 views

Can a C++ Compiler Eliminate a Volatile Local Var that is not Read

Say, I have this code: int f() { volatile int c; c=34; return abc(); } The volatile int c is never read. But it is marked as volatile, can the compiler eliminates it altogether? My testing ...
-4
votes
1answer
26 views

How to install VC 6 compiler in Windows 7? [closed]

I have tried to install VC 6 compiler in Windows 7 ,But it FAiled,So PLese Help me how to fix the problem.
0
votes
2answers
32 views

How to get the realtime resolution in directshow?

How to get the current resolution of SamleGrabber in DirectShow? I tried the below code, it doesn't work. The value you get is always 1920x1080, while the source resolution changed from 1920x1080 to ...
3
votes
1answer
31 views

Why does GetOverlappedResult need the file handle?

Why does GetOverlappedResult need a file handle? It seems like WaitForSingleObject(overlapped->hEvent) should be enough to wait on the event so that the overlapped I/O finishes, so what does ...
0
votes
1answer
30 views

Convert ms word document to svg in C# or C++

I want to view a MS Word document in web browser. So i need to convert it to svg format. How to convert MS Word Document to SVG format using c# or c++ language?which open source library can support ...
0
votes
2answers
82 views

How to declare appropriate size for the buffer

I'm using TCHAR in the Visual C++ poject I'm working on, which definition is shown below: #ifdef _UNICODE typedef wchar_t TCHAR; #else typedef char TCHAR; #endif I need to put some data ...
-4
votes
0answers
57 views

C# vs C++: unexpected difference for x += x++ + ++x expression evaluation [duplicate]

If you try some simple but tricky arithmetic operations i.e. x += x++ + ++x, you get different results in Visual C#: static void Main(string[] args) { int x = 3; x += x++ + ++x; ...
0
votes
1answer
23 views

drawing coordinate system axes in corner of screen in direct3d

I have a direct3d environment in a MFC window and i would like to draw the coordinate system axes in the corner of the screen, as any 3d software has. I thought this would be no problem, but issues ...
2
votes
2answers
55 views

Why is the callback given to ReadFileEx() not receiving the correct OVERLAPPED structure? [closed]

For some reason, my callback isn't receiving the address of the correct OVERLAPPED structure after a call to ReadFileEx. What can cause this? Update -- example: #include <stdio.h> #include ...
1
vote
1answer
38 views

How can I invoke CreateFile for something like /dev/null in Windows?

I need to call a function in a Windows library that takes as a parameter a handle to a file created by CreateFile. In my application, I am not interested in the output that the library generates on ...
0
votes
0answers
14 views

CLIstCtrl InsertItem returns a unique index

In CLIstCtrl in MFC InsertItem function http://msdn.microsoft.com/en-us/library/8b9s12fc%28v=vs.80%29.aspx Does it return a unique index value. I have a list contains only one row and I want to ...
-3
votes
0answers
30 views

Need assistance for making an MP3 Player in C++, need to know the classes and libraries I need to study [closed]

I want to make a full awesome-looking graphical MP3 player using C++. I have all the layout and features ready, but unaware of the classes and libraries to use for mp3 file manipulation. Please tell ...
1
vote
0answers
53 views

How to calculate CPU consumption of one function in C++ [closed]

I have a question for CPU consumption of one function that is written by C++ in Visual studio. I have a function for example void test(){} And I want to evaluate performance of this function. ...
0
votes
1answer
7 views

Host Visual C++ 2005 library DLLs in 4.0 application for SqlCompact

I have WPF Application Developed on MS VS2010 which connects on his own local DB (SqlCompact3.5) and Sql compact Dlls are very managed internally in solution.. The Issues starts when the application ...
0
votes
4answers
45 views

Can't assign List Iterator [C++]

I have the following method: void* vpArr_t::operator[](int i) const { if (!isEmpty() && i >= 0 && i < nOfItems) { list<void*>::iterator it; int ...
0
votes
2answers
43 views

Class definition in a header c++

I have this code: #include <time.h> class ElapsedTime { time_t _startTime; public: ElapsedTime(void){ time(&_startTime); } double MiliSecond() { ...
0
votes
2answers
93 views

Why I am getting this error in c++ code

I have this simple code: std::ifstream ifs; ifs.open ("test.txt", std::ifstream::in); char c = ifs.get(); while (ifs.good()) { std::cout << c; c = ifs.get(); } ifs.close(); But I am ...
0
votes
1answer
26 views

adding stl libraries and include files to a visual studio project

I am new in VSc++ and hence some simple questions :) I created a c++ project in VS 2012 and now I want to add stl to it, How can I do this? For example when I am adding this include to a source ...
-1
votes
0answers
16 views

retrieved control type and control pattern through UIAutomation library are different with shown in UISpy

This issue doesn't happen with all applications, but consistently happen with NotePad. For example, in UISpy, it shows the control Type is controlType.document. Text control pattern is listed there ...
0
votes
1answer
27 views

Decrypt the string in VC++ which has been encrypted in C#.Net

I want to decrypt the string which has been encrypted by an application in C#.Net by using the following methods: public static class clsEncryptions { public static string GetKey() { ...
-3
votes
1answer
38 views

how to remove EOF, which is getting appended to last word

I would like to remove only the EOF character from the last word in paragraph of text. The EOF is getting appended to the last word and we are unable to read the entire text. Is there any workaround ...
1
vote
2answers
27 views

Issues facing in Opencv cvConvertScale

This is very simple code, But don't know where it Went wrong,where i covert Image from 8 to 32 Same thread as like this How to convert an 8-bit OpenCV IplImage* to a 32-bit IplImage*? char * ...
4
votes
2answers
48 views

Getting started with PCH in a VC++ project

I'm working on a VC++ project in VS 2012 that takes about 8-10 minutes for a full compile. I know PCH can speedup compile times by upto 10x. I have currently disabled PCH in my project and I'm ...
0
votes
0answers
5 views

Build Error in Pantheios c++ logger on Windows

when I compile the pantheios library, I get the following error : error C2664: ‘xtests::c::xtests_startRunner’ : cannot convert parameter 1 from ‘con st pan_char_t [25]‘ to ‘const char *’ Types ...
0
votes
0answers
26 views

Read 8 bit png and save it to 8 bit bitmap by GDI+ Visual C++

I have a png file. I read it by Image class. And save it to bitmap file. It is 32 bit file bitmap. Now I want save it to 8 bit bitmap. I know we need change PixelFormat. And search some example by ...
0
votes
0answers
31 views

when_all (PPL) returning the wrong type when input tasks return vectors

I'm trying to use the PPL when_all function to wait for a group of tasks that each return std::vector<T>, but it seems to want to return me the wrong type in this one case. The documentation ...
0
votes
4answers
66 views

What is supposed to be a random variable is always generating 5

So I've been teaching my self how to code C++ I purchased the book Beginning C++ through game programming, third edition by Michael Dawson and in it is a chapter you learn about loops. Towards the end ...
0
votes
1answer
25 views

SFML Tutorial not up to date?

I've followed this tutorial to the letter in order to set up SFML 2.0 with Visual Studio Express 2012: http://www.sfml-dev.org/tutorials/2.0/start-vc.php For some reason though I get 16 Unresolved ...
2
votes
4answers
98 views

Why does this C++ code cause a runtime error?

I get the following error when I try to run this code in Visual Studio 2010: Unhandled exception at 0x012c23d3 in matrix.exe: 0xC0000005: Access violation reading location 0xccccccd0. ...
1
vote
1answer
42 views

Why using WIC in my 32 bit application fails in Windows 7 32 bit?

I have Win32 C++ sample application that uses Windows Image Component in Visual Studio Pro 2012 Update 2. I built this app for X86 and tested in Windows 7 X64 SP1 and Windows 7 X86 SP1. It works fine ...
7
votes
5answers
279 views

Why don't the compiler take the namespace name when the inner scope ones don't work?

I thought I understood name lookup very well (after having watched several videos about it and read a lot) but I just hit this case: #include <iostream> namespace test{ struct Id {}; ...
1
vote
2answers
33 views

/MTd will triger a breakpoint but not /MDd

I have a question related to the setting of Multi-threaded Debug DLL (/MDd) and Multi-threaded Debug (/MTd). The difference between them is obvious: one is using dynamic library and the other is using ...
0
votes
1answer
36 views

WinAPI GetSystemMenu without WS_SYSMENU in style

As title said, How can I get system menu (via GetSystemMenu) but in window style missed WS_SYSMENU?
2
votes
2answers
68 views

Why does the VC2012 compiler get into a stackoverflow (error C1063)?

I had my own working iterator to go over pixels in an image horizontally or vertically. Via template parameter, it could be const or not (neat trick from Dr. Dobb's). Then I realized there is a ...
0
votes
3answers
41 views

How to convert IplIImage 8bit to IplImage24Bit in OpenCv?

How to convert IplIImage 8bit to IplImage24Bit in OpenCv ? I have 8bit Image and i want to convert it to 24Bit IplImage Suggestions please..
-2
votes
2answers
52 views

how to create .dll from .lib file in c project? [closed]

I got allocated a old c project to recompile it . I am just beginner in c programming,so i need your help guys, I opened workspace in visual c++6.0 the workspace consists of three projects. Two of ...
8
votes
1answer
79 views

How come a const temporary chooses to call a non-const member function over a const one? [duplicate]

The example code is taken from: http://en.cppreference.com/w/cpp/types/add_cv (I modified a little.) struct foo { void m() { std::cout << "Non-cv\n"; } void m() const { std::cout ...
0
votes
1answer
21 views

Relacement type defination for SQLHANDLE instead of void *

For 64 bit Windows and odbc version > 3.0, sqltypes.h defines SQLHANDLE as #if defined(WIN32) || defined(_WIN64) typedef void* SQLHANDLE; #else If you need to marshal this ...
0
votes
1answer
49 views

How to achieve this style in visual C++?

Is this kind of style available in VC++ or need third-party resources? If it's native, how to set the style to this in VC++?
0
votes
0answers
17 views

error MIDL2003: redefinition when compiling ATL generated idl with windows.h and sql.h included

As part of a requirement, I had to include sql.h and windows.h in an ATL generated idl. Unfortunately, it keeps on complaining when sql.h is included 1>c:\program files (x86)\windows ...

1 2 3 4 5 278