?? 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 + -