Where can I find the Ranger.DLL file?

Where can I find the Ranger.DLL file?

By default, the Ranger.dll is installed in the same location as Ranger.ocx:
  1. (64bit OS): C:\Program Files (x86)\Silver Bullet Technology\Ranger\Ranger.dll
  2. (32bit OS): C:\Program Files\Silver Bullet Technology\Ranger\Ranger.dll
If your application is not using the default path or Ranger installer for placement of files, the easiest place to put Ranger.dll for an application to load is in the default paths searched by Windows for a LoadLibrary call. The first of these paths is the same path as the executable file itself so your code could just be LoadLibrary("Ranger.dll") in that instance.

Ranger.dll requires there to be a Scanner Plug-ins folder in the same location as the Ranger.dll so that plug-ins may be located and loaded properly.

The best practice is to provide a fully qualified path to the Ranger.dll to ensure you load the DLL you intend to load.

For more information on LoadLibrary search order, visit Microsoft's article on DLL search order.



Ranger® - The universal check scanner interface
Copyright © 2023 Silver Bullet Technology
www.sbullet.com


    • Related Articles

    • Where can I find my Ranger product key in the Windows Registry?

      If you used a volume license to unlock your Ranger product, it will NOT be in the registry. You can find a License.dat file at C:\Program Files (x86)\Silver Bullet Technology\Ranger\Scanner plugins\[scanner model] Note: You'll have to send this file ...
    • How can I set CAPI Ini file options through Ranger?

      The application can set the following values with the call to "SetDriverOption". After calling "EnableOptions" these options will be copied to the corresponding CAPI ini files. Use caution when setting these vales as they will overwrite the options ...
    • Ranger Installation Options

      Silent Install - /S - You can find additional installation details here When ranger is installed silently no dialog is shown to the user. So you could embed the ranger installer within your own script, extract it and run it from your install script. ...
    • How is the TransportInfo.ini file used?

      Things you should know about the TransportInfo.ini file: Applications use the TransportInfo.ini file to query the capabilities of your check scanner. Ranger creates this file from the information in the XML structure that you create in your plug-in's ...
    • Must I use Image File Sets to store images captured using Ranger?

      You do not need to save images into Image File Sets unless you need Ranger compatibility with large Unisys check scanner/sorters. You can access the images in the Ranger "InPocket" event via the GetImageAddress() and GetImageByteCount() functions. If ...