[일반/컴포넌트] 실행파일에서 잃어버린 DFM 파일 뽑아내기
// 델파이로 프로그램 작성하다 dfm 파일 삭제하여 다시 만든 경헙이 있다면 // 한번 사용해 보세요 unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type TForm1 = class(TForm) Button1: TButton; Memo1: TMemo; Button2: TButton; procedure Button2Click(Sender: TObject); private { Private declarations } public { Public declarations } end; type TDFMorTXT = (ConvertToForm,..
[COM/OLE] 현재 IE 의 HTML 소스 코드 읽어오기
unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, MSHTML, ActiveX, SHDocVw; 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 GetHTMLCode(WB: IWebbrowser2..