You are here Install ActiveX Controls BSAC manually

Install ActiveX Controls BSAC manually

HOW TO REGISTER ACTIVEX CONTROLS BSAC.OCX IN WINDOWS
Just do it only the first time in your Windows or Upgrade to a new version 
(*) If you  already have the Add-in A-Tools installed, you don't need to follow the steps below:
When you deploy your application (built for exe, vba, dll) embedded BSAC.ocx (activex controls), you must include bsac.ocx. I can create a professonal library setup or copy and register it manually. In this article, I want to help you do it manually.
 
(When the distribution software you create in an .exe file or from VBA has embedded BSAC.ocx when using this product on another machine, you must copy bsac.ocx along with it. You can create an installer for professionals, users, and others. You don't have to do it manually or you can do it yourself. In this article, I show you how to do it manually.)
 
I. COPY BSAC.ocx to the system library 
There are 3 situations when copying to the operating system's System folder
 
(*) IF Window 32 bit and Office 32-bit
Copy "BSAC 32-bit\BSAC.ocx" to  "C:\Windows\System32\"
 
(*) IF Window 64 bit and Office 32-bit
Copy "BSAC 32-bit\BSAC.ocx" to "C:\Windows\SysWOW64\"
 
(*) IF Window 64 bit and Office 64-bit
Copy "BSAC 64-bit\BSAC.ocx" to "C:\Windows\System32\"
 
II. INSTALL
Run "Command Prompt" as Administrator and enter the command: 
After copying is done, run the program "Command Prompt" with Administrator rights and run the command register.
+ IF BSAC.ocx in directory "SysWow64"
cd c:\Windows\SysWow64 (press Enter)
Regsvr32 bsac.ocx (press Enter)
alt
+ IF BSAC.ocx in directory "System32"
cd c:\Windows\System32 (press Enter)
Regsvr32 bsac.ocx (press Enter)
 
III. UNINSTALL
If you do not use BSAC.ocx and want to unintall it
Run "Command Prompt" as Administrator and enter the command: 
 
+ IF BSAC.ocx in directory "SysWow64"
cd c:\Windows\SysWow64 (press Enter)
Regsvr32 bsac.ocx /U (press Enter)
 
+ IF BSAC.ocx in directory "System32"
cd c:\Windows\System32 (press Enter)
Regsvr32 bsac.ocx /U (press Enter)
 
(Please see /U)