0
votes
1answer
63 views

Why getch() is not working in Visual Studio 2008?

Below code works in DevC++ with MinGW works flawlessly but Visual Studio 2008 spits this: error C3861: 'getch': identifier not found . What can I do to accept getch() if this is not possible is ...
0
votes
1answer
38 views

This code compiles in DevC++without problems but Visual Studio 2008 spits these warnings and refuses to compile. Where is my mistake?

#include <stdio.h> #include <stdlib.h> #include <time.h> #define SIZE 99 void mean(int b[]); void median(int b[]); void mode(int b[]); void bubbleSort(int b[]); int ...
0
votes
0answers
12 views

Audio issue with pjsua wince

I am developing window mobile application using pjsip . My problem is pjsua, it seems doesn't works. I can register correctly to a SIP server, I can hear a tone of a calling and accept it but I ...
1
vote
6answers
239 views

error C2440: '=' : cannot convert from 'int' to 'char [5]'

error C2440: '=' : cannot convert from 'int' to 'char [5]' help me) char type[5]; switch (rec[n-1].recptr->qtype) { case 'p':type='pcs'; break; //here is problem case ...
0
votes
3answers
293 views

Hello World (C and C++) for WinCE application - Visual Studio 2008

I'm a beginner for Visual Studio 2008 (32-bit). The WinCE version I'm using is 7.0 Evaluation. I created a new project as, New Project -> Platform Builder-> OS Design Selected the BSP as, ...
0
votes
4answers
103 views

I want to use the full range that the 64-bit integer can take. How can I do it in x86 Visual Studio 2008?

I included the stdint.h in my solution and used uint64_t, but the result was not what i wanted. Here is the code that i used. #include <stdio.h> #include "./stdint.h" void main (void) { ...
1
vote
1answer
279 views

How to use static pthread library in C program (Visual Studio 2008)?

I got the following test program: #include <stdio.h> #include "pthread.h" void* test_thread(void *ptr) { printf("In teh thread"); return NULL; } int main(void) { int foo = 1; ...
2
votes
2answers
71 views

Find header file inclusion path

I am getting a header file included in my program and I want to know how it got included (it is one of the standard include files). It is probably included by a file included by a file included... - ...
2
votes
1answer
98 views

Trouble with C and C++ compiler

I'm having a problem trying to convert a 32 bit product into a 64 bit product. I'm using Visual Studio 2008 and the code is in C and C++. I would like anyone to look at the following two lines of ...
2
votes
1answer
43 views

can we attach a process to VS programatically as soon as the process is created? [duplicate]

Possible Duplicate: How to set breakpoint at the very beginning of program execution I have an application in C. I am using VS 2008 for the development. I need to debug the C code by ...
0
votes
1answer
44 views

warning LNK4092: shared writable section contains relocations

I use Visual Studio 2008 and have a question regarding this warning. In one of our libraries, we set the "Fixed Base address" flag (/FIXED) and have a fixed base address defined. We declare a shared ...
0
votes
0answers
195 views

64-bit VMWare detection code triggers breakpoint

I'm doing VMWare detection in a .NET 2.0 C# console project. The detection code is implemented in C as an exported function in a DLL that's called from the C# code using P/Invoke. The C# code is ...
2
votes
2answers
588 views

Loading Images from a folder (Using C, OpenCV, VisualStudio 2008)

I am trying to load images from a folder and I am using C, OpenCV, VC++ 2008 Express Edition. My images are located on the desktop and have different names such as Tom.jpg, Flash.jpeg etc. I want to ...
2
votes
0answers
161 views

Cause of “entry point could not be located” in unrelated DLL?

Before you dismiss this question as a repeat, this question is different than the many other similar questions on SO because the function in the error message is completely unrelated to the DLL. The ...
1
vote
2answers
83 views

Conditionally include code for windows mobile

I want to make the code of my application compile differently for windows mobile, since it has fewer features. To that end, i want to write code like this: #ifndef (_windows_mobile_) //define ...
0
votes
3answers
274 views

Compiling zlib for windows mobile 6

I am trying to compile zlib for Windows Mobile in Visual Studio 2008. However, that leads to an error. In the file zconf.h there is inclusion of the file sys/types.h. While this file is in thw ...
0
votes
0answers
149 views

Using _sprintf_l to format double with thousands_sep

I’m trying to use the Windows specific _sprintf_l to format a double according to a german locale; that is comma as decimal point and period as thousands separator. In short, I’d like “123456.789” to ...
-1
votes
2answers
238 views

Mix of c#, c++ and C

I've a mix of C# and C++ code and main() being in C#. Now I need to use third party C code in my C++ to debug a problem. I added a couple of C files into my C++ project in Visual Studio and I used ...
0
votes
1answer
124 views

C Visual 2008 is trying to include libraries for linux outside ifdef

I'm kind of really new to this cross platform thing and to say the least I kind of hate dealing with windows but I have to for uni :( Anyway, I have almost everything I want working on linux and ...
0
votes
1answer
521 views

“The procedure entry point GetErrorMode could not be located in the dynamic link library kernel32.dll” error occur while running .exe on win2k3

I am building my c++ project on win2k3 server with vs2008. I can compile my project successfully. But while running it's.exe on win2k3 it is giving error as "The procedure entry point GetErrorMode ...
0
votes
1answer
130 views

When I using variable parameters, it works well with int and double, but when it comes to float, error happens

When I using variable parameters, it works well with int and double, but when it comes to float, error happens. Here is the code. void vaParamTest(int a, ...) { va_list ap; va_start(ap, a); ...
-1
votes
1answer
63 views

Changing extension of a program [closed]

I downloaded Visual C++ express edition 2008 but the problem is the file doesn't has any extension. I don't know how to run it inorder to install it. Is there a way I can execute this program for ...
0
votes
2answers
956 views

error C2106: '=' : left operand must be l-value in c on VS2008

Hi I was unable to find the cause of the compilation error while trying this code on Visual studio 2008. I was trying to see an example of char* return value by a function . #include ...
0
votes
3answers
89 views

How can I deploy my C exe compiled by Visual C++ 2008 Express?

So I have successfully compiled and ran my application. It works perfectly on my development computer. However when I try to run it on another computer it won't run, I get the "The application was ...
0
votes
1answer
147 views

linking error when mixing c and c++ code

I have the 5 files as from the examples here - Dec.h, Dec.cpp, decInterface.h, decInterface.cpp and temp.c How to use c++ objects in c? and Developing C wrapper API for Object-Oriented C++ code with ...
0
votes
1answer
115 views

c++ call to the c function mbstowcs() changes a paramater

I have a mbstowcs() that doesn't work well: mbstowcs(pParams->strDstFile, parParams->DstFile, sizeof(parParams->DstFile)); the arguments' values at debug are : pParams->strDstFile = ...
3
votes
3answers
335 views

Mistake in input Russian letter in Visual Studio 2008 throw console [duplicate]

Possible Duplicate: I can't see the russian alpabet in Visual Studio 2008 I'm trying input symbol from console in Russian alphabet. This is code #include <iostream> #include ...
3
votes
1answer
294 views

I can't see the russian alpabet in Visual Studio 2008

I'm trying to output Russian words in Visual Studio 2008. I wrote: #include <iostream> #include <locale.h> using namespace std; void main() { setlocale(LC_ALL,"rus"); cout ...
0
votes
1answer
243 views

calling a function declared in header file

I have x.h file and y.h file, z.c file. z.c includes y.h and y.h includes x.h. I have a function that need to be declared in x.h and defined in z.c, because it needs to use some other functions in ...
-1
votes
1answer
83 views

How to open in visual studio 2008 the c++ or C?

I want to write program using C in Visual studio 2008. But I have no idea how to start, what should I select so that i can create C program File->New project->"other language C++". Or ...
0
votes
1answer
889 views

yuv420p to rgb image conversion

The first part is to open the file and load it to yuv1 buffer. The next stage is reading the YUV420p data correctly i use this formula from wiki size.total = size.width * size.height; y = ...
1
vote
1answer
339 views

Opengl es 2.0 without egl on desktop (windows)

I have a simple program on windows using visual studios 2008. In my code i use gl functions i.e #include GLES2/gl2.h and also #include EGL/egl.h In the code i use EGL for initialization for ...
3
votes
1answer
640 views

OpenGL, FreeGlut and Glew crash with glGenVertexArrays call

I have a program like below: #include <iostream> #include <fstream> #include <sstream> #include <gl/glew.h> #include <gl/freeglut.h> #include <glm/glm.hpp> ...
0
votes
2answers
304 views

Is it possible to use textbackground() function in VS 2008?

I want to use this function in a c++ program written in visual studio 2008. As far as I know Borland used to support this function but it's not a standard c++ function and the VS 2008 doesn't identify ...
1
vote
1answer
338 views

How to retrieve video format using cvGetCaptureProperty

I am trying to retrieve the video format Ex. my input video file is video.mpeg then I want format as mpeg I used this function double Format = cvGetCapturePrperty(capture,CV_CAP_PROP_FORMAT); ...
0
votes
3answers
107 views

C++ Code Compiles with .cpp Source but not .c

In Visual Studio 2008, using C++, I tried to build a DLL using the instructions at http://msdn.microsoft.com/en-us/library/ms235636.aspx, except I named a source file with an extension of ".c" rather ...
1
vote
1answer
355 views

Increasing SQLite SELECT performance

I have a program that does some math in an SQL query. There are hundreds of thousands rows (some device measurements) in an SQLite table, and using this query, the application breaks these ...
1
vote
1answer
104 views

Compiling PHP Driver for MongoDB in Visual Studio

I'm currently trying to compile a PHP driver for MongoDB using Visual Studio 2008 and I'm facing some problems with the compilation process. Every time I try to build the project, the compiler keeps ...
0
votes
1answer
450 views

Dialog Background and Radio Button Transperancy

Hello Everyone, I am making an application in Visual C++ 2008 Professional Edition which uses a background image for a dialog box. The problem is that I can't get radio buttons to be ...
0
votes
2answers
369 views

sprintf() is giving Access Violation Error in VS2008

I am facing issue while running an application through VS2008. I have debugged the code and found that issue is with sprintf(). I am getting the following error Unhandled exception at 0x005251d2 ...
0
votes
1answer
87 views

How to determine the more efficient of two similar functions

I have two functions that carry out the same functionality But has been implemented in different ways. I wanted to use the efficient one from the two. I could write the Timestamp before entering and ...
1
vote
2answers
169 views

Trouble printing Map/Filter/Reduce functions in C

I'm having a really hard time understanding why I keep getting an exception, when my function returns the value with ease, but once i try to printf the result it gives me an unhandled exception ...
0
votes
2answers
358 views

0xC0000005: Access violation writing in loaction

My programs gives an error if i dont include HeapAlloc.What exactly is happening i cannot understand. int iIndex=0; enum EDataType { kINT, kFLOAT, kUINT }; typedef struct logstr { ...
0
votes
3answers
437 views

How to print milliseconds in C?

I want to print time in the format hh:mm:ss:ms(milliseconds). I could print in the form of hh:mm:ss. What can be the way to print remaining milliseconds?
2
votes
2answers
93 views

How can we build one visual studio project from commandline

I have a visual studio c test project (Helloworld project) created from VS 2008 professional edition and it contains VC++ project file. May I know how can I build the same project from ...
1
vote
1answer
310 views

Error - Compiling Gnuplot on Windows 7 using nmake and makefile.nt

Gnuplot experts or anyone who is willing to help me - I have explained what I have done in very simple words and in a detailed manner. Thanks for your time and patience in advance. My aim is to ...
0
votes
1answer
275 views

_invalid_parameter gets no useful information in Release build

I am using _set_invalid_parameter_handler to override the default behaviour of the program when a CRT function gets an invalid parameter, which is to crash with 0xc0000417 ...
1
vote
3answers
384 views

how http server received file from client

I have written code for sending client user passwords to an HTTP server for verification via HTTP. I generate the query string (containing usr, pwd) and send the request to the server. That works. ...
0
votes
0answers
298 views

Can't compile a CUDA program

I've never programmed GPUs before, but someone gave me this CUDA code to compile. When I tried to do that in VC++ 2008 (CUDA toolkit 3.1), it gives me the following linking error. LINK : fatal error ...
0
votes
1answer
285 views

How do I link to OpenGL?

I have installed VS 2008, and I have copied these libraries: opengl32.lib glu32.lib glut32.lib into the library folder, and the corresponding header files into the include folder. I have also ...

1 2 3 4 5