![]() |
Zugriffsverletzung Thread/IdPOP3
Hi,
folgender code, der als thread ausgeführt wird, erzeugt einen fehler lesen von adresse 00000000
Delphi-Quellcode:
und zwar in den rot markierten zeilen. woran könnte das liegen?
function testthread(p: pointer): LongInt;
var my_idle: integer; pwtotest: string; begin my_idle := integer(p^); with form1 do begin if test_typ = 'pop3' then begin basepop3 := TIdPOP3.Create(form1); with basepop3 do begin name := 'pop3_'+inttostr(my_idle); host := 'host'; username := 'username'; parent := form1; end; end; with TListBox(FindComponent('buffer_'+inttostr(my_idle))) do begin while items.Count > 0 do begin pwtotest := items[0]; items.Delete(0); if test_typ = 'pop3' then begin with TIdPOP3(FindComponent('pop3_'+inttostr(my_idle))) do begin try [color=red]password := 'test';[/color] [color=red]connect;[/color] form1.donegauge.Progress := form1.donegauge.Progress + 1; except form1.donegauge.Progress := form1.donegauge.Progress + 1; end; end; end; end; end; end; result := 0; end; |
Re: Zugriffsverletzung Thread/IdPOP3
Wahrscheinlich wird es das in
Delphi-Quellcode:
gesuchte Element nicht geben.
with TIdPOP3(FindComponent('pop3_'+inttostr(my_idle))) do begin
|
Re: Zugriffsverletzung Thread/IdPOP3
aber das wird doch n paar zeilen darüber erstellt :?
|
Re: Zugriffsverletzung Thread/IdPOP3
Hallo Meflin,
Zitat:
mach Dir doch eine Variable vom Typ TComponent und weise der das Ergebnis von
Delphi-Quellcode:
dann brauchst Du noch abfragen
var
MyComponent: TComponent; begin MyComponent := FindComponent('pop3_'+inttostr(my_idle)); end;
Delphi-Quellcode:
bye
if MyComponent = nil then
ShowMessage('Bingo .. voll daneben gegriffen ...'); Claus |
Re: Zugriffsverletzung Thread/IdPOP3
ok, es scheint tatsächlich nicht zu existieren!
aber was stimmt mit der erzeugung nicht? |
Re: Zugriffsverletzung Thread/IdPOP3
Zitat:
Delphi-Quellcode:
stehen. Das bedeutet, er benutzt dann beim zweiten FindComponent() die Prozedur von der ListBox und nicht die vom Form.
with TListBox(FindComponent('buffer_'+inttostr(my_idle))) do begin
Tesete mal:
Delphi-Quellcode:
MyComponent := Form1.FindComponent('pop3_'+inttostr(my_idle));
|
Re: Zugriffsverletzung Thread/IdPOP3
das wars!
thx! |
Alle Zeitangaben in WEZ +1. Es ist jetzt 15:44 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz