📄 funlib.pas
字号:
{
+-----------------------------------------------------+
| YangZhenhua 2004.11.29 16:45 ZhuHai.GuangDong |
+-----------------------------------------------------+
自定义常用函数库
======================Example===================================================
uses
FunLib;
================================================================================
}
unit FunLib;
interface
uses
IdIPWatch;
function GetLocalIP():String;
implementation
//获取本机IP地址
function GetLocalIP():String;
var
IdIPWatch : TIdIPWatch;
begin
IdIPWatch := TIdIPWatch.Create(nil);
IdIPWatch.HistoryEnabled := False;
result := IdIPWatch.LocalIP;
IdIPWatch.Free;
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -