본문 바로가기

전체 글

(86)
[네트웍/인터넷] FTP로 하위 디렉토리를 포함하여 특정 패턴의 파일 검색하기 unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, WinInet; type TForm1 = class(TForm) Memo1: TMemo; Button1: TButton; procedure Button1Click(Sender: TObject); private { Private declarations } public { Public declarations } end; var Form1: TForm1; implementation {$R *.dfm} function MatchStrings(source, pattern: String): Boolea..
[시스템] 한글 한 음절을 초성,중성,종성 음소로 분해하기('김' => 'ㄱ'+'ㅣ'+'ㅁ') (******************************************************************************** .작성자: 김영대 ( http://www.howto.pe.kr ) .참고: http://kiscos.net/~blackangel/Windows5.html 한글의 음절이란 초성+중성+종성(받침 있는 글자) 혹은 초성+중성(받침 없는 글자)으로 구성된 한글 한 글자를 말한다. 유니코드(Unicode)란 모든 언어를 표현할 수 있는 2바이트의 코드로 유니코드의 한글은 0xAC00 부터 시작하며 한글 음절의 갯수는 (초성 19)*(중성 21)*(종성 28)=11,172 이다. 한글 음절은 아래와 같은 공식으로 유니코드가 부여된다 음절 유니코드 = (0xAC00) + ..
[네트웍/인터넷] IP Helper API 를 이용한 네트워크 카드 Enable/Disable 시키기 // 이 프로그램을 실행해도 윈도우즈의 네트워크 연결 등록정보에는 계속 연결된것으로 보이지만 // 실제 traffic 발생 여부를 관찰하면 Enable/Disable 되는것이 보임 // IPHLPAPI.DLL 의 Delphi 헤더파일은 JEDI 에서 받을 수 있습니다 // ftp://delphi-jedi.org/api/IPHlpAPI.zip unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, IpHlpApi, IpIfConst, IpRtrMib; type TForm1 = class(TForm) Button1: TButton; Button2: ..