So creating a Windows service using Visual Studio is fairly trivial. My question goes a bit deeper as to what actually makes an executable installable as a service & how ... |
Hi
i came across this command,
i want to know what this command for, and what are the options for?
i am looking for brief introduction & any source links for basic explanation.
Thanks,
... |
I want to compile C code from the Command Prompt in Windows. I have added the environment variable to the PATH and I can compile .cs files with: csc app.cs
That's OK, ... |
I have a component derived from IComponent (also tried to derive from Component)
The problem:
If I have 2 my custom components on the form, and one of them is selected, then ... |
What is the preferred unit testing tool for C development in Visual Studio?
|
Here is my situation:
The project I'm working on right now
uses a version control system
(Microsoft Team Foundation) that's
hosted and managed remotely by the
... |
im tyring to get this to work:
#define UNICODE
#define _UNICODE
#include <wchar.h>
int main()
{
wprintf(L"Hello World!\n");
wprintf(L"£?, ?, ?!\n");
return 0;
}
using visual studio 2008 express ... |
|
How can you view printf output in a win32 application (entering with a WinMain) on visual studio 2010?
|
I am not a c developer, but I have been asked to to compile curl with ssh. I have downloaded the source for curl, libssh2 and openssl. I have ...
|
Just installed VS2010 on Windows 7 and am having an issue with include directories while attempting to compile existing C code. VS2010 appears to search the project directory first for ... |
i am trying to get bitmap from mouse cursor, but with next code, i just can't get colors. Please a little help...
Thanks in advance :)
CURSORINFO cursorInfo = { 0 };
cursorInfo.cbSize = ...
|
I m new to the visual studio I want to trnsfer and receive some data from LPC2148 kit for thisI want to do the serial communication in Visual studio.
I have used ... |
I have a little bit of C programming experience from school, but it was all Unix. I want to compile some C with Emacs, using Emacs as a second IDE. ... |
I made an application in Visual Studio 2010 Express. First i compiled a debug version, and it worked perfectely, but after compiling a release version it freezes.
My application should work like ... |
I have a Windows GUI app written in C (MinGW) and would like to have the app perform different tasks depending on whether it was launched via the command line with ... |
In my company we have an application for software deploying (WinInstall). I wanted to create a small paket to install a barcode font to the user, so he/she doesn't had to ... |
When running CMake on one PC, CMake generates NMake files by default. On another, it generates a Visual Studio project.
I know I can override the default by adding -G "NMake Makefiles" ... |
i am using srand function to generate random values as below on MS VS 2010.
srand( (unsigned)time( NULL ) );
i have been thrown with following error.
error C3861: 'time': identifier not found
Am ... |
I have just written a program to run as a Windows Service Application, GasMeterMonitoring; however when I start this application on my local machine, nothing happens at all. The Program is ... |
This project compiles find when run under Linux, but fails when I try to make a VC solution for Windows. The error is:
e:\src\audio\audio.h(5): fatal error C1083: Cannot open include file: 'portaudio.h': ...
|
It looks like that Microsoft is backfiring again in VS2010. Here's my code
#include "string.h"
typedef struct s_test
{
unsigned char a[20];
} t_test, *p_test;
void initialize(t_test t)
{
memset(t.a, 0, ...
|