64 bit sqljdbc.dll

I would like to use the SQL Server XA driver that is supplied by weblogic (8.1, sp2). Is there a 64 bit
version of this driver ? The database server is on
a 64bit Itanium 2.
I tried sqljdbc.dll on a 32 bit SQL Server, and it
seems fine. Now, I want to try it on the 64 bit
machine.
What does sqljdbc.dll do ?
Thanks

I got this resolved by working with MS

Similar Messages

  • Open Procedure for service "BITS" in DLL "C:\Windows\system32\bitsperf.dll" failed

    This error is occurring on my Windows Server 2008R2 server with SQL 2008R2 installed.  I have found lots of "help" but none of it works...
    The Open Procedure for service "BITS" in DLL "C:\Windows\system32\bitsperf.dll" failed. Performance data for this service will not be available. The first four bytes (DWORD) of the Data section contains the error code.
    The "help" I have found...
    http://technet.microsoft.com/en-us/library/cc774913(WS.10).aspx
    http://support.microsoft.com/kb/300956 

    I was able to re-install BITS.  The BITS error seems to have gone away, but this error is now showing...
    The object length of an object returned by Extensible Counter DLL "C:\Windows\system32\wbem\wmiaprpl.dll" for the "WmiApRpl" service was not correct. The sum of the object lengths returned did not match the size of the buffer returned.  The performance
    data returned by the counter DLL will not be returned in the Perf Data Block. The first four bytes (DWORD) of the Data section contains the count of objects.
    Help?

  • Calling 32-bit native DLL hosted on Azure

    I am looking for guidance on how to call 32-bit native DLL through WCF service hosted on Azure. I've been unable to find a tutorial but the path appears to be...
    * Register DLL using Startup task
    * Write WCF service hosted in Azure
    * Enable 32-bit for the application pool
    * Add reference to 32-bit COM server to my WCF service
    * In my WCF service, create instance of server and call method
    Am I on the wrong track or am I missing anything?
    Would it be possible/easier to use PInvoke to avoid having to register COM server?  I'm not sure how to reference the DLL for PInvoke DLLImport statement.

    Hi,
    There was an blog detailed how to use 32bit Native DLL in Windows Azure,  in this blog, the author demonstrated how to use a 32bit dll in the Cloud by means of hosting it under a 32bit process and then use WCF communication to do the
    marshaling.
    #blog link:
    http://blogs.msdn.com/b/haniatassi/archive/2009/03/20/using-a-32bit-dll-in-the-windows-azure.aspx
    Hope this helps
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Illustrator CS6 64-bit dvaui.dll and msvcr100.dll crashing problem, any solution?

    First things first, trying to find a tech support Email address or phone number has been infuriating.  The "3-step support wizard" which results in "go to the forums" is also infuriating and insulting.
    I have a Windows 7 64-bit PC running CS6 64-bit (updated/current), and it's crashing at random (2-3 times per day).  I see events recorded in the event log showing dvaui.dll and msvcr100.dll as the source.  Other people have raised this as an issue, and all I see are guesses.  Does Adobe have a credible solution for this yet?
    I've tried running as a domain admin, which did not help.
    Illustrator CS6 32-bit seems to be working perfectly (4 days straight, no crashing).
    It seems to currently affect only one computer (5 others are fine).  It's not repeatable, and has no discernible cause.
    Also, format and reinstall is neither a solution nor an option.
    To be honest, I'm looking for Adobe to address this directly: do you know why this is happening, and how long until it is solved?  If an Adobe tech support will open a case, I have a file that the designer (I'm not the designer) was using during one of the crashes.  I don't know if the crashing will be related (to the file), but I have the file just in case.
    David.

    Hi Larry,
    Thank you for responding.
    > CS6 is current in that it is still available for purchase and in the CC but it is now two versions behind.
    I'm not quite sure what you are trying to say.  Can you be explicit, please?
    > As to your problem have you tried downloading the .dll files from Microsoft and reinstalling them?
    I have copied and re-registered the DLL files from a known-good machine (that is to say that the machine doesn't exhibit any of the symptoms as the above machine), which did not help.
    I'm really interested in having Adobe respond directly to this issue.  I know they are aware of it.
    It's clear that Adobe doesn't actually want to support this program, but people rely on it for their economic success.  Both my client and his employees need this program to function properly and reliably, and I think anyone would agree that it's reasonable to expect that a problem like this (that affects more than just us) be, at a minimum, addressed.  Adobe has my client's money, they had no problem accepting it.  With that acceptance comes a duty to be responsive.
    Thanks,
    David.

  • I want to upgrade my LABVIEW 4.0 code to LABVIEW 8.0. I am using LV 7.0 to do this. The problem i am facing is 16 bit defined DLL's. As I cannot open it or see whats inside. These DLL's are used by different libraries

    rename these .jpg files and rename them as LATTICE.DLL and COMPARE.DLL. I also have uploaded the vi which is creating problem
    Taimoor
    timmy
    Attachments:
    LATTICE.jpg ‏45 KB
    COMPARE.jpg ‏29 KB
    75000D20.LLB ‏1383 KB

    I didn't look at the VI source code but the other comment doesn't promis much good!
    For the DLLs you need to find a way to replace those DLLs with something else. 16 Bit DLLs are for Windows 3.1 and there is no way to get them to work in 32 Bit Windows.
    So your options are, to either stay with Windows 3.1 (good luck with that !!) or maybe Windows 98 and use a LabVIEW 16 Bit version (<= version 5.1 only) to run your program, or get those DLLs removed/replaced.
    The Compare.DLL might be just some comparison routines which might be easily implemented in LabVIEW itself. The Lattice.DLL is most likely a DLL which tries to do direct register access somehow which is in Windows 32 a protected operation and shouldn't be done in an application but instead in a kernel driver. In the latest LabVIEW versions with 64 Bit support it is even completely unsupported to do that.
    I would say there is a lot of work ahead by trying to figure out what this DLL does and how to replace it. You need to at least get a 32 Bit version of that DLL if it is available and change the VIs accordingly as there might be difference in parameter sizes when they use for instance simply int as data type. If you can't find a 32 bit version of that DLL and failing that haven't got the source code to the DLL to create your own 32 Bit version (which would be likely some serious porting work) then the only option left is to either stay with Windows 3.1 (resp. 16 Bit mode in Windows 9x) or rewrite that part of the application from scratch to do the according IO with modern hardware.
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • JAVA + 32 bit Borland DLL + gpib-32.dll

    Hello,
    I develop a Java application, which - thanks to the Java Native
    Interface - communicates with a 32 bit DLL (I called gpib-jni.dll)
    I wrote this DLL with Borland C++ under Windows 98.
    This DLL contains .cpp and .h files that make a link between Java
    classes and another library for GPIB use: borland_gpib-32.obj
    Actually, National Instruments (manufacturer of GPIB products) delivers
    a gpib-32.dll file to control GPIB boards.
    I installed my GPIB board and the gpib-32.dll file has been installed in
    C:\WINDOWS\SYSTEM directory.
    When I run my program, the Send() and Get() commands of the GPIB driver
    don't work.
    Perhaps there is something to do, in order gpib-32.dll understand
    borland_gpib-32.obj content ?
    I trie
    d to include gpib-32.dll directly in my 32 bit DLL (gpib-jni.dll)
    , but gpib-jni failed when linking operation.
    Thanks for help.
    Stephane Davy
    Software & Signal Processing Engineer
    Observatory of Paris - DESPA
    92190 MEUDON
    France

    Hi,
    File>Properties
    what IE security zone does your page map to?
    Tools>Internet Options>Security tab, security zone... by default Enhanced Protected mode is turned off for the Trusted and Intranet zones...
    If your java rt app requires the 32bit environment... (viz will not run within a x64 browser process)..
    then you need to add a feature test to your page.
    If(navigator.platform.indexOf('32')>-1){// show message that browser is using an incompatible platform)
    Usually IE will show a warning asking to remove a site from EPM (64bit mode), if it detects that no x64 bit version of the Java RT is available (installed/enabled).
    Post questions about html, css and scripting for website development to the IE Web Development forum... include with your questions a link to your website or a mashup.
    Regards.
    Rob^_^

  • Can someone help me get a 64-bit Windows dll please?

    Hi all,
    I'm not a C++ developer (C# instead) and am looking to get hold of a 64-bit version of the Windows XMP dll. I've tried compiling the source myself, but I'm way out of my depth here and can't make it happen.
    Truth be told, I don't even know if there is such a thing as a 64-bit version of the dll, but that's where my research has lead me.
    I'm trying to use the C# wrapper on 64-bit windows, but it doesn't work and the info I've found is that it's because the XMP dll is compiled for 32-bit platforms, and so won't work.
    Can I ask if someone here can supply me with a 64-bit Windows XMP dll please? If so, please mail it to amethi [at] gmail dot com.
    I'm frustrated as it all works fine on my development machine which are 32 bit, but on deployment to our super-spanky 64-bit machine, it didn't work. Doh! Any help appreciated.

    Hi,
    Font is one of your problems. Going into the XML Source and doing a find and replace; changing Times New Roman to Myriad Pro reduced the form from 860kb down to 440kb.
    Also because you have brought this in from another programme (possibly Word) there are lots of objects making up the form. I would recommend changing the font and then working through the form replacing multiple textfields with a single textfield.
    It should be possible to get a 1-page form down to size. Just bear in mind the logo. Whatever size that is will be added to the overall form size.
    Good luck,
    Niall

  • Event ID 1008 The Open Procedure for service "BITS" in DLL "C:\Windows\System32\bitsperf.dll" failed. Performance data for this service will not be available. The first four bytes (DWORD) of the Data section contains the error code.

    I keep getting the above error on all my SQL 2012 deployments (standard and enterprise) on all Windows Server 2012 Standard machines. I have already tried the following commands in administrator mode to resolve without success:
    lodctr bitsperf.dll
    lodctr /R
    Any other suggestions?
    Diane

    Hi Diane Sithoo,
    You post the same question 2 times. Please avoid this practice on Forum, I 
    have merged the same thread. Thanks for your understanding.
    According to your description, we need to verify when the error occurs, and if when the error happen, your SQL Server does not work, right ? If yes, we need to you help us to collect the detailed error log in SQL Server management Studio (SSMS). Please refer
    to the following steps for collecting the error log.
    In SSMS, expand Management, and SQL Server Logs, then
    right-click a log and click View SQL Server Log.
    If the SQL Server can run well, there are some error on Windows Server service, I recommend you post the question on the Windows Server General Forum(http://social.technet.microsoft.com/Forums/windowsserver/en-US/home?forum=winservergen
    ) , It is appropriate and more experts will assist you.
    In addition, about Event ID 1008, you may need to reload the
     performance library when it is not properly initialized during installation. Then you can use Windows Reliability and Performance Monitor to verify that performance counters are properly collected and displayed in a Performance Monitor graph. For
    more information, you can review the following article.
    http://technet.microsoft.com/en-us/library/cc774913(v=ws.10).aspx
    Regards,
    Sofiya Li
    If you have any feedback on our support, please click here. 
    Sofiya Li
    TechNet Community Support

  • Windows 7 64 bit COMHookDll.dll crash

    Hi
    I am trying to run itunes 9.1.1. Each time I start it, the itunes *32 process runs for a few (5ish) seconds and then quits with this in the windows application event log:
    Faulting application name: iTunes.exe, version: 9.1.1.12, time stamp: 0x4bd8abf9
    Faulting module name: COMHookDll.dll, version: 0.0.0.0, time stamp: 0x46e5f73e
    Exception code: 0xc0000005
    Fault offset: 0x00002ee1
    Faulting process id: 0x1e8c
    Faulting application start time: 0x01caf3503b91b74e
    Faulting application path: E:\Program Files (x86)\iTunes\iTunes.exe
    Faulting module path: C:\Windows\system\COMHookDll.dll
    Report Id: 7995c1ef-5f43-11df-9341-00261868399e
    So far I have tried:
    - Running itunes on a different user account (doesn't work)
    - Removing itunes plugins (doesn't work)
    - Running itunes on a new user account (works)
    - Removing itunes library and preferences files (doesn't work)
    - Reinstalling itunes (doesn't work)
    I am out of ideas on how to get it to work, any help much appreciated.

    COMHookDll.dll
    I think that might be associated with a soundcard, although the research I've done isn't conclusive. By any chance, do you have an ASUS soundcard of some description in that PC?

  • I would like upgrade a 16-bit dll that was developed for 16-bit windows to a 32-bit dll

    I have an 16-bit dll library that was used for talking to a DAQ through Labview version 4 for windows 3.1. I would like to upgrade it so that I can make these calls through Labview version 4.0.1(32-bit). Can anybody do it for me
    Attachments:
    Megadac.llb ‏361 KB
    MEGADLL.DLL ‏240 KB
    Driver_Files.zip ‏71 KB

    "cincidude" wrote in message
    news:[email protected]..
    > I have an 16-bit dll library that was used for talking to a DAQ
    > through Labview version 4 for windows 3.1. I would like to upgrade it
    > so that I can make these calls through Labview version 4.0.1(32-bit).
    > Can anybody do it for me
    You are asking not much aren't you? I mean your DLL acesses directly the
    speaker hardware
    in the first function I looked at. Hardware access in 32 bit Windows DLLs is
    a big NONO.
    Then looking at the communication source I see that your device is
    appearently a nice GPIB
    device.
    In my humble opinion reimplementing the whole piece in LabVIEW would be just
    as hard as
    porting it properly to Win32 as a DLL. It is certainly a lot of work
    in any
    case but that
    requirement to develop the solution in LabVIEW 4.0 seems rather antiquated
    to me.

  • OraOps.dll differences on 64-bit and 32-bit

    Just wanted to post this here, maybe it'll save someone a lot of headaches.
    We have a 64-bit Intel Xeon server running W2K3. We developed on a 32-bit Server using XE Database and XE Client.
    Then, we install the 64-bit oracle client on the prod. server (running Intel Xeon 64-bit)
    The file OraOps.dll exists in both installation, no problem. BUT the 64-bit OraOps.dll file has an entry point called "OpsPrmAllocOpoPrmCtx", whereas the 32-bit OraOps.dll file has an entry point called "OpsPrmAllocPrmCtx"".
    We kept getting an error on the 64-bit box saying "cannot find entry point OpsPrmAllocPrmCtx in file OraOps.dll".
    To fix this, we installed the 32-bit client on the 64-bit server and all worked well.
    Also, we noticed in the 32-bit client there was an option under the Windows Compoonents to install the ODP .Net Provider along with the client install. This option apparently does not exist (yet) in the 64-bit Client installation.
    Increase gray hair = 1,000. Hours of lost sleep = 46.4 Finally finding the solution = priceless.
    Hope this is able to help someone.

    Hello,
    You can cluster heterogeneous JDK across heterogeneous operating systems.
    So yes you can mix 32bit and 64bit JVMs.
    -Dave

  • Can't load IA 32-bit .dll on a AMD 64-bit platform

    Hello,
    Im having an issue here. I need to run a Java program with a language called CLIPS. i have the JNI files and the .dll at my System32 directory.
    But when i try to compile the source code, i got this error:
    Exception in thread "AWT-EventQueue-0" java.lang.UnsatisfiedLinkError: C:\Windows\System32\CLIPSJNI.dll: Can't load IA 32-bit .dll on a AMD 64-bit platform  It's quite strange, because im using an intel i5 with a Win 7 64bits.
    Oh and my JDK version is 64 bits
    How i fix this?
    Thanks in advace.

    Gui.Iscaro wrote:
    Exception in thread "AWT-EventQueue-0" java.lang.UnsatisfiedLinkError: C:\Windows\System32\CLIPSJNI.dll: Can't load IA 32-bit .dll on a AMD 64-bit platform 
    To me it looks like CLIPSJNI.dll is a 32-bit dll rather than a 64-bit dll.
    How i fix this?Get a 64-bit CLIPSJNI.dll
    or switch to a 32-bit JVM (and a 32-bit OS).

  • HTTP Error 500.0 with CF 9 & IIS 7.5 32 bit enabled web app

    Hello !
    I have recently installed CF 9 64 bit on Windows Server 2008 Standard Edition R2 with IIS 7.5.  I have just set the 'Enable 32 bit applications' option on the application pool settings to 'true' for one of the sites as I have some web pages that make use of a 32 bit COM DLL.  I originally had this option set to 'false' and all of the web pages in my site were being served fine with the exception of the ones making use of the 32 bit COM DLL.
    The details on the error message from IIS are as follows:
    HTTP Error 500.0 - Internal Server Error
    Detailed Error Information:
    Module: IsapiModule
    Notification: ExecuteRequestHandler
    Handler: AboMapperCustom-75500
    Error Code: 0x800700c1
    Most Likely causes:
    IIS received the request; however, an internal error occurred during the processing of the request. The root cause of this error depends on which module handles the request and what was happening in the worker process when this error occurred.
    IIS was not able to access the web.config file for the Web site or application. This can occur if the NTFS permissions are set incorrectly.
    IIS was not able to process configuration for the Web site or application.
    The authenticated user does not have permission to use this DLL.
    The request is mapped to a managed handler but the .NET Extensibility Feature is not installed.
    Things you can try:
    Ensure that the NTFS permissions for the web.config file are correct and allow access to the Web server's machine account.
    Check the event logs to see if any additional information was logged.
    Verify the permissions for the DLL.
    Install the .NET Extensibility feature if the request is mapped to a managed handler.
    Create a tracing rule to track failed requests for this HTTP status code. For more information about creating a tracing rule for failed requests, click here.
    I am not sure if the error is permissions related or not.
    1.  How do I rectify this error and still keep the 'Enable 32 application' option turned on so I can call a 32 bit COM DLL ?
    2.  In general, can the 64 bit version of CF 9 even invoke 32 bit COM DLL's on IIS 7.5 or should this only be done with the 32 bit version of CF 9 ?
    I would appreciate any help.
    Thank you.

    Here is the info:
    http://helpx.adobe.com/coldfusion/kb/coldfusion-security-hotfix-apsb12-15.html
    See notes section 5
    CF9.0.2 came out with apsb12-15 applied.
    Difference with CF10 is you can use CFadmin to change postparamlimit setting.
    Cheers, Carl.

  • NI 5660 Driver DLL Errors when using Teststand 2010 and LabVIEW Run-Time Engine 2010

    This problem seems similar to the post "Resource not found error in executable on developmen​t machine." but I didn't want to repost under that thread because I only happened upon it by chance and none of my searches brought me there... so I made a more descriptive Subject.
    I am working on a system that uses a PXI Chassis with a NI 5600 Downconverter and a NI 5620 high speed digitizer, among other PXI Cards. 
    I inherited working code written in LabVIEW 2010, running with the LabVIEW Run-Time Engine 2010.  The code was using a custom executive and my task was to rewrite the test using TestStand 2010.  I reused the majority of the old code.  The old code used NI-5660 to control the 5600 and 5620.  When I run my sequence using the LV Development System and TestStand, it runs without any issues.  When I change the adapter over to LabVIEW Run-Time Engine 2010, all of my NI5660 VIs become broken due to DLL issues.  It warns that the nipxi5600u​.dll was not initialized correctly.  Many of the errors are associated with the NI Tuner and NI Scope. After this LabVIEW will crash randomly, and the seqeunce will not work in TestStand even when back with the LV Development Adapter.  The only way to recover after this is to restart the computer - TestStand automatically reverts back to the development system, the VIs are no longer broken and the sequence works again. 
    I have all of my VIs associated with a project. After reading a little bit about DLLs and TestStand, I found all of the DLLs in the dependencies section of my project and added them to my TestStand workspace.  I also used Dependency Walker to track down the problems with the nipxi5600u​.dll, the 2 DLL files that it said were not found already existed in the same folder as the original DLL (C:\Windows\System32).  I have also performed a Mass Compile to make sure everything was running in LV 2010.  If I skip the steps involving the 5660, my entire sequence runs fine. 
    The previous code was running with the LabVIEW Run-Time Engine without any issues.  Is there just a step I am missing?  Has anyone seen anything like this before?  I can send screenshots of errors to provide more detail if necessary. 

    I have tried some more things and still can't get it to work.  I have added the VIs mentioned in the Notes On Creating Modulation Executables KB both to the TestStand workspace and the LabVIEW project holding all of my VIs.  This did not change the results. 
    When I try to run my sequence, The first error I get is shown in Error 1445.bmp.  This happens when I try to use the NI 5660 initialize.vi.  If I click ignore, the next error I see is shown in Error -20551.bmp.  When I try to open the VI to look at it, I get the 2 DLL errors shown in Error loading nipxi5600u.bmp and Error loading nidaq32.bmp.  When I close TestStand, I get the error LabVIEW Fatal Error.bmp. 
    Attachments:
    Error1445.JPG ‏164 KB
    Error -20551.JPG ‏174 KB
    Error loading nipxi5600u.JPG ‏9 KB

  • Browse sequence in Windows Vista 64-bit?

    This is a duplicate post.  I posted it nestled down in another browse sequence thread and didn't get any nibbles, so I am creating a new thread.  I hope no one minds.
    Hi all, I'm wondering if I can get a little help from the gurus here.  I've been through the forums and internet trying to find the answer to browse sequences and glossary tabs in Windows Vista 64-bit.  I am running Windows Vista 64-bit Home Premium Service Pack 2.
    I need to mention that my .chm files work fine on Windows XP (multiple machines tested).  My project consists of a master .chm (thanks Peter Grainge for the step-by-step, which I followed to the letter) with 15 slave projects.
    I've copied the hhactivex.dll from the Program Files\Adobe\RoboHelp\RoboHTML (426 KB) on my Windows XP machine and saved it in the following folders on my Windows Vista 64-bit machine:
    c:\windows\system32
    c:\windows\sysWOW64
    I then tried using the cmd.exe command prompt (as administrator) in c:\windows\system32 to do the following:
    regsvr32 c:\windows\system32\hhactivex.dll
    regsvr32 c:\windows\system32\hhctrl.ocx
    Both commands registered successfully.  When I opened the .chm, the glossary and browse sequence are still not working properly.
    So, I then tried unregistered hhactivex.dll and hhctrl.ocx in the c:\windows\system32 folder using the regsvc32 and the cmd.exe (as administrator) in that same folder.
    I then tried using the cmd.exe command prompt (as administrator) in c:\windows\sysWOW64 to do the following:
    regsvr32 c:\windows\sysWOW64\hhactivex.dll
    regsvr32 c:\windows\sysWOW64\hhctrl.ocx
    Both commands registered successfully.  When I opened the .chm, the glossary and browse sequence are still not working properly.
    I've been pulling my hair out on this one.  I've seen posts mentioning the "Unblock" Button on the .chm's Properties - General tab - Advanced dialog, but I do not have an Unblock button anywhere in the properties for these .chms.  I also do not have the Microsoft KB 89xxxxx security updates on my Vista 64-bit computer that I can find.
    I also say a post that put the path/filename in quotes when using regsvr32.  I tried registering again using the same scenarios above in system32 (regsvr32 "c:\windows\system32\hhactivex.dll") and sysWOW64 (regsvr32 "c:\windows\sysWOW64\hhactivex.dll") but still I cannot get the browse sequences/glossary to work in thses compiled .chms -- whether opening the master or the slave.
    After I registered the hhactivex.dll on a Windows XP test machine, if I opened a .chm and then went into Windows Explorer and tried to delete the hhactivex.dll, I'd get a "file in use" error.  However, when I open a .chm on my Vista 64-bit machine and try to delete the hhactivex.dll in either system32 or sysWoW64, it deletes without error.  I verified this with all of the different registering methods I described in this post (registering, testing, unregistering, moving to next folder, etc.).  Being able to delete the .dll on the Vista machine tends to make me believe that the .dll isn't really registering,  Either way, it isn't being accessed when a .chm file is opened like on a Windows XP machine.
    I've been around the internet trying to find out exactly how to register .dlls in Vista 64-bit, and unless I'm totally missing something I believe I am doing this correctly.  If I am doing something wrong, could someone guide me in the right direction with a complete step-by-step method that works in Vista 64-bit?
    I have yet to test Vista 32-bit or any version of Windows 7, but I am hoping that once I resolve the problem in Vista 64-bit that the rest will be non-issues.  I hope anyway, as I have no means to test those platforms.
    Thanks in advance for making it to the end of this long post of mine.  I appreciate any help!
    eeddings

    The 32bit version of HH.exe is kept in "C:\Windows\SysWOW64". When you double click a CHM file on a 64 bit machine, it launches the 64 bit version of hh.exe kept in C:\Windows or C:\Windows\System32 directory.
    To launch a CHM with 32 bit version hh.exe, run the following command in a 64 bit machine C:\Windows\SysWOW64\hh.exe <CHM file Path>
    The other good news is that you can get the 64 bit version of HHActiveX.dll in RoboHelp 9.0. It is kept at "<RoboHelp 9.0 install folder>\Redist\x64\HHActiveX.dll"
    If RoboHelp 9.0 is installed on your machine, this activeX control is already registered. Otherwise you need to register this DLL.
    To register 64bit version of HHActiveX.dll,
    1> Run Command prompt(cmd.exe) as administrator
    2> Type "regsvr32 <64 bit HHActiveX.dll full path>" and press Enter.
    3> This should show that the registration is done successfully.
    Now working with 64 bit version of HH.exe should also show Glossary and Browse Sequences.

Maybe you are looking for

  • How to simply display resulting text in a dialog Box

    Is there a way to simply display resulting text in a dialog Box - not a text edit document? Doug_

  • How to search entire headers in Mail.app?

    Given that "Entire Message" is anything but how do you search all headers in Mail.app? I'm guessing it's not possible to do this. Also does the spotlight importer even index this stuff?

  • Nokia N78 firmware update

    Whenever i choose to update my phone (N78) software, after donwload completes from internet, at around 13~15% of updgradtion process communication (USB link) with mobile phone drops and systems propts a new hardware is found (Nokia ROM Driver) but af

  • How to create an array of linklists??? ... plz

    Hi guys, I am trying to create a Hash table. My link list is already working. But i am still confused about how to create any array linklist for solving the collisions. Do i need to create a new instance of the linklist for each array slot? What is t

  • Wpad proxy problem with ie10 and 11

    Hi, We have been using a wpad.dat file for a number of years now to deploy our proxy settings. We currently have ie9 on all machines and the wpad.dat file works. When we upgrade to ie10 or 11 the wpad settings do not work and we have to manually set