📄 pubfun.pas
字号:
{ ********************************************************************** }
{ }
{ DelphiFun 1.0 (Delphi函数查询器) }
{ Public function Source }
{ }
{ Copyright (c) 2003 by netrobo & netrobo@sohu.com in changchun }
{ }
{ ********************************************************************** }
unit PubFun;
interface
uses
Forms,ShellAPI;
procedure ToMyEmail();
implementation
procedure ToMyEmail();
begin
ShellExecute(Application.Handle,'open','mailto:netrobo@sohu.com',nil,nil,0);
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -