Вниз
Скачать: 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.01 c
3-85792
Dbrf
2002-12-05 10:46
2002.12.26
Выбор столбца из таблицы


4-86219
Novichek
2002-10-22 12:52
2002.12.26
как отловить комбинацию


3-85808
sasha123
2002-12-06 10:23
2002.12.26
Как связать горизонтальную прокрутку в DBGrid c HeaderControl


3-85852
BorisUK
2002-12-06 15:10
2002.12.26
как прервать запрос к базе


3-85841
Bishop
2002-12-06 23:01
2002.12.26
Как удалить удаленные записи




   Наверх