Related Pages
Delphi Tips and Code
- Clearing edit fields
- Starting default browser
- Starting applications
- Connecting to / disconnecting from network
Delphi Applications

Delphi Tips and Code

Starting the default email client

To open the default email client with an email address already entered (i.e. your support email address) use the following code.

procedure TForm1.Button1Click(Sender: TObject);
begin
ShellExecute(GetDesktopWindow(), nil, pChar('mailto:support@kasabsoftware.com.au'), nil,
nil, SW_SHOWNORMAL);
end;


  • Home
  • |
  • Sitemap
  • |
  • Databases
  • |
  • Web development
  • |
  • Delphi development
  • |
  • Image manipulation
  • |
  • KaSaB
  • |
  • Contact