0
votes
12answers
232 views
6
votes
7answers
311 views
Using visual studio 6 c++ compiler from within emacs
Hey guys,
I'm just getting started with c++ development and I would like to use emacs to write the code and then compile and run it from within emacs using the visual studio 6 com …
0
votes
0answers
17 views
RegisterClassObjects() Doesn’t Find Classes To Register
I'm in the process of converting an application from Visual Studio C++ 6.0 to Visual Studio 2008 and am running into problems with ATL.
I've been having a whole host of issues, bu …
0
votes
3answers
41 views
Declaration of IEEE mathematical functions like ‘ilogbf’ in MSVC++6
Hi,
Could someone please help and tell me how to include IEEE mathematical functions in MSVC++6? I tried both and , but I still get these errors:
- error C2065: 'ilogbf' : undec …
5
votes
9answers
774 views
Is there any reason to check for a NULL pointer before deleting ?
I see some legacy code checking for null before deleting the pointer.
as like below
if(NULL != pSomeObject)//any reason for checking for null
{
delete pSomeObject;
pSomeObject = …
0
votes
1answer
39 views
what is the wrong in this code(openAl in vc++)
hi>>
how are you all?
i need your help
i have this code
#include <conio.h>
#include <stdlib.h>
#include <stdio.h>
#include <al.h>
#include <alc.h> …
0
votes
0answers
8 views
Problem using Nlog & VC6
I think it's probably my inexperience with .net, but I think I'm going to have to give up on my plan to use NLog instead of fixing our broken proprietary logging code.
The plan wa …
11
votes
5answers
773 views
How can adding code to a loop make it faster?
I have a simple function with an inner loop - it scales the input value, looks up an output value in a lookup table, and copies it to the destination. (ftol_ambient is a trick I co …
3
votes
2answers
83 views
Can I use a C style library built with VC6 directly in VC9 project?
We use an internal library(developed by some other team) built with VC6 compiler. This library mainly contains C Style APIs. We have a plan to migrate to Visual Studio 9 compiler. …
0
votes
3answers
555 views
[Visual C++ 6 - MFC] How can I get and set the ‘read-only’ property of an edit box?
How can I get and set the 'read-only' property of an edit box?
1
vote
2answers
430 views
Is it really worth porting from VC6 ->vc2005,2008?
What are all the problem that you foresee in doing that.
0
votes
1answer
79 views
What are map files generated during compilation
Hi
What info map file contain generated during compilation of project and how i enable /map option in makefile.
Language : c++
compiler : vc6
0
votes
1answer
64 views
Ho to read data through Serial Communication?
I am sending data through serial port on Windows.But when i am going to read that data the system goes in infinite loop.System also hangs.Please give me the solution if anyone find …
1
vote
2answers
97 views
C++ - Visual Studio CRT
Hi,
I'm writing a DLL for a very old program that was compiled using Visual Studio 6. This program exports some functions that return pointers to standard library containers, and …
0
votes
1answer
18 views
Is there a technique to determine if a dos app was invoked via sentto vs a dos window?
In the case of a sendto invocation, I would like to keep the application open, after it completes, so the user can look at it.
In the case of a dos window invocation, the user con …
