Articles   Members Online:
-Article/Tip Search
-News Group Search over 21 Million news group articles.
-Delphi/Pascal
-CBuilder/C++
-C#Builder/C#
-JBuilder/Java
-Kylix
Member Area
-Home
-Account Center
-Top 10 NEW!!
-Submit Article/Tip
-Forums Upgraded!!
-My Articles
-Edit Information
-Login/Logout
-Become a Member
-Why sign up!
-Newsletter
-Chat Online!
-Indexes NEW!!
Employment
-Build your resume
-Find a job
-Post a job
-Resume Search
Contacts
-Contacts
-Feedbacks
-Link to us
-Privacy/Disclaimer
Embarcadero
Visit Embarcadero
Embarcadero Community
JEDI
Links
How to register an OCX Turn on/off line numbers in source code. Switch to Orginial background IDE or DSP color Comment or reply to this aritlce/tip for discussion. Bookmark this article to my favorite article(s). Print this article
11-Sep-02
Category
OLE
Language
Delphi 2.x
Views
62
User Rating
No Votes
# Votes
0
Replies
0
Publisher:
DSP, Administrator
Reference URL:
DKB
			Author: William Gerbert

How to register an OCX

Answer:

Your installation program needs to register an OCX, but doesn't support this? Or 
you want to
register it by your program yourself? 

Suppose the OCX you want to use is called 


1   program RegisterMyOCX;
2   uses
3     OLECtl, Windows, Dialogs;
4   var
5     OCXHand: THandle;
6     RegFunc: TDllRegisterServer; //add  to the uses clause
7   begin
8     OCXHand := LoadLibrary('c:\windows\system\test.ocx');
9     RegFunc := GetProcAddress(OCXHand, 'DllRegisterServer'); //case sensitive
10    if RegFunc <> 0 then
11      RegFunc
12    else
13      ShowMessage('Error!');
14    FreeLibrary(OCXHand);
15  
16    // You can the same way unregister the OCX:
17    // replace 'DllRegisterServer' by 'DllUnregisterServer'
18  end.


			
Vote: How useful do you find this Article/Tip?
Bad Excellent
1 2 3 4 5 6 7 8 9 10

 

Advertisement
Share this page
Advertisement
Download from Google

Copyright © Mendozi Enterprises LLC