Autor Beitrag
Aya
ontopic starontopic starontopic starontopic starontopic starontopic starofftopic starofftopic star
Beiträge: 1964
Erhaltene Danke: 15

MacOSX 10.6.7
Xcode / C++
BeitragVerfasst: Mi 28.08.02 16:42 
Hi,

weiß wer wie ich wenn ich es machen kann, dass wenn ich im Prog auf nen Button klick sich dann das Standardt Mailprogramm (z.B. Outlook) startet und bei "Senden an:" gleich schon ne Adresse steht???

Au'revoir,
Aya
Arakis
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starhalf ontopic star
Beiträge: 344



BeitragVerfasst: Mi 28.08.02 17:04 
Hi Aya user defined image,
versuche es mal hiermit:

ausblenden Quelltext
1:
2:
3:
ShellExecute(Application.Handle, 'open',
             PChar('mailto:mail@delphi-forum.de'), nil, nil,
             SW_ShowNormal);

Das einbinden der Unit shellapi nicht vergessen :P

Bis dann
user defined image

_________________
Mit dem Computer löst man Probleme, die man ohne ihn nicht hätte.
Entwickler von SpaceTrek: The New Empire - Siehe Hompage!
Aya Threadstarter
ontopic starontopic starontopic starontopic starontopic starontopic starofftopic starofftopic star
Beiträge: 1964
Erhaltene Danke: 15

MacOSX 10.6.7
Xcode / C++
BeitragVerfasst: Mi 28.08.02 17:09 
Danke, hatte es vorher mit:
ausblenden Quelltext
1:
ShellExecute(0, 'open', PChar('Aya@animes.de'), nil, nil, SW_SHOWNORMAL);					

versucht, hatte das Mailto vergessen :)

Au'revoir,
Aya