Главная страница
Top.Mail.Ru    Яндекс.Метрика
Текущий архив: 2002.12.26;
Скачать: 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 вся ветка

Текущий архив: 2002.12.26;
Скачать: CL | DM;

Наверх




Память: 0.47 MB
Время: 0.01 c
6-86072
RomanRom2
2002-10-29 14:58
2002.12.26
Вернуть IP адрес подключаемого компа к моему серверу


3-85800
Kirill Shapovalov
2002-12-06 10:00
2002.12.26
Сортировка в DBGrid


1-85945
Ghost.
2002-12-15 11:39
2002.12.26
Путь из dll к ней самой


7-86200
ocean
2002-10-21 19:44
2002.12.26
Версия Windows


3-85831
Fishka
2002-12-06 14:52
2002.12.26
DBCtrlGrid - добавление пустой записи?