Dlls working fine in LabVIEW 6.1 dont do so in LabVIEW 7.0

We are using the following dlls from Microstar Labs for one of our
Microstar DSP boards :
a. DAPIO32.dll : DAPcell client I/O library
b. Diostub.dll
We use these in the main Vi called DAPControl.vi
We currently run this VI in LV 6.1 - its working fine for the last several months. When we open this VI in LV 7.0 the VI loads (i.e. there is no problem reported by LV as far any subvi/dll is concerned), but during run time it gives an error. Specifically the Function DAPLinePut does not work - when trying to input offset values & set display.

Hello MKris,
Thank you for your question regarding executing a VI written in LabVIEW 6.1on LabVIEW 7. You mentioned that the VI executes correctly in LV6.1 but gives an error when executed in LV7. I am not familiar with the functions of Microstar you are using and I might be more equipped to help solve your problem with some more information about the problem that you are having. Could you possibly provide a screen shot of the error or some sample code that demonstrates the problem in the simplest way possible?
Shea C.
Applications Engineering

Similar Messages

  • LabVIEW 64-bit crashes upon startup but LabVIEW 32-bit works fine.

    Recently had to uninstall and reinstall both LabVIEW 32 and 64-bit versions because the network administrator is dumb.  Now 32-bit works fine but the 64-bit version immediately crashes upon opening.  Getting the following Labview Crash: Exception: Unknown (0xC06D007E) at EIP=0x000007FEFCE1940D.  We're running LabVIEW 2012 on Windows 7 64 bit system.

    Did you try to repair the 64-bit version? Was it working previously fine?
    The best solution is the one you find it by yourself

  • My itunes was working fine untill i tried to download the most current version of itunes. now it wont boot up and has error messages,error7(windows error 126) and MSVCR80.dll

    my itunes was working fine until i tried downloading the most current version of itunes, now when i try to get on my itunes library, it wont boot up and has error codes, error 7, and( windows error 126). it also says that MSVCR80.dll is missing from my computer,please re install itunes. but when I try to re install it it will not install on my computer.

    See Troubleshooting issues with iTunes for Windows updates.
    tt2

  • Screen shot VI works fine with Labview 9 but crushes with Labview 10

    Hi everyone,
    I am using Labview 10 with XP.
    The screen shot VI (available in the .zip in this discussion http://forums.ni.com/t5/LabVIEW/Can-i-make-an-automatic-Print-screen-in-labview/td-p/534790/page/2?q... works fine with Labview 9 but makes Labview 10 crush every time (same computer)  .
    Any solution to make it work with Labview 10?
    Thanks,
    User
    Solved!
    Go to Solution.

    Hi,
    Thanks for posting on NI forum.
    You could find a response at the end of the same link you had post (page 4).
    http://forums.ni.com/t5/LabVIEW/Can-i-make-an-automatic-Print-screen-in-labview/td-p/534790/page/4?q...
    Regards,
    Nicolas M.
    National Instruments France
    #adMrkt{text-align: center;font-size:11px; font-weight: bold;} #adMrkt a {text-decoration: none;} #adMrkt a:hover{font-size: 9px;} #adMrkt a span{display: none;} #adMrkt a:hover span{display: block;}
    Journées Techniques LabVIEW 2012 : du 27 septembre au 22 novembre
    2 sessions en parallèle : Débuter a...

  • HT1926 i had itunes on my pc for a number of years. worked fine last night even. today, nothing, screen gave error 7, windows error 126, tried removing and re-installing, still same message. says I am missing MSVCR80.dll

    I have had Itunes on my pc for years. Worked fine last night. Today it gave me a message missing MSVCR80.dll, tried reinstalling, didn't work. Removed Itunes completely, reinstalled. Didn't work. Same message. Any fix ideas?

    Click here and follow the instructions. You may need to completely remove and reinstall iTunes and all related components, or run the process multiple times; this won't normally affect its library, but that should be backed up anyway.
    (99196)

  • Problem is occurring in docx format; it is not printing "New Line" character in extracted txt using IFilter (offfiltx.dll) while with doc file IFilter (OffFilt.dll) is working fine.

    Problem: Problem
    is occurring in docx format; it is not printing “New Line” character in extracted txt using IFilter (offfiltx.dll) while with doc file IFilter (OffFilt.dll) is working fine.
    Environment: -
    Operating
    System:
    Windows XP SP2/7
    Language:
    C#
    MS
    Office Version: - MS Office 2007/2010/2013
    Problem
    Description: -
    We
    havedocx
    file with new line character, and we are processing this file in IFilter for extracting text, and it is giving output with concatenation of lines.
    Docx
    file format (Sample.docx)
    Test this music
    Word processing
    Testing docx file
    Output:
    - Test this music Word processing Testing docx file
    Requirement:
    - We
    have requirement to get following text in particular format with New Line from docx because client is using docx format only.
    Test this music
    Word processing
    Testing docx file
    Attempt:
    We have tried a lot after changing IFilter configuration,
    but it is not giving required output. Then we saved same file in doc format (Sample.doc), which is giving required output.
    Because it is application specific problem, kindly
    assist to resolve issue on priority. We are sharing IFilter paths for extracting text for doc and docx.
    Doc Filter Location: - %systemroot%\system32\OffFilt.dll
    Docx Filter Location: - <Drive>:\PROGRA~1\COMMON~1\MICROS~1\Filters\offfiltx.dll
    Code Snippet for setting property of filter
    internal static IFilter LoadAndInitIFilter(string fileName, string extension)
                IFilter filter
    = LoadIFilter(extension);
                if (filter
    == null)
                    return null;
                IPersistFile persistFile
    = (filter as IPersistFile);
                if (persistFile
    != null)
    persistFile.Load(fileName, 0);
                    IFILTER_FLAGS flags;
                    IFILTER_INIT iflags
    =
                                IFILTER_INIT.CANON_HYPHENS
    |
                                IFILTER_INIT.CANON_PARAGRAPHS
    |
                                IFILTER_INIT.CANON_SPACES
    |
                                IFILTER_INIT.APPLY_INDEX_ATTRIBUTES
    |
                                IFILTER_INIT.HARD_LINE_BREAKS
    |
                                IFILTER_INIT.FILTER_OWNED_VALUE_OK;
                    if (filter.Init(iflags,
    0, IntPtr.Zero, out flags)
    ==IFilterReturnCode.S_OK)
                        return filter;
                Marshal.ReleaseComObject(filter);
                return null;
    Kindly
    assist to resolve this issue and also let us know if any input is required.
    For any help, we would be really
    thankful.

    Kindly
    assist to resolve this issue and also let us know if any input is required.
    For any help, we
    would be really thankful.

  • Device works fine with MAx but not with Labview visa serial

    I have a Monarch rpm sensor hooked up to Monarch tachometer , it gives error while coding in labview and works fine in Max if the sensor doesn't read 0. I have written simple RS-232 programs never had an error but this one is giving errors ..not ablt to fix it..please help
    Solved!
    Go to Solution.

    No device can actually measure a speed of zero.  It can only specify that the speed is less than some minimum, which depends on how long you are willing to wait for an answer.
    I do not know anything about your instrument, but I would guess that you are getting an error which is the equivalent of "The instrument has waited the maximum permissible amount of time and did not detect any measurable motion."  This is the instrument's way of saying that the speed may be zero, or very slow, or something is broken so that it cannot make a measurement but it cannot detect the problem.
    Look at the manual for you instrument to see how it responds to the zero speed condition.  This error may be normal.  If so, you need to capture the particular error code and handle it however you think is appropriate.
    Lynn 

  • My mail application was working fine, I shut down and when I restarted it is asking me to set it up again. I dont want to loose any information on my mail and I had a lot of accounts on it. . what can I do?

    My mail application was working fine, I shut down and when I restarted it is asking me to set it up again. I dont want to loose any information on my mail and I had a lot of accounts on it. . what can I do?

    I found all my files from my old account in the users folder but when I logged out there was no option to sign in on the old account, I'm guessing ill just have to start from scratch, which is fine as long as my old files aren't lost :) thanks for the help.
    I'll explore more once I get my screen fixed and there might be a way to recover my old account :)

  • I'm trying to read some XML data from temperature logger over my network. I'm using LabView version 2009 sp1. I'm using the URL Get Document Vi. It works fine when using Internet sites like google or foxnews etc...

    I'm trying to read some XML data from temperature logger over my network.  I'm using LabView version 2009 sp1.  I'm using the URL Get Document Vi.  It works fine when using Internet sites like google or foxnews etc...
    When I use it with my temperature logger most of the time I get an Error 66...but some times it does work and actually retrieves the document. 
    I can use the same address "http://172.22.21.68/XMLfeed.rb" (Internet Explorer or Google Chrome) in my browser and get a response every time.  When accessing from my browser the server in the temperature logger does take around 6 seconds to respond, but it does respond every time. 
    Is the URL Get Document Vi exceeding a timeout?  If so, where can I set it to wait longer?
    Attachments:
    Error 66.jpg ‏183 KB

    It looks like the TCP Buffered Read has a 2.5 sec timeout, I believe that is where I had trouble as well.  Try creating your own URL Get HTTP Doc vi in which you call URL Get Document in normal mode, with an appropriate number of characters to fetch (enough characters so that you capture all the important data in the XML file).
    Attachments:
    ex1.PNG ‏33 KB

  • Labview software locking up while recording data. Code has not changed and used to work fine.

    I am using labview 5.1 and DAQ 6.6. While recording data, which seems to work fine, the real-time plots simply stop and labview seems to lock up after about 30 seconds of reading data. The VI I am using I have been using for a long time and I have never had a problem like this before. I am really stumped as to why this happens.

    Yes do the jpg thing.
    If I understand you correctly, the data makes to the file.
    Double check the data in the file to make sure you are getting good values. Who knows, you may have a bad channel that is ggofing with you scales such that just can't see the data.
    It start to plot and then suddenly it just goes away huh?
    Post a picture.
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • BI Publisher 11g Trial dont work fine , send ERROR

    Hi.
    I Install BI PUblisher 11G Trial in a new clean server with :
    + Windows 2008 R2 Foundation Spanish with SP 1
    + Download, Install BI Publisher 11g Trial
    + Execute Demo Report "Revenue Budget Actual and Detail "
    + In Inteactive mode work fine
    + In HTML send ERROR : "java.lang.ArrayIndexOutOfBoundsException: 0"
    + In PDF the pivot table don't display any value higer 1.000.000
    This is a bug ?,how correct this errors ?
    Thank you very much
    Carlos

    Hi Carlos,
    Are you still experiencing this problem?
    I do not see this on my installation on Windows7 64 bit running in English.
    I also set the BI Publisher UI language and Report Locale to Spanish and all three output types:
    Interactive, HTML and PDF render correctly.
    When you say that the pivot table doesn't show any values higher than 1.000.000 ... what does it show instead?
    How do the other sample reports look for you?
    Mike
    Edited by: mdonohue on Jun 5, 2012 4:45 PM

  • Microphone dont work in win 8.1 and win 10 tech preview works fine in win 8 and below

    my microphone works fine in win 8 but when i upgrade to win8.1 it doesn't work my motherboard is Asus P5KPL-CM i don't know is that a driver problem or not because the speakers work fine only the microphone doesn't work in any voice related apps. i am forced
    to use win 8 i cannot upgrade to win 8.1
    specs:
    intel core2duo E7500 2.93
    Asus P5KPL-CM
    kingston 4GB DDR2 800
    GTX 460

    Hi,
    This could be driver issue. Please contact the manufacturer to ask for the latest driver for your Webcam in Windows 8.1, and reinstall it to check the results. If there is not, we need wait for the updates from manufacturer.
    Meanwhile, to use webcam, we need to get it properly set.
    Set Windows 8.1 Apps that May Use the Webcam, Microphone & other devices
    http://www.7tutorials.com/set-windows-81-apps-may-use-webcam-microphone-other-devices
    This response contains a reference to a third party World Wide Web site. Microsoft is providing this information as a convenience to you. Microsoft does not control these sites and has not tested any software or information found on these sites; therefore,
    Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. There are inherent dangers in the use of any software found on the Internet, and Microsoft cautions you to make sure that you
    completely understand the risk before retrieving any software from the Internet.
    Hope these could be helpful.
    Kate Li
    TechNet Community Support

  • You tube use to work fine for me in Fire Fox ...Now wont...I dont recall changing anything.

    You tube just shows black screen, works fine in internet explorer.
    Haven't upgraded or changed versions of firefox or added any plug=ins Im awarer of. Had several automatic updates come through of other programs, such as flash, ect. But I have refused to upgrade firefox due to having to give up screen grab which I love too much to do it, so have stayed with older version.
    Had no problem with you tube in the past.

    hello, firefox 7 is affected by dozens of critical security vulnerabilities. please upgrade as soon as possible and use https://addons.mozilla.org/firefox/addon/screengrab-fix-version/ instead.

  • HT1947 my remote application works fine however I dont have a menus section that allows me to control the apple tv screen functions

    I have a first generation apple tv and an Iphone 4. I installed remot on my phone, all features work fine except I can't control the apple tv functions such as search movies, internet and other features. I had an earlier version on my 3 Iphone and it worked fine. I have tried everything from reloading the application and nothing seems to add this feature

    OK, Problem solved. Software on Apple TV was VERY outdated. It had been sitting in the box for over a year and needed an update. Problem solved!

  • I pull fiftyfour bytes of data from MicroProcessor's EEPROM using serial port. It works fine. I then send a request for 512 bytes and my "read" goes into loop condition, no bytes are delivered and system is lost

    I pull fiftyfour bytes of data from MicroProcessor's EEPROM using serial port. It works fine. I then send a request for 512 bytes and my "read" goes into loop condition, no bytes are delivered and system is lost

    Hello,
    You mention that you send a string to the microprocessor that tells it how many bytes to send. Instead of requesting 512 bytes, try reading 10 times and only requesting about 50 bytes at a time.
    If that doesn�t help, try directly communicating with your microprocessor through HyperTerminal. If you are not on a Windows system, please let me know. Also, if you are using an NI serial board instead of your computer�s serial port, let me know.
    In Windows XP, go to Start, Programs, Accessories, Communications, and select HyperTerminal.
    Enter a name for the connection and click OK.
    In the next pop-up dialog, choose the COM port you are using to communicate with your device and click OK.
    In the final pop
    -up dialog, set the communication settings for communicating with your device.
    Type the same commands you sent through LabVIEW and observe if you can receive the first 54 bytes you mention. Also observe if data is returned from your 512 byte request or if HyperTerminal just waits.
    If you do not receive the 512 byte request through HyperTerminal, your microprocessor is unable to communicate with your computer at a low level. LabVIEW uses the same Windows DLLs as HyperTerminal for serial communication. Double check the instrument user manual for any additional information that may be necessary to communicate.
    Please let me know the results from the above test in HyperTerminal. We can then proceed from there.
    Grant M.
    National Instruments

Maybe you are looking for

  • PARK & POST  Journal Entry and auto reversal

    Dear All, Our auditors has offered the following changes to be implemented in SAP system. 1. JE approval: Configure the system functionality to place journal entries in a u201Choldu201D status when entered into the system, then the supervisor/manager

  • Ship to party at line item using BAPI_BUSPROCESSND_CREATEMULTI

    Hi all, I am using BAPI_BUSPROCESSND_CREATEMULTI to create a sales order in CRM. The sales order is successfully generated in CRM. I am inputting Sold to party, Ship to part, bill to and payer at header level. I am also inputting different ship to pa

  • Business Area into New Company code.

    Hi Peers, My Client is selling one of its Business Area and the Buyer wants to be able to use the existing SAP system. We have dicided to create a new CCD and trsansfer all the AR/AP open items of this perticulat business area in old CCD to the new c

  • No Landlines Service Since 8/30/2013 @ Pm est. and still no phone line

    My landline has not worked since 8/30/2013 at 4 Pm est. and still is not working to this day! I live in Hopewell Va and because my phone line is down I have NO INTERNET and the Verizon Customer Service Is NO HELP, I have been a loyal costumer since 2

  • Quantity differences when performing IV via MIRO

    When posting an invoice via MIRO we are unable to change the quantity to match the invoice. The orignal order was for 50, the good receipt was posted for 50 however the supplier only billed for 33. But when accounting tries to post the invoice for on