⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 funlib.pas

📁 delphi写的以广播方式收发信息和图片_局域网聊天。
💻 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 + -