Вниз
Скачать: CL | DM;

Как в консоли сделать таймер?   Найти похожие ветки 

 
Cosmic   (2002-11-10 16:49) [0]

Как в консольном приложении инициализировать таймер? (хочу, чтобы программа кажде десять минут меняла обои винды и при этом была не больше 20 кБ весом. И еще желательно без окошка :))


 
Song ©   (2002-11-10 16:53) [1]

SetTimer ?


 
Cosmic   (2002-11-10 17:12) [2]

А поподробнее?


 
Polevi ©   (2002-11-10 17:15) [3]

The SetTimer function creates a timer with the specified time-out value.

UINT SetTimer(

HWND hWnd, // handle of window for timer messages
UINT nIDEvent, // timer identifier
UINT uElapse, // time-out value
TIMERPROC lpTimerFunc // address of timer procedure
);


Parameters

hWnd

Identifies the window to be associated with the timer. This window must be owned by the calling thread. If this parameter is NULL, no window is associated with the timer and the nIDEvent parameter is ignored.

nIDEvent

Specifies a nonzero timer identifier. If the hWnd parameter is NULL, this parameter is ignored.

uElapse

Specifies the time-out value, in milliseconds.

lpTimerFunc

Points to the function to be notified when the time-out value elapses. For more information about the function, see TimerProc.
If lpTimerFunc is NULL, the system posts a WM_TIMER message to the application queue. The hwnd member of the message"s MSG structure contains the value of the hWnd parameter.


 
Cosmic   (2002-11-10 18:41) [4]

Я хэлпы читать умею :) Мне бы примерчик...


 
Polevi ©   (2002-11-11 11:31) [5]

читать умеешь учись понимать


 
Polevi ©   (2002-11-11 11:48) [6]

program Project2;
{$APPTYPE CONSOLE}
uses SysUtils, Windows;

procedure TimerProc(
h:HWND;
uMsg:DWORD;
idEvent:DWORD;
dwTime:DWORD
);stdcall;
begin
Writeln("Hello world!");
end;

var
msg:TMsg;
begin
// Insert user code here
SetTimer(0,1,1000,@TimerProc);
while GetMessage(msg,0,0,0) do DispatchMessage(msg);
end.


 
Cosmic   (2002-11-11 19:46) [7]

Thanx ::::))))::::



Страницы: 1 вся ветка

Скачать: CL | DM;



Память: 0.46 MB
Время: 0.015 c
3-85847
saperxl
2002-12-07 03:58
2002.12.26
FoxPro отбирает все права на БД при открытии...


8-86047
Сергей Медяник
2002-09-11 00:57
2002.12.26
Блокировка PopUp меню в TWebBrowser


3-85855
jen_bond
2002-12-07 09:54
2002.12.26
Округление


7-86205
vidiv
2002-10-22 07:05
2002.12.26
Thread


4-86225
Odd_1
2002-11-13 00:22
2002.12.26
print Screen




   Наверх