Npjpi160_13.dll is disabled in IE-8

I Recently installed Java Update-13 on Xp sp3 on with IE-8.
On checking the Addon npjpi160_13.dll was found in disabled condition.
On pointing to this file it says dll helper for netscape navigator .
My qustion is does IE-8 falls in category og netscape type broeser , I think not .
-Is it required to enable this addon.
In my opinion this file is required for mozill firefox.
Kindly some one clarify as my browser crashes whenever java is loded in it
Regards
Adi

I found this through Google. Maybe it will help. [http://www.techspot.com/blog/596/a-fix-for-java-applets-not-loading-in-firefox/#more-596]

Similar Messages

  • Error with syspreped windows 7 image related to capisp.dll execution...

    Hi Folks,
    some time ago I crafted an windows 7 image with sysprep generalization for WDS deployment. In real there are 2 images: one dumped w/o sysprep and the another w/ (dumping with ImageX Tool from WAIK for W7/W2K8R2). The syspreped one I delivered to our WDS
    Server. In the past I made several changes based on the non-syspreped image (incl. WUs) and afterward I've generated a new syspreped version from it. ...and now, since the last revision und sysprep run the last syspreped version (stored at the WDS) is no longer
    installable onto any target machine... Ervery time I tried to deploy this version from the WDS at the target machine an error popup occurs and says that this image cannot be installed at this target machine type (see *** - the german message). Examinig the
    SETUPACT.LOG / SETUPERR.LOG files the following problem has been stated:
    2010-06-21 14:22:54, Info       [0x0f0081] SYSPRP LaunchDll:Successfully executed 'C:\Windows\System32\sppnp.dll,Sysprep_Specialize_Pnp' without error
    2010-06-21 14:22:54, Info       [0x0f008b] SYSPRP RunRegistryDlls:Found entrypoint in registry at SOFTWARE\Microsoft\Windows\CurrentVersion\Setup\SysPrep\Specialize\{2172c981-2c23-e969-b30d-046ffeeb096e}; will try to launch 'C:\Windows\system32\capisp.dll,CryptoSysPrep_Specialize'
    2010-06-21 14:22:54, Info       [0x0f0080] SYSPRP LaunchDll:Found 'C:\Windows\system32\capisp.dll,CryptoSysPrep_Specialize'; executing it
    2010-06-21 14:22:54, Info                         capisp.dll::CheckIFCryptoSysPrepSpecialized: returning 0
    2010-06-21 14:22:55, Info                         capisp.dll::CryptoSysPrep_Specialize: assigned CAPI machine guid "44d42aa2-dee4-4023-bea5-d2f166bbb42c"
    2010-06-21 14:22:55, Info                         capisp.dll::DisableAdministratorIfApplicable disabled the admin account.
    2010-06-21 14:22:55, Info                         capisp.dll::CryptoSysPrep_Specialize: returning 5
    2010-06-21 14:22:55, Error      [0x0f0082] SYSPRP LaunchDll:Failure occurred while executing 'C:\Windows\system32\capisp.dll,CryptoSysPrep_Specialize', returned error code 5[gle=0x000003e5]
    2010-06-21 14:22:55, Info                  IBS    Callback_Specialize: Internal Providers Specialized Failed. System can't proceed to handle Internal Providers
    2010-06-21 14:22:55, Info                  IBS    Callback_Specialize: Specialize return: [5]
    2010-06-21 14:22:55, Error      [0x060435] IBS    Callback_Specialize: An error occurred while either deciding if we need to specialize or while specializing; dwRet = 0x5
    2010-06-21 14:22:55, Info       [0x0640ae] IBSLIB PublishMessage: Publishing message [***Windows kann nicht für die Ausführung auf der Hardware dieses Computers konfiguriert werden.]
    The mentioned error is the only one.
    ANY help is very appreciated!
    From Colonel Gizmo

    Hi,
    Regarding the returned error code, error code 0x5 is a “Access denied” error. It seems that the sysprep disables the administrator account, it can’t
    process the capisp.dll and pass CryptoSysPrep_Specialize. To resolve this kind of issue, I would like to suggest:
    1.       
    Ensure that you deploy image running as Administrator account.
    2.       
    Mount the image and check if the capisp.dll file exists and try taking ownership of it.
    3.       
    Open Registry Editor and navigate to the following path:
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Setup\Sysprep\Specialize
    Check if there is an entry with the Data:
    C:\Windows\system32\capisp.dll,CryptoSysPrep_Specialize , make sure it is spelled correctly and check the permissions on the above key.
    4.       
    Then deploy again.
    Best Regards
    Dale
    Please remember to click “Mark as Answer” on the post that helps you.

  • Error 1517 when executing the VIs for DLL

    I want to be able to use a certain function from C++ DLL, and I followed the TOOLS>>IMPORT>>SHARED LIBRARY(.dll) wizard. l use the head file and dll from company. This is for a motion controller. When I run VIs, they always show the error 1097 and the VIs can not work on the motion controller both in the simulation and in the real operation. I use the sac.dll and sacenums.h file. As you can see in the picture, the return value is very strange and the pAxisId should be "0" instead of "128"
    Attachments:
    Sac.zip ‏1535 KB
    sacenums.h ‏69 KB

    Two things to check:
    1. Make sure you have the correct calling convention selected
    Calling convention—Specifies the calling convention for the function. The default is C.
    stdcall (WINAPI)—Controls whether the object uses the __stdcall calling convention.
    C—Controls whether the object uses the __cdecl calling convention.
    2. Try lowering the error checking.  Try "default" or even "disabled" to see if it fixes the issue:
    Error Checking—Use the Error Checking tab to specify the error checking level for the Call Library Function Node.
    Error Checking Level—Contains the following options:
    Maximum—Enables the maximum level of error checking for the Call Library Function Node. In addition to the error checking capabilities of the Default level, the Maximum level causes the Call Library Function Node returns a warning if the function being called in the shared library or DLL writes beyond the space allocated for the specified string or array parameter.
    Note  Selecting the Maximum control on the Error Checking tab reduces the execution speed and increases the memory usage of the Call Library Function Node. Therefore, you should select the Maximum control only when debugging your configuration of the Call Library Function Node.
    Default—Enables the default level of error checking for the Call Library Function Node. The default level of error checking allows LabVIEW to recover from unhandled exceptions that occur during execution of the called shared library or DLL. This error checking level also causes the Call Library Function Node to return an error if the Calling convention you select on the Function tab does not match the calling convention of the function you are calling in the shared library or DLL.
    Disabled—Disables error checking for the Call Library Function Node. Disabling error checking for the Call Library Function Node improves the execution speed of the Call Library Function Node. However, certain errors can cause an irregular shutdown of LabVIEW. Before disabling error checking, be sure that the function the Call Library Function Node references does not raise any unhandled exceptions.
    *Source: http://zone.ni.com/reference/en-XX/help/371361K-01/lvdialog/call_lib_function_db/
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    If someone helped you out, please select their post as the solution and/or give them Kudos!

  • Disabling a mouse cursor in LV window using LV 6.1

    Hi, I need to Disable/Enable the mouse cursor programatically in LV Window using LV 6.1
    {Mouse cursor can be visible,but should not be activated when it is disabled).Is there any DLL's available?
    Regards
    Murali

    You can use the EnableWindow function from user32.dll to disable all input in your front panel window. Use the FindWindow function to find the handle. I'm posting an example of this.
    There's also the BlockInput function in there, for comparison, but you probably won't want to use that one because it blocks ALL input.
    Try to take over the world!
    Attachments:
    Disable.vi ‏22 KB

  • Unable to Install VS 2013.4 on Windows 7 SP1 system

    Over the last few day and long nights, I have tried several times to load VS 2013.4 on my Win 7 Home Premium SP1 PC with no success.  I have tried several packages including VS Community, Web, and Desktop.  Tried multiple download sites and even
    copied the .iso images locally.  Every time I install I get the following message during the install...
    MS ASP.net and Web Tools 2013.4 - Visual Studio Express 2013 for Web Package Failed
    and
    MS ASP.net Web Pages2 run time package failed. 
    I have verified the check sums on the .iso image I downloaded and they match,  I have registered .DLL's, disabled anti virus & Firewall options, uninstalled KB2918614, ran the MSI "Mr. Fix it" for .net framework, and a few other I can't
    think of at the moment. 
    When I attempt to run VS I also get "The operation could not be completed.  No such interface supported."  I'm at a loss on what to do so I thought I would ask for a  little help in resolving my issues. Hope you folks can help 
    Thanks in Advance...
    J

    Another night of frustration with this install....  Today I reloaded Windows 7 SP1 and ran the fix for VS.  Still unable to get VS installed.  I'm about to give up on this product.  Here is a snip-it of what I see in the log file after
    the fix.   I have applied everything I can think of as well as what the error messages  point me to. 
    ed: Error Message Id: 1722 ErrorMessage: There is a problem with this Windows Installer package. A program run as part of the setup did not finish as expected. Contact your support personnel or package vendor.  
    [11B8:1710][2015-03-02T17:38:57]e000: Error 0x80070643: Failed to install MSI package.
    [11B8:1710][2015-03-02T17:38:57]e000: Error 0x80070643: Failed to execute MSI package.
    [038C:0748][2015-03-02T17:38:57]e000: Error 0x80070643: Failed to configure per-machine MSI package.
    [038C:0748][2015-03-02T17:38:57]i000: MUX:  Installation size in bytes for package: nugetvs2013 MaxAppDrive: 0  MaxSysDrive: 3440640  AppDrive: 0  SysDrive: 360448
    [038C:0748][2015-03-02T17:38:57]i000: MUX:  Return Code:0x80070643 Msi Messages:1722 Result Detail:0 Restart:None
    [038C:0748][2015-03-02T17:38:57]i000: MUX:  Set Result: Return Code=-2147023293 (0x80070643), Error Message=1722, Result Detail=, Vital=False, Package Action=Install, Package Id=nugetvs2013
    [038C:0748][2015-03-02T17:38:57]w350: Applied non-vital package: nugetvs2013, encountered error: 0x80070643. Continuing...
    [11B8:1710][2015-03-02T17:38:57]i325: Registering dependency: {96a8b90c-0a91-4e76-ab34-730c23923d11} on package provider: {AFF89951-EFF1-3543-92CE-BE535855A3A7}, package: nugetvs2013
    [11B8:1710][2015-03-02T17:38:57]i323: Registering package dependency provider: {7BF61FA9-BDFB-4563-98AD-FCB0DA28CCC7}, version: 8.0.1557, package: iisexpress_x64_en_us_1061
    [038C:0748][2015-03-02T17:38:57]i000: MUX:  ExecutePackageBegin PackageId: iisexpress_x64_en_us_1061
    [11B8:1710][2015-03-02T17:38:57]i301: Applying execute package: iisexpress_x64_en_us_1061, action: Repair, path: C:\ProgramData\Package Cache\{7BF61FA9-BDFB-4563-98AD-FCB0DA28CCC7}v8.0.1557\packages\IISExpress\iisexpress_x64_en-US.msi, arguments: ' MSIFASTINSTALL="7"'
    [038C:0748][2015-03-02T17:39:49]i000: MUX:  Installation size in bytes for package: iisexpress_x64_en_us_1061 MaxAppDrive: 0  MaxSysDrive: 39964672  AppDrive: 0  SysDrive: 0
    [038C:0748][2015-03-02T17:39:49]i000: MUX:  Return Code:0x0 Msi Messages:0 Result Detail:RollbackCleanup Restart:None
    [038C:0748][2015-03-02T17:39:49]i000: MUX:  Reset execution Result
    [038C:0748][2015-03-02T17:39:49]i000: MUX:  Reset Result
    [038C:0748][2015-03-02T17:39:49]i319: Applied execute package: iisexpress_x64_en_us_1061, result: 0x0, restart: None
    [11B8:1710][2015-03-02T17:39:49]i325: Registering dependency: {96a8b90c-0a91-4e76-ab34-730c23923d11} on package provider: {7BF61FA9-BDFB-4563-98AD-FCB0DA28CCC7}, package: iisexpress_x64_en_us_1061
    [11B8:1710][2015-03-02T17:39:49]i323: Registering package dependency provider: {093F1701-E0CB-3506-9366-07B69773A78B}, version: 12.4.51016.0, package: webtoolsextensionsvs_1040
    [038C:0748][2015-03-02T17:39:49]i000: MUX:  ExecutePackageBegin PackageId: webtoolsextensionsvs_1040
    [11B8:1710][2015-03-02T17:39:49]i301: Applying execute package: webtoolsextensionsvs_1040, action: Install, path: C:\ProgramData\Package Cache\{093F1701-E0CB-3506-9366-07B69773A78B}v12.4.51016.0\packages\WPT\webtoolsextensionsvs2013.msi, arguments: ' ARPSYSTEMCOMPONENT="1"
    MSIFASTINSTALL="7" SKIP_SETUP="1" SKIP_UPDATE_CHECK="1"'
    [11B8:1710][2015-03-02T17:39:53]e000: Error 0x80070643: Failed to install MSI package.
    [11B8:1710][2015-03-02T17:39:53]e000: Error 0x80070643: Failed to execute MSI package.
    [038C:0748][2015-03-02T17:39:53]e000: Error 0x80070643: Failed to configure per-machine MSI package.
    [038C:0748][2015-03-02T17:39:53]i000: MUX:  Installation size in bytes for package: webtoolsextensionsvs_1040 MaxAppDrive: 0  MaxSysDrive: 55779328  AppDrive: 0  SysDrive: 3055616
    [038C:0748][2015-03-02T17:39:53]i000: MUX:  Return Code:0x80070643 Msi Messages:0 Result Detail:WebConfigInitialize Restart:None
    [038C:0748][2015-03-02T17:39:53]w350: Applied non-vital package: webtoolsextensionsvs_1040, encountered error: 0x80070643. Continuing...
    [11B8:1710][2015-03-02T17:39:53]i325: Registering dependency: {96a8b90c-0a91-4e76-ab34-730c23923d11} on package provider: {093F1701-E0CB-3506-9366-07B69773A78B}, package: webtoolsextensionsvs_1040
    [038C:0748][2015-03-02T17:39:53]i000: MUX:  ExecutePackageBegin PackageId: vs_teamExplorerCore
    [11B8:1710][2015-03-02T17:39:53]i301: Applying execute package: vs_teamExplorerCore, action: Repair, path: C:\ProgramData\Package Cache\{C9E7751E-88ED-36CF-B610-71A1D262E906}v12.0.21005\packages\TeamExplorerCore\TeamExplorerCore.msi, arguments: ' MSIFASTINSTALL="7"
    USING_EXUIH="1" VS7.3643236F_FC70_11D3_A536_0090278A1BB8="C:\Program Files (x86)\Microsoft Visual Studio 12.0"'
    [038C:0748][2015-03-02T17:40:13]i000: MUX:  Installation size in bytes for package: vs_teamExplorerCore MaxAppDrive: 0  MaxSysDrive: 103424000  AppDrive: 0  SysDrive: 3117056
    [038C:0748][2015-03-02T17:40:13]i000: MUX:  Return Code:0x0 Msi Messages:0 Result Detail:RemoveExistingProducts Restart:None
    [038C:0748][2015-03-02T17:40:13]i000: MUX:  Reset execution Result
    [038C:0748][2015-03-02T17:40:13]i000: MUX:  Reset Result
    [038C:0748][2015-03-02T17:40:13]i319: Applied execute package: vs_teamExplorerCore, result: 0x0, restart: None
    [11B8:1710][2015-03-02T17:40:13]i325: Registering dependency: {96a8b90c-0a91-4e76-ab34-730c23923d11} on package provider: Microsoft.VS.TeamExplorerCore,v12, package: vs_teamExplorerCore
    [038C:0748][2015-03-02T17:40:13]i000: MUX:  ExecutePackageBegin PackageId: vs_teamExplorerCoreRes
    [11B8:1710][2015-03-02T17:40:13]i301: Applying execute package: vs_teamExplorerCoreRes, action: Repair, path: C:\ProgramData\Package Cache\{492FCC0B-45E1-383A-A2CF-9E7F305AC200}v12.0.21005\packages\TeamExplorerLP\vs_teamExplorerCoreRes.msi, arguments: ' MSIFASTINSTALL="7"
    USING_EXUIH="1"'
    [038C:0748][2015-03-02T17:40:16]i000: MUX:  Installation size in bytes for package: vs_teamExplorerCoreRes MaxAppDrive: 0  MaxSysDrive: 4214784  AppDrive: 0  SysDrive: 417792
    [038C:0748][2015-03-02T17:40:16]i000: MUX:  Return Code:0x0 Msi Messages:0 Result Detail:RemoveExistingProducts Restart:None
    [038C:0748][2015-03-02T17:40:16]i000: MUX:  Reset execution Result
    [038C:0748][2015-03-02T17:40:16]i000: MUX:  Reset Result
    [038C:0748][2015-03-02T17:40:16]i319: Applied execute package: vs_teamExplorerCoreRes, result: 0x0, restart: None
    [11B8:1710][2015-03-02T17:40:16]i325: Registering dependency: {96a8b90c-0a91-4e76-ab34-730c23923d11} on package provider: Microsoft.VS.TeamExplorerCoreRes_enu,v12, package: vs_teamExplorerCoreRes
    [038C:0748][2015-03-02T17:40:16]i000: MUX:  ExecutePackageBegin PackageId: aspnetwebpages2_1030
    [11B8:1710][2015-03-02T17:40:16]i301: Applying execute package: aspnetwebpages2_1030, action: Install, path: C:\ProgramData\Package Cache\{B536762B-1047-4B51-8ECF-46D5686E5416}v2.0.20716.0\packages\WPT\aspnetwebpages2.msi, arguments: ' ARPSYSTEMCOMPONENT="1"
    MSIFASTINSTALL="7"'
    [11B8:1710][2015-03-02T17:40:17]e000: Error 0x80070643: Failed to install MSI package.
    [11B8:1710][2015-03-02T17:40:17]e000: Error 0x80070643: Failed to execute MSI package.
    [038C:0748][2015-03-02T17:40:17]e000: Error 0x80070643: Failed to configure per-machine MSI package.
    [038C:0748][2015-03-02T17:40:17]i000: MUX:  Installation size in bytes for package: aspnetwebpages2_1030 MaxAppDrive: 0  MaxSysDrive: 114688  AppDrive: 0  SysDrive: 114688
    [038C:0748][2015-03-02T17:40:17]i000: MUX:  Return Code:0x80070643 Msi Messages:0 Result Detail:WebConfigInitialize Restart:None
    [038C:0748][2015-03-02T17:40:17]w350: Applied non-vital package: aspnetwebpages2_1030, encountered error: 0x80070643. Continuing...
    [11B8:1710][2015-03-02T17:40:17]i325: Registering dependency: {96a8b90c-0a91-4e76-ab34-730c23923d11} on package provider: Microsoft.ASP.NET.webpages_runtime,v2, package: aspnetwebpages2_1030
    [038C:0748][2015-03-02T17:40:17]i000: MUX:  ExecutePackageBegin PackageId: aspnetwebpages2vs12tools_1032
    [11B8:1710][2015-03-02T17:40:17]i301: Applying execute package: aspnetwebpages2vs12tools_1032, action: Repair, path: C:\ProgramData\Package Cache\{64297226-2B81-4588-89BD-76440BC0BCFC}v4.1.21001.0\packages\WPT\aspnetwebpages2vs2013tools_enu.msi, arguments:
    ' ARPSYSTEMCOMPONENT="1" MSIFASTINSTALL="7" SKIP_SETUP="1"'
    [038C:0748][2015-03-02T17:40:37]i000: MUX:  Installation size in bytes for package: aspnetwebpages2vs12tools_1032 MaxAppDrive: 0  MaxSysDrive: 28483584  AppDrive: 0  SysDrive: 3235840
    [038C:0748][2015-03-02T17:40:37]i000: MUX:  Return Code:0x0 Msi Messages:0 Result Detail:RollbackCleanup Restart:None
    [038C:0748][2015-03-02T17:40:37]i000: MUX:  Reset execution Result
    [038C:0748][2015-03-02T17:40:37]i000: MUX:  Reset Result
    [038C:0748][2015-03-02T17:40:37]i319: Applied execute package: aspnetwebpages2vs12tools_1032, result: 0x0, restart: None
    [11B8:1710][2015-03-02T17:40:37]i325: Registering dependency: {96a8b90c-0a91-4e76-ab34-730c23923d11} on package provider: Microsoft.ASP.NET.WebPages_VisualStudio12_Tooling_ENU,v2, package: aspnetwebpages2vs12tools_1032
    [11B8:1710][2015-03-02T17:40:37]i325: Registering dependency: {96a8b90c-0a91-4e76-ab34-730c23923d11} on pac
    Anyone have any ideas???

  • Messages failure to send but still goes through

    I hope someone can help. This is a tough subject to search for since it's similar to other known issues but somewhat different as best i've found.
    A few days ago i started getting 'messaged failed to send' notifications from my phone after sending an imessage. That has happened before, but this time the message was also delivered (and not via text).
    The problem persists across my macbook (10.8.5) and my ipad. Each time the message shows as 'delivered' and then a failure notice or icon appears. Sometimes after i've received a response from the person regarding the message i just sent.
    It's somewhat annoying because it causes my phone to buzz each time i'm warned, and doesn't inspire confidence because at some point a message will fail.
    I've tried restarting all my devices and i've also tried turning messages off and on from my phone and with no luck.
    Any other ideas of cause or solution?
    Thanks

    (For the record) Here is the crash report for the first Crash Report ID,
    bp-570d0dec-d224-406f-a5a4-885852130123
    https://crash-stats.mozilla.com/report/index/570d0dec-d224-406f-a5a4-885852130123
    Firefox 18.0.1 Crash Report [@ coffplgn.dll@0x3714 ]
    [[Disable or remove Add-ons|Disable any extensions]] related to Norton products (e.g., the Norton Toolbar) in the Firefox Add-ons -> Extensions list and then close Firefox and reopen it.
    This Norton Community forum thread has more information:
    *http://community.norton.com/t5/Norton-Toolbar-Norton-Identity/Norton-toolbar-update-crashes-Firefox-18/td-p/890159 Norton toolbar update crashes Firefox 18

  • RoboHelp  for Word 7 is not saving the rtf and won't compile .hlp

    I use RoboHelp for Word 7 to produce WinHelp files. It's been working fine for several months on this computer.
    Just in the past week, I had an issue with my Word 2007 when trying to open a .doc file. I got the message that the converter nswrd632.wpc wasn't found. After searching on the Microsoft forums, I edited the registry and registered that converter.
    But now (and this may be unconnected to the Word converter message) RH won't save the .docx or .rtf file. Whenever I click Save All, nothing happens. When I click Exit Project, the message comes up about needing to save the files, and I click Yes to All. Nothing happens except the message closing. No files are saved and RH does not exit. The only way I can exit RH is to click No, which of course means my changes aren't saved. I can't save the .docx file through the Word menu, either.
    I also cannot compile the file. Again, no error message, just doesn't compile.
    I have searched the forums for RH for Word, with the result that I've reinstalled RH, made sure the RH add-ins are enabled, and deleted all the .dot files. Nothing is working. I went to Peter Grainge's Snippet 112 and followed the directions there--no change.
    I have found that after making my edits in the Word document, if I manually save the RTF file by going to the Word Save As directory, the edits will be saved and RH will compile the .hlp file - one time.
    Any ideas?

    Hi, I have a nearly identical problem, except my project uses .doc files instead of .rtf files. I was able to solve the "cannot save" problem by following the information below. I still have not resolved the "cannot compile" problem.
    I'm using Windows XP, RH7 Build 100, Office 2007. My project was created using Office 2003 and I did not experience any of these issues until I recently upgraded to Office 2007.
    This fix was sent to me by my group's "tech" guy.
    A number of Adobe RoboHelp for Word 7 users have reported that they cannot save changes or generate an output. The cause has been isolated to the RHComAdd.DLL being disabled.
    Check for that in Word:
    For versions up to 2003 go to Help | About | Disabled Items. If RHComAdd.DLL appears, re-enable it.
    For Word 2007, go to the Office Button | Word Options | Add-ins. Under "Manage" select Disabled Items and click Go. If RHComAdd.DLL appears, highlight it and re-enable it. (THIS IS WHAT I DID)
    Alternatively, you can re-register the DLL. Go to Start | Run and type in the following line, assuming you have installed RoboHelp to the default location.
    regsvr32 "C:\Program Files\Adobe\Adobe RoboHelp 7\RoboHELP\RHComAdd.dll"
    How does this DLL get disabled? The cause has been identified as a Word document being opened in Internet Explorer rather than in Word.
    This problem was fixed in Build 7.0.2.
    Hope this helps you. I'm still working on the compile error.
    -Shannon Mooney

  • Adobe Acrobat 11 Office Addin

    I have a recurring issue with Adobe Acrobat Pro 11.0 COM Addin causing Microsoft Word 2013 to Crash.
    I have tried to reboot
    I have tried to "repair" Acrobat Pro v 11.0
    I have uninstalled and re installed Acrobat Pro v 11.0
    I have re-imaged my PC and re installed freshly Adobe Acrobat Pro  v 11.0 and MS Office 2013
    None of the above solutions have worked. When converting a Word document to PDF using the Acrobat Ribbon It consistently causes MS Word to crash and when the restart of the application occurs the PDFMOfficeAddin.dll is disabled and even when I enable it the Acrobat Ribbon is not made available until a full PC reboot.
    I am running:
    Windows 7 Pro 64 Bit Version - Service Pack One
    MS Office 2013
    Adobe Acrobat 11.0 v 11.0.10

    [discussion moved to Creating, Editing & Exporting PDFs forum]

  • Welcome Screen Is not working

    Somehow my welcome screen got disabled as well as fast user switching. But if I go into User Account in the control panel, it tells me that the file "vrlogon.dll" is disabling the welcome screen and I need to uninstall it. But I can't figure out how to uninstall is, and I can't just directly delete the file. Any suggestions would be most helpful.

     You may try to visit this site to help u resolve you issue:
    http://www-307.ibm.com/pc/support/site.wss/document.do?sitestyle=lenovo&lndocid=MIGR-58845
    Good luck

  • Firefox crashes when trying to send email. Email goes through but my browser crashes?? Help

    Date Submitted
    bp-570d0dec-d224-406f-a5a4-8858521301231/23/20139:02 AMbp-8e8b601e-974b-42d9-a903-df01b21301231/23/20138:56 AMbp-a941624a-ab8b-4720-a95a-1c50b21301231/23/20138:49 AMbp-1f1d9ddf-b28c-4e77-a715-f804b21301231/23/20138:38 AMbp-0269099d-8af2-4a74-b75a-4e75321301231/23/20138:32 AMbp-e5c59404-c868-4e49-b9bf-5dd0021301231/23/20138:23 AMbp-a97dfbc3-df02-46a2-a23c-0d58221209189/18/20129:27 AM

    (For the record) Here is the crash report for the first Crash Report ID,
    bp-570d0dec-d224-406f-a5a4-885852130123
    https://crash-stats.mozilla.com/report/index/570d0dec-d224-406f-a5a4-885852130123
    Firefox 18.0.1 Crash Report [@ coffplgn.dll@0x3714 ]
    [[Disable or remove Add-ons|Disable any extensions]] related to Norton products (e.g., the Norton Toolbar) in the Firefox Add-ons -> Extensions list and then close Firefox and reopen it.
    This Norton Community forum thread has more information:
    *http://community.norton.com/t5/Norton-Toolbar-Norton-Identity/Norton-toolbar-update-crashes-Firefox-18/td-p/890159 Norton toolbar update crashes Firefox 18

  • Windows Media Player plugin was working fine before updating to 4 and now i've tried every single advice found in here and still can get it to work even though it is enabled on the add-ons page. Any new trick to try?

    worked fine with 3.6
    updated to 4
    tried uninstall/install plugin
    .dll downloads
    disable/enable different plugins
    next step is format?

    I seem to have fixed it by putting <div  class="clearfloat"></div> after the navigation bar?

  • Keyboard hook (probably JNI realted) problem

    I have written a C++ DLL to disable some specific function key. Then I wrote a Java application using JNI to call this DLL. The keyboard hook only works inside its function (that is from "void funx() {" to end of function "}" ). The keyboard hook no longer functions when DLL library function finish.
    The DLL works perfectly fine when I can call the DLL library function from a C++ application. The keyboard hook disable some specfic key perfectly well (with the SetWindowsHookEx API).
    Any help or suggestion are welcomed.
    Thanks in advance for reading this post.

    Hi wincoyu!
    this isn't a reply, but a question :)
    I'm working on a Java app running in bkground waiting a specific key to be pressed.Do you think i can use java methods to do this, and no DLLs ecc.?
    If not, can you give me some tips for my work?
    Thanks you, and excuse my bad english
    Marco

  • Failed to load WMSchApi.dll. Error 1114 All Operation disabled

    We currently have a large number or workstations that have imported fine, we
    can view diag info but are unable to use any remote control functionality.
    Below is an extract from the zen remote log file which shows a failed load
    off wmschapi.dll and a critical error .
    Anybody got a fix that can be automated
    Thanks
    Scott
    We're using the ZFD agent from IR4 patch which is working fine on other PCs,
    all 49 SP2 clients, W2K SP4.
    #(660)# 16:59:50 11/24/04 Normal : Loading : C:\Program
    Files\Novell\ZENworks\ZenLite.dll
    #(660)# 16:59:50 11/24/04 Normal : Loading : C:\Program
    Files\Novell\ZENworks\ZenPol32.dll
    #(660)# 16:59:50 11/24/04 Normal : ZENNDSUtil: Successfully loaded
    dependent modules...
    #(660)# 16:59:50 11/24/04 Normal : LoadZenAutilLibraryAndGetProc:
    Successfully loaded ZenAutil.dll and its dependent DLLs
    #(660)# 16:59:50 11/24/04 Normal : Console version is SP1
    #(660)# 16:59:50 11/24/04 Critical : ZenRmServer: Failed to find
    Console Version #0.6.5.1 in supportability list
    #(660)# 16:59:50 11/24/04 Warning :
    RMAudit::Auditing.cpp:RMSesstionStart() The audit log file is not found.
    #(660)# 16:59:50 11/24/04 Normal : ZENUtil:
    ZENIsWorkstationRegistered: wsDN 'CN#(660)# 16:59:50 11/24/04 Normal :
    Workstation is registered
    #(660)# 16:59:50 11/24/04 Normal : ZENNDSUtil: Attempting to read
    policies...
    #(660)# 16:59:50 11/24/04 Normal : ZENUtil:
    ZENIsWorkstationRegistered: wsDN 'CN#(660)# 16:59:50 11/24/04 Normal :
    Workstation is registered
    #(660)# 16:59:50 11/24/04 Normal : Reading workstation DN and tree
    name...
    #(660)# 16:59:50 11/24/04 Normal : workstation DN -
    CN
    #(660)# 16:59:50 11/24/04 Normal : Loading : C:\Program
    Files\Novell\ZENworks\WMSchApi.dll
    #(660)# 16:59:50 11/24/04 Critical : ZENNDSUtil: Failed to load
    WMSchApi.dll. Error: 1114
    #(660)# 16:59:50 11/24/04 Normal : Reading workstation DN and tree
    name...
    #(660)# 16:59:50 11/24/04 Normal : workstation DN -
    CN
    #(660)# 16:59:50 11/24/04 Normal : Loading : C:\Program
    Files\Novell\ZENworks\WMSchApi.dll
    #(660)# 16:59:50 11/24/04 Critical : ZENNDSUtil: Failed to load
    WMSchApi.dll. Error: 1114
    #(660)# 16:59:50 11/24/04 Normal : Neither policy settings active.
    All operations disabled.

    > We currently have a large number or workstations that have imported fine, we
    > can view diag info but are unable to use any remote control functionality.
    >
    > Below is an extract from the zen remote log file which shows a failed load
    > off wmschapi.dll and a critical error .
    >
    > Anybody got a fix that can be automated
    >
    > Thanks
    >
    > Scott
    >
    > We're using the ZFD agent from IR4 patch which is working fine on other PCs,
    > all 49 SP2 clients, W2K SP4.
    >
    >
    > #(660)# 16:59:50 11/24/04 Normal : Loading : C:\Program
    > Files\Novell\ZENworks\ZenLite.dll
    > #(660)# 16:59:50 11/24/04 Normal : Loading : C:\Program
    > Files\Novell\ZENworks\ZenPol32.dll
    > #(660)# 16:59:50 11/24/04 Normal : ZENNDSUtil: Successfully loaded
    > dependent modules...
    > #(660)# 16:59:50 11/24/04 Normal : LoadZenAutilLibraryAndGetProc:
    > Successfully loaded ZenAutil.dll and its dependent DLLs
    > #(660)# 16:59:50 11/24/04 Normal : Console version is SP1
    > #(660)# 16:59:50 11/24/04 Critical : ZenRmServer: Failed to find
    > Console Version #0.6.5.1 in supportability list
    > #(660)# 16:59:50 11/24/04 Warning :
    > RMAudit::Auditing.cpp:RMSesstionStart() The audit log file is not found.
    > #(660)# 16:59:50 11/24/04 Normal : ZENUtil:
    > ZENIsWorkstationRegistered: wsDN 'CN#(660)# 16:59:50 11/24/04 Normal :
    > Workstation is registered
    > #(660)# 16:59:50 11/24/04 Normal : ZENNDSUtil: Attempting to read
    > policies...
    > #(660)# 16:59:50 11/24/04 Normal : ZENUtil:
    > ZENIsWorkstationRegistered: wsDN 'CN#(660)# 16:59:50 11/24/04 Normal :
    > Workstation is registered
    > #(660)# 16:59:50 11/24/04 Normal : Reading workstation DN and tree
    > name...
    > #(660)# 16:59:50 11/24/04 Normal : workstation DN -
    > CN
    > #(660)# 16:59:50 11/24/04 Normal : Loading : C:\Program
    > Files\Novell\ZENworks\WMSchApi.dll
    > #(660)# 16:59:50 11/24/04 Critical : ZENNDSUtil: Failed to load
    > WMSchApi.dll. Error: 1114
    > #(660)# 16:59:50 11/24/04 Normal : Reading workstation DN and tree
    > name...
    > #(660)# 16:59:50 11/24/04 Normal : workstation DN -
    > CN
    > #(660)# 16:59:50 11/24/04 Normal : Loading : C:\Program
    > Files\Novell\ZENworks\WMSchApi.dll
    > #(660)# 16:59:50 11/24/04 Critical : ZENNDSUtil: Failed to load
    > WMSchApi.dll. Error: 1114
    > #(660)# 16:59:50 11/24/04 Normal : Neither policy settings active.
    > All operations disabled.
    >
    >
    Just to support the previous person who also replied to this question. We
    had the same problem and it was the path. Someone pushed an app that
    replaced the path instead of appending to it and it killed the zen remote
    agent. Replacing the path to "c:\program files\novell\zenworks" path worked.
    Thanks much for the person who first suggested this.
    Neal...

  • LabVIEW Mac prompting me for dll's in conditional disable structure

    I'm using LabVIEW 2014 Mac and I have several conditional disable structures which call user32.dll but only in the Default case whereas they do nothing in the TARGET_TYPE=Mac case.  When loading my source code in LV Mac I get prompted to find "user32" and I have to Ignore All.  Afterwords the code is open with no errors.
    It seems to be a bug that this prompt is occuring?  Is there a way to supress it?
    Solved!
    Go to Solution.

    Hello Thomas,
    It sounds like the user32.dll is being loaded along with your LabVIEW code on launch instead of being loaded when called. What you can do is encapsulate the function that is making the user32.dll call in a subVI (if you haven't already done this), right-click the subVI and go to Call Setup. From this window, choose Load and Retain on First Call. This should make sure the user32.dll is only loaded when you reach the Default case in your Conditional Disable structure, and not search for it every time the code is loaded into LabVIEW.
    Hope this helps,
    Siana A.
    Application Engineering
    National Instruments

  • STSUPLD.DLL not recognizing as an add-on; upload multiple documents disabled

    On my client system, Windows XP, Office 2007 and IE8 is installed. It is a 32 bit system. On the Sharepoint site, "upload multiple document" feature is disabled. After searching for the cause, I came to know about the STSUPLD add-on that needs
    to be enabled otherwise it remains greyed out. So I copied the DLL file to C:/.../Office12/STSUPLD.DLL
    IE does not detect any add-on when I start a new browser session. Between copying the DLL, and starting a new browser session, followed by checking Tools-->manage add-ons, am I missing an important step? (like installing...etc.)
    Thanks

    easy way is, if you can install the Office client on the server, the control will be available.
    also check this post for further detail:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/1a5af332-ed21-41ee-bf64-9122a7439623/sharepoint-not-activating-stsuplddll-upload-mutliple-documents-greyed-out?forum=sharepointgeneralprevious
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

Maybe you are looking for

  • Can not get data in 2LIS_13_VDITM in R/3 - 0 posts in RSA3

    Dear Collegues, I have a big problem. I have deleted the setup tables for 2LIS_13_VDITM and VDHDR to add a field to 2LIS_13_VDITM. I added the field PMATN througt LBWE (Maintenance). Then I tried filling the setup table again using OLI7BW, spesifying

  • 5.1 AC3 Surround Output

    How can I get my MacPro to output the same -format- (PCM Dolby Surround) signal that comes out of my stand-alone JVC DVD Player. On my old G4 I have a M-Audio card that does this. But I was hoping that the MacPro would just do this out of one of its

  • Mouse Shadow

    I'm recording in 1024 x 768 mode. When I convert the SWF to an AVI file, there is a mouse shadow on the screen and sometimes a "marking" from the mouse when typing in an input field. Is there a way to get rid of this?

  • SCOM 2012 R2 - Tasks not running and Discovery never finishes

    Hi all, I'm having some really weird issues with a new SCOM 2012R2 install. The issue I first noticed was none of the tasks on the right hand side of the SCOM console that run on a monitored server will complete. The window opens and will just have t

  • Vram HD4000 before upgrade ram macbook pro

    Hello! Today I upgraded the ram in my macbook pro 15 "late 2012 (i7 2.3 ghz) bringing it to 16GB. Ram is Samsung 1600MHz. Vram I have noticed, however, that the HD4000 is not increased to 768MB (as it should be 4gb ram = 386mb vram, 8gb ram = 512mb v