Run-time Error 10459 - Can't Load NIDAQ DLL

Hi,
I'm using VB6 and Measurement Studio 6 with NIDAQ 7.4 and a PCI-6013 device.
I've written an application which accesses the daq card, but also will open another seperate VB6 application which needs to access the daq card.  Before the first application accesses the daq card, it resets the daq card using the cwdaqtools control with the following command:  CWDAQTools1.ResetDAQDevice (1). 
I then unload the form which referenced the daq card, and then open the second application.  When the second application opens, I get the attached error message: #10459 was generated by cwdaq.  The NI-DAQ DLL could not be called due to an interface error.
This doesn't happen when I run the first application from VB6 in debug mode.  It also doesn't happen if I run the compiled applications with VB6 just open. 
Can anyone shed some light or offer any suggestions as to what is going on here, and how to solve the issue.
Additionally, due to the fact that I'm using Measurement Studio 6 I need to be using the traditional daq drivers.  NiDAQ 7.5 doesn't have the traditional daq driver, so I'm forced to use NiDAQ 7.4.
Thanks for any help.
Regards,
Max

Hi Marni,
I've visited the link as suggested.  Here are the results based on the suggested solutions in order:
1.) I'm fixed in the order in which the applications can be opened, as one application is used to open the second.
2.) I'm working with the latest version of NI-DAQ (7.5 doesn't work with Measurement Studio 6)
3.) Target system is using the latest version of NI-DAQ.
4.) Downloaded palBase and this worked.  However, since this application is designed as a distributable application, it doesn't seem plausible to ask the end user to work with palBase, especially if the end user is not comfortable working with computers.  Is there another way to accomplish the same effect programatically which would be invisible to the end user?
Regards,
Max

Similar Messages

  • I am running Mac OS 10.10 and trying to run Illustrator CS4. CS4 says it needs Java SE 6 Run Time, but I can not load that into OS 10.10. What to do?

    I am running Mac OS 10.10 and trying to run Illustrator CS4. CS4 says it needs Java SE 6 Run Time, but I can not load that into OS 10.10. What to do?

    Jacob,
    You are genius! I search all over the net and had a long chat with Apple without success. 30 minutes after posting the Abobe Illustrator forum, I have a link that works!! Many thanks.
    Jim

  • I get aq run time error when trying to load the latest version of iTunes. Help.

    I get a run time error when attempting to install the latest version of iTunes & now cannot access iTunes. Can anyone help me?

    Hi jalbany,
    Thanks for using Apple Support Communities.  This article has steps you can take for the error you're seeing:
    iTunes 11.1.4 for Windows: Unable to install or open
    http://support.apple.com/kb/TS5376
    Cheers,
    - Ari

  • Run time error while creating sales order

    hi all,
    im working on ECC 4.7. normally when i create a sales order (VA01) and use incompletion log, it shows no errors. but when i start to save the same order . it shows a RUN TIME ERROR of ABAP . so plz help me to solve out this error
    thanks\

    Hi Tarun,
    When you get a run time error, you can see the error analysis on the left hand side. Check what the analysis is saying and you may need an ABAPer to find out the exact reason for the dump. I am just guessing it could be due to number range.. just a guess.
    Regards,
    Raghav

  • How to debug  a run time error encountered while executing ZFunction Module

    Hi all,
    My requirement is to create a ZFunction Module that Generated a sales order
    for multiple line items and works for both Variant Configurable material and a Normal Material.
    I am using BAPI_SLSTRANSACT_CREATEMULTI in my Zfunction Module to create a
    Sales order
    My ZFunction Module works well if I give normal material as input.
    It also works well and generates a sales order if I give all Variant Configurable materials as input.
    But if I give both Variant Configurable material and a normal material it throws a run time error.
    Can some one tell me what is wrong? can some one suggest me how to debug this run time error
    Termination occurred in the ABAP program "SAPLCRM_CONFIG_OW" - in                            
    "CONFIG_TO_CBASE".                                                                          
    The main program was "RS_TESTFRAME_CALL ".                                                                               
    In the source code you have the termination point in line 63
    of the (Include) program "LCRM_CONFIG_OWF02".                                                
    Source Code Extract                                                                               
    Line SourceCde                                                                               
    |   33|                                       LT_CUXI_CUPRT                                       
    |   34|                                       LT_CUXI_CUVAL                                       
    |   35|                                       LT_CUXI_CUVK                                        
    |   36|                                       LS_CUXI_CUCFG.                                      
    37
    |   38|  PERFORM CREATE_PRICING_CSTIC USING IS_CONFIG-CUCFG-CFGINFO.                              
    39
    |   40|* set config to cbase                                                                      
    |   41|  CALL FUNCTION 'COM_CUXI_SET_SINGLE_CFG'                                                  
    |   42|       EXPORTING                                                                           
    |   43|            I_CFG_HEADER          = LS_CUXI_CUCFG                                          
    |   44|            I_ROOT_INSTANCE       = CV_INT_OBJ_NO                                          
    |   45|            I_LOGSYS              = LV_LOGSYS                                              
    |   46|       IMPORTING                                                                           
    |   47|            E_ROOT_INSTANCE       = CV_INT_OBJ_NO                                          
    |   48|       TABLES                                                                               
    |   49|            I_TAB_INSTANCES       = LT_CUXI_CUINS                                          
    |   50|            I_TAB_PART_OF         = LT_CUXI_CUPRT                                          
    |   51|            I_TAB_VALUES          = LT_CUXI_CUVAL                                          
    |   52|            I_TAB_VAR_KEYS        = LT_CUXI_CUVK                                           
    |   53|            I_TAB_RESTRICTIONS    = LT_CUXI_CURES                                          
    |   54|       EXCEPTIONS                                                                          
    |   55|            INVALID_INSTANCE      = 1                                                      
    |   56|            INTERNAL_ERROR        = 2                                                     
    57
    OTHERS                = 3.                                                        58
    |   59|  IF SY-SUBRC <> 0.                                                        
    |   60|    if sy-msgno is initial.                                                      
    |   61|      MESSAGE X010 WITH 'COM_CUXI_SET_SINGLE_CFG'.
    |   62|    else.                                                                             
    |>>>>>|      MESSAGE ID SY-MSGID TYPE 'X' NUMBER SY-MSGNO
    |   64|              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    |   65|    endif.                                                                               
    |   66|  ENDIF.                                                                               
    67
    |   68|ENDFORM.                               " CONFIG_TO_CBASE                                   

    Hey Amit...
    Can I Create a Sales order for VC and Non VC items using BAPI_SLSTRANSACT_CREATEMULTI
    Is it a limitation for BAPI_SLSTRANSACT_CREATEMULTI
    I am trying to create a Sales Order using a Zprogram. I have used BAPI_SLSTRANSACT_CREATEMULTI. If I give the input as Normal material I am able to generate a sale order. If I give the input as VC material I am able to generate a sales order. But if I give both VC and Normal material as input, I get a run time error as follows.
    Is it a limitation for BAPI_SLSTRANSACT_CREATEMULTI that we cannot create a sales order with both VC and Non-VC items or am I missing some data which I need to pass when I give both VC and Non VC items? I get this error only for my Zprogram. But if I try to create an order on screen manually I donu2019t get any error. This happens only if I create an order with my Zprogram.
    Some one please help me u2026I am just stuggling to get this doneu2026
    I dint find any posts that gives me information about this error.
    CUX1 034 u201CNo root instance found in header datau201D                                                                               
    In the source code you have the termination point in line 63                                   of the (Include) program "LCRM_CONFIG_OWF02".

  • Run-time error '5240'

    Hello,
    We have a problem with a user when he tries to open a favorite workbook in Bex Analyzer.
    We work with BW 3.1.
    I execute: Open + Workbook + Favorites and the next message is displayed:
    Run-time error '5240' Can not use a node of type leaf *** parent.
    Coud anybody help me?
    Thanks.

    Hi,
    i am not sure about this error, but try saving the BEx reports by BOOKMARK tab.
    Regards
    Daya Sagar

  • Run Time Error 521 in WAD

    All
    I was hoping someone could help.
    I am using WAD accessed through BEx (Excel V10)
    BW Machine is accessed through SAP GUI 6.20 via Citrix Program Neighborhood V7.1.
    The problem is that sometimes when I am cutting and pasting HTML from one Web Template to another, I get a system crash..... <b>Run-time error '521' Can't open clipboard.</b>
    I don't get this error anywhere else. Unfortunately I am the only BW bod who accessed WAD in this way.
    I'm not sure really if this is a WAD problem or a Citrix problem. Anybody got any ideas how to fix this.
    Regards
    Simon

    We are talking about a small .dll.
    No need of installing the OS again. I will say, ask your Windows administrator to look for it. He might look for it on MSDN or may be he will contact Microsoft for it.
    Most probably it might be 10 minutes job.
    Why don't You look for runtime error 432 in microsoft(MSDN) website.
    and even if you reinstall Windows XP, I guess it won't resolve the issue. there are couple of issues I heard with XP and SAP applications.
    Tnks
    Message was edited by:
            Keerti Vemulapalli

  • Run-time error '521'

    Hi All,
    We are getting the run-time error '521' can't open clipboard when copying members from the
    current view in the Citrix environment.
    Please advice.
    Thanks.
    Regards,
    Raghu

    Hi All,
    Please advice me on this error.
    Thanks.
    Regards,
    Raghu

  • I can't get my itunes to update it keeps giving me a run time error but every time it tells me to uninstall and reinstall I keep getting the same error.

    I keep trying to update itunes but it gives me a run time error and tells me to uninstall and then reinstall. It is driving me crazy. Any suggestions?

    Hi, I had this problem too and Barton (bless you) has said
    1. go to C:\ programe files(x86) itunes & c:programesfiles/itunes. look for all .dll iles
    2. QT movie.DLL ( I didn't have this file) and all .dll files. and move to the desk top.
    I did any file that had a .dll after it.
    3. reboot your computer.
    4. Uninstall Itunes and anything that is related with Apple. eg Quicktime,Bonjour. what ever says Apple is the publisher.
    5. Reboot computer
    6. go to Itunes and down load again.
    This fixed my computer and it took me 3 days until a remote assistant guys that I used for another problem told me to go on community Itunes.
    I tried a few of the suggestions but had trouble following but this is pretty simple even for me.
    Good luck

  • Run-time error '429':Active X component can not create an object

    Hi Folks,
    I am using some VBA code to run logic in BPC for Excel. When i try to click on VBA button, It's giving the below error.However when i am trying to execute same from server it is working fine. Accessing from BPC client only we are facing this problem.
    Code have no issues. Is there any specific thing need to mentioned in client when we use VBA programming? Basically we used the VBA program to create the id's in BPC for Excel. So that it will automatically created on fly. Testing was fine interms of working in Server.
    " Run-time error '429':Active X component can not create an object ."

    Hi,
    Are you trying to add a member into the dimension from excel? As you said that this has been already tested in the server and is working fine, I believe, you have taken care of everything.
    Now, coming to the point, when you are adding a member in the membersheet, you need to process the dimension. This requires the admin rights. So, please check the task profile of the user ID, with which you are trying from your system. This user ID should be the primary admin.
    Hope this helps.
    Additionally, can you please elaborate on the steps on what you followed for adding a member from the excel directly?

  • Trying to upgrade my i-phone 3 operating system to ios-5.  The program seems to download fine, but at the end it says network run time error and then I have to cancel it out and try again.  Tried 5 times and I can't upgrade the system.  help?

    I am trying to upgrade the operating system on my i-phone 3 to ios-5.  I download the program and it runs and downloads.  When almost finished, an error occurs that says Network run time error.  This cancels out the download.  I have tried 5 times with the sdame result.  Can anyone help?  Thanks

    This is asked and answered frequently... a simple search of the forums would have revealed that disabling any Anti-Virus and Firewall software on the computer prior to downloading will rectify the issue.

  • After updating my itunes per the update notice I received a run-time error R6034 message. Now I am unable to use iTunes. What can I do to repair this error?

    After updating my iTunes per the update notice I received a run-time error R6034. Now I am unable to access iTunes at all.
    Can someone tell me how to correct this problem?

    Uninstall your existing copy of iTunes. Delete any copies of the iTunesSetup.exe (or iTunes64Setup.exe) installer files from your downloads areas for your web browsers and download a fresh copy of the iTunes installer from the Apple website:
    http://www.apple.com/itunes/download/
    (The current build of the 11.1.4.62 installer was changed a few days ago, which fixed the bulk of the reports of MSVCR80.dll/R6034/APSDaemon.exe/Error-7/AMDS-could-not-start trouble ... but the build number on the installer was not changed. So we're trying to make sure you do the reinstall using a "new good" 11.1.4.62 installer instead of an "old bad".)
    Does the install with the new copy of the installer go through properly? If so, does that clear up the error message?
    If you still have the same error messages cropping up, then try the procedures from the following user tip:
    Troubleshooting issues with iTunes for Windows updates

  • Run time error when loading external dimensions in Dev Studio

    Hi,
    I'm getting a run-time error when I try to load externally managed dimensions in Dev Studio using "Discover" button. The dimensions appear in the state folder so they got loaded fine but not sure why they are not being loaded into dev studio.

    Your question relates to the Endeca Commerce product(s), and would be better asked in this forum: Technical Questions .

  • TS1277 I recently allowed an iTune update to be downloaded to my PC.  SInce then I'm getting a Run time Error "R6034 An application has made an attempt to load the C runtime library incorrectly."  THen I cannot run iTunes.

    I recently allowed an iTune update to be downloaded to my PC.  SInce then I'm getting a Run time Error "R6034 An application has made an attempt to load the C runtime library incorrectly."  Then I cannot run iTunes.  I tried "fixing" it, "Un-installing and re-installing iTunes.  Still getting the same message and not able to run iTunes.

    Follow the directions of tt2 in https://discussions.apple.com/thread/5822086 and note to run as admin

  • XL Reporter Run-time Error '429' ActiveX component can't create object

    Hi Everyone,
    When trying to install XL Reporter on a Windows 2003 Server SP2 machine getting the following Error:
    XL Reporter
    Run-time error '429':
    ActiveX component can't create object.
    Did anyone get this error? Please advise of any steps we can try to resolve.
    Kind Regards,
    Kafil

    Dear Friend,
                 I had described the problem to our technical support team, and they replied as follows u2013
    They solved the Script related error by several stages.
    They checked the machine for any mal-ware existence by the tool provided by Microsoft (MS Mal-ware remover).
    Then they tried by installing the following patches from Microsoft u2013
    http://support.microsoft.com/kb/949140
    Windows Script 5.7 for Windows XP
    http://www.microsoft.com/downloads/details.aspx?familyid=887fce82-e3f5-4289-a5e3-6cbb818623aa&displaylang=en
    Windows Script 5.6 for Windows Server 2003
    http://www.microsoft.com/downloads/details.aspx?FamilyId=C717D943-7E4B-4622-86EB-95A22B832CAA&displaylang=en
    Windows Script 5.6 for Windows XP and Windows 2000
    The internal matter to this problem was about the following DLL and its version u2013
    C:\WINDOWS\system32
    vbscript.dll
    5.5.0.8820
    Desired
    5.6.0.8820
    Check, if the information helps you.

Maybe you are looking for