Why do I get inpage operation error loading EngSetupResDll using GPIB V2.1

I'm trying to upgrade our customized GPIB driver specifications for instrument control. We are currently using V1.7 and have several devices defined with unique addresses and settings. We ship the registry settings for the instruments as part of our software distribution so I am trying to do a clean install of the V2.1 drivers to export the registry settings after I configure the driver.
When I try to start the installation of the V2.1 drivers on a clean notebook or desktop machine it won't launch the setup program from the main menu form. I get a message - 'error performing inpage operation while attempting to load EngSetupResDLL.DLL' and the setup program doesn't start. Why does this occur
We utilize the PCI-GPIB cards on desktop computers and PCMCIA-GPIB cards on the notebook computers. The machines where this occur do not have any cards installed at the time of the error. Are they needed to install the driver?
Thanks for any answers you can provide!
- Bob Boyd

Bob Boyd,
You do not need the hardware in place at the time of driver installation. Are you installing this NI-488.2 from a CD did you download a copy from our website?
I would try to download a fresh copy of the driver (perhaps even version 2.2) from our website and try it again.
It may be a problem with the microsoft installer program that windows installers have to use. You can update your version of the microsoft installer by visiting there website and searching for the latest version (2.0 I believe). Let us know if this helps!
Craig H.
NI Applications Engineering

Similar Messages

  • Why do i get c2282 compile errors on examples using c++?

    I just installed the NI board and can communicate with equipment using LAbView but when I compile an example in C++ I get error C2282 from decl-32.h missing ','?

    Hello!
    Thanks for contacting National Instruments.
    I'm going to need to get some more information from you in order to be able to help you. First off, which example is it you are trying to compile? Also, what kind of NI board are you using? From the sounds of the error, it sounds like whatever program you are using is not including all the correct libraries and header files. Be sure to include all the correct library paths and include paths in your program.
    Regards,
    Steven B.
    Applications Engineering
    National Instruments

  • Why do I get an 800a0d5d error on a delete?

    Hi,
    I am using SQL Server, and my site is defined as ASP Javascript.
    I add and update this table fine, but when I go to delete a record, I get:
    ADODB.Command error '800a0d5d'
    Application uses a value of the wrong type for the  current operation.
    /admin/consumer/condeldet.asp, line 27
    I'm using DW's delete function. What could I be doing wrong? I'm not sure where to look.
    Here is the code with line 27 in bold:
    <%@LANGUAGE="JAVASCRIPT" CODEPAGE="65001"%>
    <!--#include virtual="/Connections/PA.asp" -->
    <%
    // *** Edit Operations: declare variables
    // set the form action variable
    var MM_editAction = Request.ServerVariables("SCRIPT_NAME");
    if (Request.QueryString) {
      MM_editAction += "?" + Server.HTMLEncode(Request.QueryString);
    // boolean to abort record edit
    var MM_abortEdit = false;
    %>
    <%
    // *** Delete Record: construct a sql delete statement and execute it
    if (String(Request("MM_delete")) == "form1" &&
        String(Request("MM_recordId")) != "undefined") {
      if (!MM_abortEdit) {
        // execute the delete
        var MM_editCmd = Server.CreateObject ("ADODB.Command");
        MM_editCmd.ActiveConnection = MM_PA_STRING;
        MM_editCmd.CommandText = "DELETE FROM redleader.Consumer WHERE Consumer_ID = ?"
        MM_editCmd.Prepared = true;
       MM_editCmd.Parameters.Append(MM_editCmd.CreateParameter("param1", 5, 1, -1, Request.Form("MM_recordId"))); // adDouble
        MM_editCmd.Execute();
        MM_editCmd.ActiveConnection.Close();
        // append the query string to the redirect URL
        var MM_editRedirectUrl = "/admin/success.asp";
        if (MM_editRedirectUrl && Request.QueryString && Request.QueryString.Count > 0) {
          MM_editRedirectUrl += ((MM_editRedirectUrl.indexOf('?') == -1) ? "?" : "&") + Request.QueryString;
        Response.Redirect(MM_editRedirectUrl)
    %>
    <%
    // *** Restrict Access To Page: Grant or deny access to this page
    var MM_authorizedUsers="y";
    var MM_authFailedURL="/admin/loginerr.asp";
    var MM_grantAccess=false;
    if (String(Session("MM_Username")) != "undefined") {
      if (false || (String(Session("MM_UserAuthorization"))=="") || (MM_authorizedUsers.indexOf(String(Session("MM_UserAuthorization"))) >=0)) {
        MM_grantAccess = true;
    if (!MM_grantAccess) {
      var MM_qsChar = "?";
      if (MM_authFailedURL.indexOf("?") >= 0) MM_qsChar = "&";
      var MM_referrer = Request.ServerVariables("URL");
      if (String(Request.QueryString()).length > 0) MM_referrer = MM_referrer + "?" + String(Request.QueryString());
      MM_authFailedURL = MM_authFailedURL + MM_qsChar + "accessdenied=" + Server.URLEncode(MM_referrer);
      Response.Redirect(MM_authFailedURL);
    %>
    <%
    var Recordset1__MMColParam = "1";
    if (String(Request.QueryString("Consumer_ID")) != "undefined" &&
        String(Request.QueryString("Consumer_ID")) != "") {
      Recordset1__MMColParam = String(Request.QueryString("Consumer_ID"));
    %>
    <%
    var Recordset1_cmd = Server.CreateObject ("ADODB.Command");
    Recordset1_cmd.ActiveConnection = MM_PA_STRING;
    Recordset1_cmd.CommandText = "SELECT * FROM redleader.Consumer WHERE Consumer_ID = ?";
    Recordset1_cmd.Prepared = true;
    Recordset1_cmd.Parameters.Append(Recordset1_cmd.CreateParameter("param1", 5, 1, -1, Recordset1__MMColParam)); // adDouble
    var Recordset1 = Recordset1_cmd.Execute();
    var Recordset1_numRows = 0;
    %>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html lang="en"><!-- InstanceBegin template="/Templates/main2col.dwt" codeOutsideHTMLIsLocked="false" -->
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <!-- InstanceBeginEditable name="doctitle" -->
    <title>Consumer Directed Choices</title>
    <!-- InstanceEndEditable -->
    <link href="/main2col.css" rel="stylesheet" type="text/css">
    <link href="/allshared.css" rel="stylesheet" type="text/css">
    <link rel="shortcut icon" href="favicon.ico">
    <!--[if IE]>
    <link rel="stylesheet" type="text/css" href="iehacks.css" />
    <![endif]-->
    <!--[if IE 7]>
    <style type="text/css">
    #primaryContent {
    zoom: 1;
    width: 684px;
        /* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
    </style>
    <![endif]-->
    </head>
    <body class="twoColLayout">
    <div id="container">
    <div id="header"><img src="/images/logolong.jpg" alt="logo" width="685" height="150"><a href="#MainContent"><img src="/images/smallpics/trans.gif" alt="Skip Navigation" width="1" height="1" border="0"></a>
    <a href="#submenu"><img src="/images/smallpics/trans.gif" alt="Go to submenu" width="1" height="1" border="0"></a>
    <ul id="navtop">
    <li id="nav_pgm"><a href="/pgms.asp">Programs, Services</a></li>
    <li id="nav_con"><a href="/contactus.asp">Contact us</a></li>
    <li id="nav_emp"><a href="/empopps.asp">Employment</a></li>
    <li id="nav_don"><a href="/donate.asp">Donations</a></li>
    </ul>
    <!-- end #header --></div>
    <ul id="navleft">
    <li id="nav_hom"><a href="/index.asp">Home</a></li>
    <li id="nav_do"><a href="/whatwedo.asp">  Who We Are</a></li>
    <li id="nav_cabout"><a href="/consumers/login.asp">Current Consumers</a></li>
    <li id="nav_pabout"><a href="/pa/about.asp">Current PAs</a></li>
    <li id="nav_cal"><a href="http://www.calendarwiz.com/calendars/calendar.php?crd=cdchoices&" target="_blank">Calendar</a></li>
    <li id="nav_pro"><a href="/profiles/profiles.asp">Profiles</a></li>
    <li id="nav_news"><a href="/news.asp">CDC in the News</a> </li>
    <li id="nav_lnk"><a href="/links.asp">Links</a></li>
    <li id="nav_blank"><a href="/message.asp"> Message from CEO</a></li>
    <!-- InstanceBeginEditable name="OptionalMenuPicture" --> <a name="submenu" id="MainContent2"></a>
    <li class="c2">
    OptionalMenuPicture<!-- InstanceEndEditable -->
      </ul>
      <div id="primaryContent"><a name="MainContent" id="MainContent"></a>
      <!-- InstanceBeginEditable name="primaryContent" -->
      <h1>Delete a Consumer</h1>
      <form ACTION="<%=MM_editAction%>" METHOD="POST" id="form1" name="form1">
        <p><%=(Recordset1.Fields.Item("FirstName").Value)%> <%=(Recordset1.Fields.Item("LastName").Value)%></p>
        <p><strong>Gender:</strong> <%=(Recordset1.Fields.Item("Gender").Value)%></p>
        <p> </p>
        <p><%=(Recordset1.Fields.Item("NearbyCrossStreets").Value)%></p>
        <p><%=(Recordset1.Fields.Item("City").Value)%>, <%=(Recordset1.Fields.Item("State").Value)%>  <%=(Recordset1.Fields.Item("ZipCode").Value)%></p>
        <p> </p>
        <table width="500" border="1" cellpadding="2" cellspacing="0" class="rosebox">
          <tr>
            <td width="69" valign="top" class="textbold"><div align="right">CDC Ext:</div></td>
            <td width="417"><%=(Recordset1.Fields.Item("CDCExtOrDID").Value)%></td>
          </tr>
          <tr>
            <td valign="top" class="textbold"><div align="right"><strong>County:</strong></div></td>
            <td><%=(Recordset1.Fields.Item("AddressCounty").Value)%></td>
          </tr>
        </table>
        <p> </p>
        <p>Be careful! This cannot be undone!</p>
        <p> </p>
        <p>
          <label>
          <input type="submit" name="delbut" id="delbut" value="Delete" />
          </label>
        </p>
        <input type="hidden" name="MM_delete" value="form1">
        <input type="hidden" name="MM_recordId" value="<%= Recordset1.Fields.Item("Consumer_ID").Value %>">
      </form>
      <!-- InstanceEndEditable -->  </div>
    <!-- end #container --></div>
    </body>
    <!-- InstanceEnd --></html>
    <%
    Recordset1.Close();
    %>
    Any direction would be greatly appreciated!!!

    Certainly you would think that and I would too, but I've seen enough reports on here describing this scenario that were eventually fixed by reformating the card to give me pause. Don't claim to understand it, or guarantee that it will work but it's a very quick fix to try.
    Regards
    TD

  • How do I install the lastest Ver? Why do I get a Windows error message?

    I have Acrobat Pro 1.1.8. The Help menu command Check for Updates says NO UPDATES AVAILABLE.
    A tray message in Windows 7 (32 bit) says to SOLVE A PROBLEM WITH ADOBE ACROBAT... and it takes me to my download page at Adobe where Acrobat Pro versions 11.0.01 through 11.0.05 are listed.
    When I try to install any of the newer versions I get an error msg saying "...upgrade patch may update a different version of the program..."
    What is the latest Acrobat Pro Version? How do I install it? Why do I get the Window error message?

    Please try to install the Acrobat update manually from the following page:
    Acrobat X: http://www.adobe.com/support/downloads/detail.jsp?ftpID=5641 (Acrobat X Pro 10.1.8)
    Acrobat XI : http://www.adobe.com/support/downloads/detail.jsp?ftpID=5643 (Acrobat XI Pro 11.0.0.4) and then
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=5673 (Acrobat XI Pro 11.0.0.5)

  • Why do I get a "script error" message from Adobe flash player?  It is installed as a part of my browser.IE 11

    Why do I get a "script error"  from flash player when it is not installed separately?  It is part of my browser--IE 11

    Same error message, I disabled tab mix and made sure I only have the newest version of Java, restarted firefox, now it seems to be fine no error yet on Pogo games or pictures upload to ebay which were the biggest problems besides hanging. I had also had disabled AVG secure search yesterday but that did not solve the issue. Now I will try to add back in AVG search...I have very few adds ons, also the note embedded about re- installing a toolbar went away, my old one did not work with FF4, so I installed Yahoo toolbar but the message still did not go away until I applied this fix. Hopes this helps someone..

  • Why am I getting a mf error domain 1032 message and when I put my password in it keeps coming up?

    Why am I getting a mf error domain 1032 message when trying to get my email?  I put password in and it keeps going back to error message?

    Try what Google threw out:
    Tap Settings > Mail, Contacts, Calendar and delete your email account.
    Then tap Settings > Safari > and Tap Clear History and Clear Cookies and Data.
    Now tap Settings > Mail, Contacts, Calendar and re-enter your email account details.

  • Why am I getting a -50 error when moving music to my iTouch?

    Why am I getting a -50 error when moving music to my iTouch?

    As Jim as stated, you do not want the OS, video app, and media all competing for hard drive access.
    It may have worked before, but that doesn't mean will work henceforth, as you have learned.
    A FW800 portable drive will cost about $75.00.

  • Why do I get Publish Failed Error Message when trying to publish a project to SWF. I am using Captivate 6 (32 Bit) Version 6.0.1.240. I have tried clearing the Cache and renaming my Preferences folder

    Why do I get Publish Failed Error Message when trying to publish a project to SWF. I am using Captivate 6 (32 Bit) Version 6.0.1.240. I have tried clearing the Cache and renaming my Preferences folder

    Try the troubleshooting tips here:
    http://www.infosemantics.com.au/adobe-captivate-troubleshooting/basic-troubleshooting-tech niques
    You may have something in your project on one of the slides that is tripping up the publishing process.

  • I keep getting this message: error loading C:\program~1\common~1\system\Sysmenu.dll

    I keep getting this message: error loading C:\program~1\common~1\system\Sysmenu.dll. How do I fix this and what does it mean

    Hi,
    Perhaps these will help:
    http://answers.microsoft.com/en-us/windows/forum/windows8_1-performance/systemsysmenudll-the-specified-module-could-not-be/809f79e3-db5e-455b-aebb-4c0f66a8babc
    https://social.technet.microsoft.com/Forums/windows/en-US/bb01892e-497b-4e2a-a2cf-8b8b480f18bf/cprogra1common1systemsysmenudll?forum=w7itprogeneral
    If not, I suggest posting your question over here (Participate -> Ask a Question):
    Windows Forum on Microsoft Answers
    Good luck.
    Don't retire TechNet! -
    (Don't give up yet - 13,225+ strong and growing)

  • Why am I getting the following error message? You can't open the application "Microsoft Word" because PowerPC applications are no longer supported.  This is new...

    Why am I getting the following error message? "You can’t open the application “Microsoft Word” because PowerPC applications are no longer supported."  I never used to have a proble!

    Only Office for Mac 2008 and 2011 will run on Mavericks. Microsoft support for the former package ended in April 2013. If you do not want to spend the money, you might download and try the donation-ware (free) LibreOffice Suite. No ribbon bar crap. Supports about any document created on Windows.

  • Why do I get an unexpected error occured when I try to save a form as a pdf file?

    Why do I get an unexpected error occured when I try to save a form as a pdf file?

    Hi MsSunnyD,
    Try uninstalling Adobe Acrobat using the Adobe cleaner Tool  http://labs.adobe.com/downloads/acrobatcleaner.html
    Then, try installing Adobe Reader XI. That should resolve the problem.
    Regards,
    Ajlan Huda.

  • Why do i get an "unknown error" when entering my apple id

    Why am I getting an "unknown error" message when I am trying to log into itunes with my apple id & password. Its a second mac pro and I was logged in and then logged out, now I can not log back in.. strange

    Have you tried to download anything else?

  • Why am I getting the 404 error when on pinterest?

    Why am I getting the 404 error when on pinterest?  This is happening on my iMac and macbook.
    I have tried to clear my history, tried in safari and in firefox, enabled and disabled Javascript, and allowed 3rd party sites.
    Please help!!

    No you are not alone. I tried to create an apple ID and then access the app store and itunes and got the same error code. Spoke with tech support for over 45 minutes and we tried everything. Tech support seemed to think that it had something to do with credit card registration. Suggested that I use a different credit card. I modified my account settings with a different card and still had the same errors. At this time I have no confidence that Apple has any idea what the problem is.

  • Why do I get the message "error connecting to acrobat"?

    Why am I getting the message "error connecting to the acrobat..." when I try to open a pdf file from the internet? I have the adobe reader installed on my tablet. This is something that just started happening. I did not have this problem before. I hope that someone can help.

    Hi,
    Thanks for writing to us. Are you able to view the file after this message? Is this message coming every time when you are trying to open a file from internet? If possible please share the file or link from where you are trying to open this file with us on  [email protected]  so that we can resolve the issue you are facing.
    Thanks,
    Shefali

  • Why do I get iPhoto not responding after I used migration from my old G4 powerbook to my newer macbook pro?

    why do I get iPhoto not responding after I used migration from my old G4 powerbook to my newer macbook pro?

    why do I get iPhoto not responding after I used migration from my old G4 powerbook to my newer macbook pro?

Maybe you are looking for