Autor Beitrag
Karstadt
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starontopic star
Beiträge: 174

Windows 2000 / XP
Delphi 7 Pro
BeitragVerfasst: Mi 19.10.05 10:07 
Hallo. Habe mir diesen Tutorial angeschaut:
www.delphi-library.d...eeab983f&t=10361

Nun bekomme ich ständig eine Fehlermeldung: 10049 Die angeforderter Adresse kann nicht zugewiesen werden.

kann mir bitte jemand helfen?
Karstadt Threadstarter
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starontopic star
Beiträge: 174

Windows 2000 / XP
Delphi 7 Pro
BeitragVerfasst: Mi 19.10.05 10:17 
ha, ha, ha.. Tutorial enthält fehler:

So wird das gemacht!

ausblenden Delphi-Quelltext
1:
2:
3:
4:
5:
  SmtpServerName :=  e_smtp_servername.text;
  SmtpServerPort := StrToInt(e_serverport.Text);
  SmtpServerUser := e_SmtpServerUser.Text;
  SmtpServerPassword:= e_SmtpServerPassword.Text;
  UserEmail := e_UserEmail.Text;


und nicht so!
ausblenden Delphi-Quelltext
1:
2:
3:
4:
5:
 { e_smtp_servername.text := SmtpServerName;
  e_serverport.Text := IntToStr(SmtpServerPort);
  e_SmtpServerUser.Text := SmtpServerUser;
  e_SmtpServerPassword.Text := SmtpServerPassword;
  e_UserEmail.Text := UserEmail;}


Moderiert von user profile iconraziel: Delphi-Tags hinzugefügt.