Hardware
Hardware is a general term that refers to the physical artifacts of a technology.
Language
Platform
Windows
Remove
License
Any
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.....
: The C and C++ complete routine prototype is:
: :
: extended_properties return_type calling_convention function_name (parms) extended {
:
: }
: :
This is only true in Windows, since the...
I assume you are using Windows then?
Program in C or VB. Use API's to simulate keypresses. Either through WM_KEY+SendMessage or through keybd_event API.
Best Regards,
Richard
The way I see...
: : i m looking to get input on character basis without enter. so is there any function which can help me taking input directly from the keyboard as and whn any key get pressed.
: :
:
:
: Its...
: : How do we print programs directly from Turbo C++ 3.0 compiler?
: : I have tried the print function from file menu of compiler ,but it does not print!!!
: :
: Turbo C is printing to DOS, so if...
: : I wanted to know if there's any method in C by which I can run two or more processes independently & simultaneously without interrupting any of the processes?
: :
: : For example suppose that...
: hi
: i want to calculate the capacity of each partition and floppy disk using c language using interrupt.
:
See this FAQ http://www.codeguru.com/forum/showthread.php?t=231055
you will have...
: sound is not a c or c++ feature, but a hardware issue. If you are using VC++ then look at the win32 api PlaySound(), Beep() and MessageBeep() functions.
:
:
:
cheers
I tried these...
I have been referencing material about the different commercial compilers available, as I am about to try my first Windows effort in C.
(I am going to attempt a Windows program that utilizes a GUI...
: SIR/MADAM-
: I thank you for ur valuable reply .For the specifications u asked I consulted with my project mates and what they said is that " we are actually doing a project of building an...
Hello, i am doing some libs in nasm , now i want to port it to windows
i trying to use the POSIX C lib to make the port , but i cant run my compiled programs , i have no problem in compiling and...
I know it's better to use C++ for mouse, but I'm just curious (because C++ came from C and I'm thinking have a mouse in Win32 Console Application) how? Do I need to know deep down low-level language...
OS: Windows XP Home SP2
CPU/Ram: Mobile AMD Duron 4, 1GHz / 256MB
System Manufacturer: Compaq Presario 730us
Juan
http://mark.space.servehttp.com
Could you be more vague? Do you mean input characters? There's standard C ways to do that. Do you literally mean read the character on the screen at a given X,Y coordinate? Under Windows you can...
: : I'm looking for a good resource for learning to do simple threads in C++. Anyone got any good sources?
: :
: : THanks,
: : Tony. :)
: :
:
: There isn't much to it. If you are using a...
: : I need to code a function inline in a C Compiler. The function returns a character from the keyboard if there is one there, if not then return a 0. The function dosent wait though for a key...
: : I have searched the net for hours trying to find a quick, simple (or ANY) example of getting something to print in windows using C. I have tried so many different things it's really driving me...
In Windows os, serial ports are treated exactly like ordinary files. read www.msdn.microsoft.com about CreateFile(). It has a section on communications. Follow that link and you will find some...
: I am running a C program on a PC with 2GB of RAM. But the program does not run correctly when the total array size is greater than 300MB. Is there a limitation on the compiler? Can this be reset? I...