Zitat:
repeat
processmessages;
until irgendwas:
egibt das das formular einfriert, richtig?
also das friert nie ein.
Delphi-Quellcode:
procedure WinProcessMessages;
var
ProcMsg: TMsg;
begin
while PeekMessage(ProcMsg, 0, 0, 0, PM_REMOVE) do
begin
if (ProcMsg.message = WM_QUIT) then
Exit;
TranslateMessage(ProcMsg);
DispatchMessage(ProcMsg);
end;
end;
Delphi-Quellcode:
repeat
WinProcessMessages;
until irgendwas;
sollte mich auch wundern..
Mit Sleep bremst du die anderen Messagen nur aus.
Warum das bei W10 Probleme machen kann? Keine Ahnung.
Zitat:
Im OnShow ist das ungünstig plaziert.
Dito und das wird auch sein Problem sein.
gruss