製作Activex Dll 的範例 |
尚未結案
|
ccx1103
一般會員 發表:2 回覆:2 積分:0 註冊:2002-05-25 發送簡訊給我 |
|
geniustom
版主 發表:100 回覆:303 積分:260 註冊:2003-01-03 發送簡訊給我 |
unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type TForm1 = class(TForm) Button1: TButton; procedure Button1Click(Sender: TObject); private { Private declarations } public { Public declarations } end; var Form1: TForm1; implementation uses MyQoo_TLB; {$R *.dfm} procedure TForm1.Button1Click(Sender: TObject); var q:TQoo; begin q:=TQoo.Create(nil); ShowMessage(q.MdacVer); //顯示MDAC版本 q.Free; end; end.ActiveX Library在Delphi中製作方式: 1、File -> New -> Other -> ActiveX -> ActiveX Library-->建立儲存MyQOO.dpr專案 2、File -> New -> Other -> ActiveX -> Com Object,填寫Class Name (名稱Qoo)->儲存專案 3、Project-->選擇Type library視窗(MyQoo.tlb標題視窗)。 4. 在IQoo開始新增方法,點選Registry Type library註冊,即可在Unit1.pas單元中產生相對應的方法。 5進行編譯,Project->Complie/Build-> 建議MyQoo.DLL檔 網海無涯,唯學是岸! 因為擁有,所以分享!
本站聲明 |
1. 本論壇為無營利行為之開放平台,所有文章都是由網友自行張貼,如牽涉到法律糾紛一切與本站無關。 2. 假如網友發表之內容涉及侵權,而損及您的利益,請立即通知版主刪除。 3. 請勿批評中華民國元首及政府或批評各政黨,是藍是綠本站無權干涉,但這裡不是政治性論壇! |