C
In computing, C is a general-purpose, block structured, procedural, imperative computer programming language developed in 1972 by Dennis Ritchie at the Bell Telephone Laboratories for use with the Unix operating system.
Application
Documents And Specifications
Remove
Platform
Any
License
Any
I'm not sure into this, maybe that exe is missing...try another C# installer...
You need a good debugger for this. IDA PRO comes to mind, but it cost money. Try to get a trial version - it may work for 30 days or so. Best free debuffer for Win32 is OLLYDBG. Google for it and get...
Try this:
1. Get the full path to the program EXE file. In Win32 use GetModuleFileName() function. You get back a string with something like this:
"C:\Dir1\Dir2\Dir3\Program.EXE"
2. Cut off...
I fixed some of the code (see RED). Not sure what exactly do you need. If you need the contents of client area, then you need to use GetClientRect and not GetWindowRect. However, if you need to...
It depends on a type of a picture, for BMP you need to use BitBlt API, but for JPEG, PNG and others - you need IPicture interface:
http://msdn.microsoft.com/en-us/library/ms680761(VS.85).aspx
I...
Use the same compiler on a server which you use on your system. Or simply move the ready EXE file from your system to the server, so there is no need to compile it.
Hi,
I want a notification for the usb device connection and disconnection in vc++ DLL.
I am implementing J2534 DLL in that i want a notification for usb device connect and disconnect.
I read...
Hi,
I want a notification for the usb device connection and disconnection in vc++ DLL.
I am implementing J2534 DLL in that i want a notification for usb device connect and disconnect.
I read...
Hey can you please post that c program that plays wav files ?
I am upgrading a legacy project with 2 levels of DLL.
DLL-A is low level hardware action DLL.
DLL-B Calls Entry into DLL-A and other processing bit.
user can call either DLL-A or B
Originally...
please tell me the way to call exe placed in ssytem32 folder with use of shellexecute command in vc++, without specifying path of file.
Instead of path i want to call file with %systemroot%\\.......
Thanks for that, I've solved the problem now. It was basically the use of the C-style memory allocation routines in constructors which was causing the problem, so I've just copied the constructor...
Follow these rules (download a doc to read these):
http://www.microsoft.com/whdc/driver/kernel/DLL_bestprac.mspx
Hi I am developing a project that hass to access the pc parallel port in windows xp, through Turbo C/C++..
I know u cannot access the port directly in XP but u need driver like inpout32.dll.....
You just answered your own question. If applications could modify themselves in ROM while running, then that would be a major security flaw in itself. I'm sure there's a secure way to do whatever you...
Do anybody know how to build a self modifying application? For greater security, i want my application to append data to its end. But how to do that? A running application cannot modify itself. I am...
I think you are asking about the difference between a source file and an object file. To understand the difference between the source file and the object file, you need to understand the process of...