Online
Registriert seit: 24. Okt 2006
Ort: Seifhennersdorf / Sachsen
5.388 Beiträge
Delphi 12 Athens
|
AW: Immer noch offener Bug: Umgeben mit ...
27. Sep 2014, 08:53
Guten Morgen...
Wie wäre es mit CnPack? ... auch über Kontextmenü verfügbar
Original:
Delphi-Quellcode:
StartCount:= 0;
while (not Terminated) and (not (FCurrentRunningState = sdsError)) do
begin
CurrentCount:= GetTickCount;
if (CurrentCount - StartCount) > conPollingInterval then
begin
GetAlarms;
StartCount:= GetTickCount;
end;
Sleep(100); // für Leerlauf
end;
Delphi umgeben:
Delphi-Quellcode:
{$REGION 'MyRegion'}
StartCount:= 0;
while (not Terminated) and (not (FCurrentRunningState = sdsError)) do
begin
CurrentCount:= GetTickCount;
if (CurrentCount - StartCount) > conPollingInterval then
begin
GetAlarms;
StartCount:= GetTickCount;
end;
Sleep(100); // für Leerlauf
end;
{$ENDREGION}
CnPack umgeben:
Delphi-Quellcode:
{$REGION ''}
StartCount:= 0;
while (not Terminated) and (not (FCurrentRunningState = sdsError)) do
begin
CurrentCount:= GetTickCount;
if (CurrentCount - StartCount) > conPollingInterval then
begin
GetAlarms;
StartCount:= GetTickCount;
end;
Sleep(100); // für Leerlauf
end;
{$ENDREGION}
|