UnRegisterAxDll
Success = UnRegisterAxDll(DllName$)
 
Parameters:

    DllName$ = Name of the Dll to unregister
Returns:

    Success
 

     UnRegisterAxDll unregisters and ActiveX Dll for the Windows operating system.


FACTS:


     * ActiveX Dll must be registered before you can use them



Mini Tutorial:




  
  
; Include ActiveX Library
  #Include "ActiveX"
  
  
  Register = UnRegisterAxDll("DllName.dll")
  If Register = 1
     Print "Successfully unregistered the Dll"
  Else
     Print "Unregistering failed..."
  EndIf
  
  
; Display the Screen and wait for the user to press a key
  Sync
  WaitKey
  


Please NOTE: This code is for example purposes only.



 
Related Info: About the ActiveX library | NewAx | RegisterAxDll :
 


(c) Copyright 2002 - 2024 - Kevin Picone - PlayBASIC.com