Written By:  Chris Roebuck
Date:  7/16/99
Email:  csroebuck1@yahoo.com

The Regist10.Dll will allow you to register and unregister OLE DLL's and OCX's.  To use
this dll, you need to copy it into your Windows\System directory.  This dll will work 
with Win95/98 or WinNT.  

The declare statement is as follows:

Declare Function RegisterDLL Lib "Regist10.dll" Alias "REGISTERDLL" _
(ByVal DllPath As String, bRegister As Boolean) As Boolean

Examples


Registering:

Dim bRet AS boolean
bRet=RegisterDLL("C:\Windows\System\myoledll.dll", True)


UnRegistering:

Dim bRet AS boolean
bRet=RegisterDLL("C:\Windows\System\myoledll.dll", False)


This DLL is Freeware and is freely distributable provided that this readme.txt file is not
altered in any way.  If you have any questions, contact me at the email address given above.


