Windows
Microsoft first introduced an operating environment named Windows in November 1985 as an add-on to MS-DOS in response to the growing interest in graphical user interfaces (GUIs).
Application
Business
Remove
Language
License
Any
to a binary\hexa number using C?
how can catch the computer's clock (the actual time you can see at the windows clock) into some kind of variable ?
thanks for helping guys
First of all, Windows is no RTOS and you can never achieve pure real time on that OS. You can however achieve something close enough.
Further, the Windows timer (WM_TIMER) used with SetTimer()...
: What exactly do you need help with? If you just need the code for
: the algorithms, they are on Google. If you need help with the timing
: part, you need to specify which OS you are using. In...
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 have written this program in order to calcuate the product, and
: : add tax in total amount, but something is wrong here. I am very new
: : in programming -- my 3rd day. What am I doing...
: Hi
: How can i make an accurate timing loop or delay using C and win32 api.
:
: Presently i use sleep(100) to delay for 100mseconds. This is not accurate as it only delays for 100ms...
: : Hi
: : How can i make an accurate timing loop or delay using C and win32 api.
: :
: : Presently i use sleep(100) to delay for 100mseconds. This is not accurate as it only delays for...
: Hi
: How can i make an accurate timing loop or delay using C and win32 api.
:
: Presently i use sleep(100) to delay for 100mseconds. This is not accurate as it only delays for 100ms...
Hi
How can i make an accurate timing loop or delay using C and win32 api.
Presently i use sleep(100) to delay for 100mseconds. This is not accurate as it only delays for 100ms while the...
: :
: : man is the help in unix. If you are programming in unix and don't know what it is, well then maybe you should seek another job :-)
: :
:
:
: you can also google for man pages even if...
that would be helpful.
if this is your graphics update function, then you need to call it each time your window or graphics is drawn.
alex
: How about calling again the "modified graphics"...
: : 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...
: :
: : Windows: SetSystemTime() Win32 API function. Don't know about unix
: :
: : : And what header do I have to include for SetSystemTime()?
:
:
windows.h
: Hi!
:
: I hope there`s anyone who can help me with my problem.
:
: I`m programming a programm to set the system time under windows/linux, but i got stuck.
:
: Can anyone tell me with what...
: This message was edited by drew84 at 2003-6-17 7:58:45
: Does the same go for strings? i cant just use a string array? what if i made my own string class and included it?
:
: My problem...
This message was edited by drew84 at 2003-6-17 7:58:45
Does the same go for strings? i cant just use a string array? what if i made my own string class and included it?
My problem basically is i...
0)
: : {
: : cout 10)
: : {
: : Sleep(60);
: : GetSystemTime(&cur);
: : if(cur.wSecond - org.wSecond >= 1)
: : count--;
: :...
0)
: {
: cout 10)
: {
: Sleep(60);
: GetSystemTime(&cur);
: if(cur.wSecond - org.wSecond >= 1)
: count--;
: }
:...
0)
{
cout 10)
{
Sleep(60);
GetSystemTime(&cur);
if(cur.wSecond - org.wSecond >= 1)
count--;
}
while(count > 0)...
: I've just stated with C programming.. And I wanna get started with game programming... What do I do? Any URL's or tutorials would be great!
: Niux
:
Some time ago I created Win32 SDK example...