Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
63 views

How do I write a COM dll?

To better myself I am attempting to make my dll's COM compliant, I thought I'd just need to extend/implement a few interfaces and job done but now I am at a cross roads, 1) Should I learn MIDL? 2) ...
2
votes
1answer
121 views

Visual C++ Express 2008 error with MSVCP90D.dll

When i Try to Build My source code ,it says MSVCP90D.dll missing. I'd like to know how to correct this Thanks
2
votes
1answer
474 views

Error C2679 when attempting to use std::wcout << wstring-var; vc++ 2008 express

I'm getting a rather odd error message when attempting to wcout a wstring in vc++ 2008 express: error C2679: binary '<<' : no operator found which takes a right-hand operand of type ...
1
vote
1answer
822 views

cannot compile allegro using visual c++

I just downloaded the allegro library I make a new empty project then add a source file I add this line of code: #include <allegro.h> I compile and get the following error: ...
1
vote
3answers
241 views

Side-by-Side Visual Studio installation

Can Visual Studio Professional 2008 and Visual C++ Express 2008 be installed side by side without problems? update I am working in a situation where some of the team has pro, some have express. I ...
1
vote
2answers
348 views

Debugging a specific executable on Visual C++ 2008 Express

Visual C++ 2008 has a great tool called "Attach to Process", which start watching a specific process for debugging symbols and handles correctly your breakpoints. This is fantastic, but I would like ...
1
vote
4answers
448 views

Conditional Debug on Visual C++ 2008 Express

Is there a way to debug code on Visual C++ 2008 Express, such as I can watch a variable for certain value(s) and, when it assumes this value, to break? For instance, I want to break when xbecomes 5. ...
1
vote
4answers
2k views

Why can't a “procedure entry point could not be located in dll” when I definitely put it in?

I have a really vague problem, but I hope someone can help with it. I was modifying a C++ project and yesterday it was still working, but today it's not. I'm pretty sure I didn't change anything, but ...
1
vote
1answer
1k views

How do I set the icon for my program in Visual C++ 2008 Express Edition?

I want to set the embedded icon for my executable console program to a custom icon. I know this is pretty much the same question as this one here, but I'm using Visual C++ 2008 Express Edition, and ...
1
vote
2answers
1k views

Version resource in DLL not visible with right-click

I'm trying to do something which is very easy to do in the regular MSVC, but not supported easily in VC++ Express. There is no resource editor in VC++ Express. So I added a file named version.rc into ...
0
votes
1answer
78 views

LINK : fatal error LNK1221: a subsystem can't be inferred and must be defined

I have no other errors or warning in my solution, which would be great but this error has totally baffled me. I have three projects, one references none, and the other two both reference it. One is a ...
0
votes
1answer
32 views

Visual C++ project runs fine through VStudio but from Explorer dies after appearing in Notify Tray

I just modified my C++/CLI project to change the way it was parsing its config.ini text file. But it still accesses the file on the disk just as before: StreamReader ^sr = gcnew ...
0
votes
0answers
181 views

Wrapping a Visual C++ class in Python using SWIG

I have a running VC++ program using Visual Studio 2008. I am trying to wrap this in Python using Swig and having issues. Does anyone has proper instruction how to setup for Visual Studio 2008 ? I did ...
0
votes
1answer
109 views

Build Problems when moving from VS2008 Prof to VC++ Express 2008

I have just taken over game development from my friend. The development is done using VC++. The Code worked perfectly when it was build on Visual Studio 2008 Professional Edition. Without any ...
0
votes
1answer
114 views

how to see complete output in visual c++ 2008

my program's output is very big, like I run for loop for 100 times, displaying 5-6 lines every time. Problem is, when I run output, it displays only last 20-25 results. Is it possible to all of the ...
0
votes
5answers
212 views

error when i give sleep(1000), to make srand() work, in visual C++

i have following program: srand((unsigned) time(NULL)); for (int w = 0; w < 10; w++) { int ran_x; ran_x = rand() % 255; cout << "nRandom X = " << ran_x << endl; ...
0
votes
1answer
457 views

WinSock Library for Visual C++ 2008 Express?

please how to add winsock library to Visual C++ 2008 Express? I tried including <windows.h> alone, than <windows.h> and <winsock.h>, but I get LINK error on WSAStartup(). I found ...
0
votes
3answers
166 views

Can I program C++/CLI using Visual Studio Express 2008?

Are any of the Visual Studio Express editions able to work with C++/CLI code? Currently when I go to "Add File" in either the C# 2008 or C++ 2008 versions I do not see the option for creating ...
0
votes
3answers
536 views

Numerical precision of double type in Visual C++ 2008 Express debugger

I'm using Visual C++ 2008 Express Edition and when i debug code: double x = 0.2; I see in debugging tooltip on x 0.20000000000000001 but: typedef numeric_limits< double > double_limit; int ...
0
votes
4answers
236 views

What causes “error C2856: #pragma hdrstop cannot be inside an #if block” in VS C++?

There was a program what I could compile under 2008 for a while. Note I can compile the program using cl and in Ultimate++ IDE. It is a fairly large program , so I am not going to post it here. I ...
0
votes
4answers
636 views

Migrating from Visual C++ 6 to Visual C++ 2008 express

I'm tring to migrate my code from VCpp 6 to VCpp 2008 express but when I build the solution I receive this error message: icl: warning: problem with Microsoft compilation of ...
0
votes
1answer
1k views

How do I add an ActiveX component to my project in Visual C++ 2008

I am just learning Visual C++ and I am used to Visual Basic where I just select the ActiveX component from a list of references. I can seem to add it anywhere. If I go to the Project | References, ...
-2
votes
1answer
62 views

Creation of a project in visual c++express edition

In Visual Studio Express 2008 edition there are many types of projects listed under the Visual C++ heading, such as CLR, WIN32, GENERAL.. From these, which one is most appropriate for my purposes? ...