RegisterAxDll
Success = RegisterAxDll(DllName$)
 
Parameters:

    DllName$ = Name of the Dll to register
Returns:

    Success
 

     RegisterAxDll registers and ActiveX Dll for the Windows operating system so that it is ready to use. If the registration was successful the function returns 1, otherwise 0.


FACTS:


     * ActiveX Dll must be registered before you can use them



Mini Tutorial:




  
  
  
; Include ActiveX Library
  #Include "ActiveX"
  
  Register = RegisterAxDll("DllName.dll")
  If Register = 1
     Print "Successfully registered the Dll"
  Else
     Print "Registering 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 | UnRegisterAxDll :
 


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