Cannot open TDM files with compiled applications

I need to open TDM files using my EXE application, but it doesn't work in computers with only LabView Run Time installed. (It does if LabVIEW is installed, and it also does if I run my VIs). It doesn't display any error, and it doesn't extract any data.
I've tried installing DSC Run Time as well, but it doesn't work either.
Is this some Lisencing restriction?
Do I need some extra installings?

Regardless of the forum location ... make sure you have checked "NI USI" in your installer build specification.
Herbert

Similar Messages

  • Acrobat 7.1 IE plugin cannot open .pdf Files with mt/application/octet-stream

    Hi Folks,
    we have some problems to open pdf - files via Hyperlink in an IE Explorer. this files get from the web-server the MIME-Type "octet-stream".
    the only option is to save and then open the pdf files. But we want to open the pdf files directly IN the IE. the option to open it not in IE is not possible because then another application will not work.
    Is it generally possible to open an pdf File with an octet-stream MIME-Type with the IE-Pluin, and if Yes is ther any possible configuration we could try.
    Thanks for your help
    regards
    Felix

    Hi Bill,
    we already tried to change that checkbox that solves the problem but we get new problems with other applications, so this way is also no option for us.
    also we tried to repair / reinstall acrobat, but it has no effect.
    I suppose that maybe adobe just closed that door to open pdf documents with the octet-stream MIME-Type. Because it could an way to insert executable files in the system.
    maybe a higher version than 7.1 can do this?
    Thanks for your help, here in Germany it is already 2 pm so not far from quitting-time ;)

  • Cannot open pdf files with Firefox's built-in pdf viewer

    This just started (I think) with Firefox 37.01. This is on Win7-X64. I cannot open pdf files with the Firefox built-in pdf viewer. If I click on the file or try to open it from within Firefox, it brings up a "opening filename.pdf" message. If I select the "Open with" radio button as 'Firefox (default),' it just keeps looping on this process; it never opens. In Tools => Options => Applications, Portable Document Format (PDF) is indicated as 'Preview in Firefox.' I've never had any other PDF viewer installed on this computer. I've tried disabling all plug-ins and extensions, but it still doesn't work. I searched for solutions but haven't found any for this specific issue.
    Thanks for the help.

    Hello,
    Have you tried, to start Firefox in safemode you can do so by following these steps
    '''If Firefox is open,''' you can restart in Firefox Safe Mode from the Help menu:
    * Click the menu button [[Image:New Fx Menu]], click Help [[Image:Help-29]] and select ''Restart with Add-ons Disabled''.
    '''If Firefox is not running,''' you can start Firefox in Safe Mode as follows:
    * On Windows: Hold the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac: Hold the '''option''' key while starting Firefox.
    * On Linux: Quit Firefox, go to your Terminal and run ''firefox -safe-mode'' <br>(you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    When the Firefox Safe Mode window appears, select "Start in Safe Mode".
    ;[[Image:SafeMode-Fx35]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, theme, or hardware acceleration. Please follow the steps in the [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]] article to find the cause.
    ''To exit Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    When you figure out what's causing your issues, please let us know. It might help others with the same problem.

  • Cannot open PDF files with Reader XI message appears Adobe Reader has stopped working

    Cannot open PDF files with Reader XI message appears Adobe Reader has stopped working. A problem has caused the program to stop working

    Which Operating system you are using?
    Can you open Adobe Reader by itself?  If so, try disabling Protected Mode [Edit | Preferences | Security (Enhanced)] and then try to open the file.

  • I cannot open a file with suffix .ra

    i cannot open a file with suffix .ra

    thats a real time audio file. download real player to open it.
    Ryan

  • HT3775 cannot open avi file with quicktime pro7

    I cannot open avi file with quicktime pro 7

    VideoLAN - Download official VLC media player for Mac OS X

  • Cannot open project file with write access...

    I have seen that this problem has been reported before but have yet to find a solution.
    I have my project file in an external hard drive.  When I plug the hard drive to another computer and want to save it I get this message:
    "Cannot open project file with write access.  The file may be locked or you don't have permission to write to this location.  Select Save As..."
    I don't want to Save As because other projects make reference to this file and also my Encore file will be messed up.
    FYI both computers use Windows 7.
    Any solutions?

    Right click on the folder in Question and select properties. Then select the security tab. Make sure you add everyone to the user list. You do that by selecting edit and then add. Type in everyone in the object section and hit ok. Then select the everyone user and checkmark the Full control. Hit Apply and it will adjust the permissions for the folder and subfolders and files.
    Eric
    ADK

  • Nilibddc dll: opening tdms files with corrupt index files

    Hi there,
    i have a question regarding error handling, when using the nilibddc.dll.
    I want to use nilibddc.dll to open .tdms files. At the time i'm experimenting with some error cases and got stuck in one case:
    When i try to open a .tdms file with a corrupt .tdms_index file i get the error code -6211 (DDC_StorageCouldNotBeOpened).
    The .tdms_index file is corrupt because of errors while copying the file.
    The problem i noticed is, that i have a file lock on the corrupt .tdms_index file after DDC_OpenFile(...) (i can rename it, but i can't delete the file!?).
    As you can see in the code snippet - it isn't really special...
    int ddcError = 0, length;
    DDCFileHandle file = 0;
    ddcError = DDC_OpenFile (FILE_PATH, NULL, &file);
    // here i get ddcError == -6211
    if( ddcError == 0 )
    // do something with the file...
    ddcError = DDC_CloseFile(file);
    if( ddcError == 0 )
    cout << "no error - everything done" << endl;
    system("PAUSE");
     Do i miss something here? Should i use DDC_FreeMemory in somehow to release opened handles?
     I also tried to use the DDC_OpenFileEx(...) with readOnly set to true. But this doesn't change anything!
    Thanks in advance for help,
    Daniel
    Solved!
    Go to Solution.

    Hi there,
    thanks for the replies (and sorry for my late answer).
    The code above is from a simple Visual C++ Project that i use to run some tests with the dll.
    If i posted the question in the wrong topic please let me know - i found some other posts dealing with the dll so i thought i'm right here.
    I attached a tdms and the corresponding "corrupt" tdms_index file.
    The file handle stays 0 when i debug my code with that file and i receive the error -6211.
    I want to use the dll as part of an application that runs as system service. It reads and writes information from/to existing tdms files. After the information is read the application moves the files. So, if the tdms_index file gets corrupt (by whatever) i have the problem, that the index file is locked as long as the service is running and the file can't be moved. I can't tell how often this happens (hopefully never) but if i can do something against it, i would like to integrate this precaution.
    Thanks in Advance for any information & have a nice day,
    Daniel
    Attachments:
    samplefile.zip ‏3 KB

  • Cannot open RAW file with new camera

    I just purchased a Nikon D610 that I use to shoot RAW files. When I inserted the SDHC card in my Mac, I got a message that "Photoshop cannot open this file. If you are attempting to open a raw file from a digital camera, make sure you have the latest Camera Raw update installed via Help>Updates..." This is the first time I've had this problem. With my former Nikon D600, the RAW files opened right away with no problems. I installed Adobe Camera Raw 6.7 and DNG Convertor 8.6, but it still doesn't work.

    I've got some good news and some bad news.
    The bad news is the D610 is supported in Camera Raw but you need a minimum of version 8.3 for it to work out-of-the-box. I know CC works with updates; I believe CS6 does too w/ updates. If you have anything earlier than that you need to upgrade.
    The good news is that the D610 is supported in DNG Converter since version 8.3 but I don't know why it's not working for you. What's happening when you go to convert? Same error message?

  • With OSX 10.8.5 cannot open PDF files with 11.0.04?

    using OSX 10.8.5 cannot open PDF files from Xerox Docushare with recently downloaded PDF 11.0.04

    That crash is a known bug in Apple's display code.
    But it's the QuickDraw code, which Apple does not want to fix.
    There is nothing we can do about that OS bug, other than to suggest using a more recent version of Photoshop written to the Cocoa APIs.

  • Cannot open pdf file with Firefox 11.0

    Firefox automatically upgrades the version I am using. Since it was recently upgraded I cannot open pdf files. Am faced with a blank page. I went through some of the suggestions on these pages and when I opened the Tools window, there is a warning:
    Firefox PDF Plugin for Mac OS X is incompatible with Firefox 11!
    Is there a way around it? Or is it time to say goodbye to Firefox and move to Safari?

    When Firefox updates, it turns
    off add-ons that are not
    compatible with the new
    version. In addition, add-ons
    that may have been
    automatically installed by other
    programs without your
    knowledge (third party add-
    ons) have been disabled. For
    more info about re-enabling
    add-ons, see the link below.
    http://support.mozilla.org/en-US/kb/Add-ons%20are%20disabled%20after%20updating%20Firefox#os=android&browser=m10

  • I cannot open dmg files with Yosemite

    So installed Yosemite. All seemed fine but
    I now cannot open dmg files. If I double click on them, nothing happens. If I say open with "diskimagemounter" nothing happens. If I say open with Disk Utility it says wrong version of Disk Utility. If I move them back to a computer with Mavericks, they open fine. Repaired permissions and no change.
    What do I do please?

    Reinstalling OS X Without Erasing the Drive
    Boot to the Recovery HD: Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Repair the Hard Drive and Permissions: Upon startup select Disk Utility from the main menu. Repair the Hard Drive and Permissions as follows.
    When the recovery menu appears select Disk Utility. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the main menu.
    Reinstall OS X: Select Reinstall OS X and click on the Continue button.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible because it is three times faster than wireless.
    Download and reinstall the 10.10.1 update.
    Also see:
    Reinstall OS X Without Erasing the Drive
    OS X Yosemite- Reinstall OS X
         Note: You will need an active Internet connection. I suggest using Ethernet
                     if possible because it is three times faster than wireless.

  • I cannot open PDF files with my Mountain Lion system. What APP's do I need?

    What Apps do I need  to open PDF files with Mt. Lion installed?

    Double-click the PDF and it should open in Preview.

  • SQL Developper Version 4.1.0.19: cannot open sql files with file type .pck

    Hi
    I can't open sql files with file type .pck. They are opened as a package. The icon is a package too. (Worked fine in 4.0)
    My settings:
    Thanks for any help

    Thanks, but that doesn't help
    To specify it more precisly: I can open such a file, but it is not opened as a sql file. The icons you see above left are the icons of the files (not of the packages).
    Greetings
    Ovi

  • Cannot open multiple files with Adobe Reader X

    Hi to all!
    I've just installed Adobe Reader X. This is my problem: I select multiple pdf files (from 2 to 9) from a folder, then I click whith the right mouse button and choose "Open with Adobe Reader X" (or chlick the Enter button). I expect that Acrobat will open all the files I selected but only one will open!
    If I try to open the files from the File/Open function in Reader X and I choose the same documents, the documents itselfs will be open correctly!
    I use the same procedure using Reader 9.x but I've not the same problem.
    Can anyone help me?
    Thanks in advance.
    Stefano

    I have the same problem, but cannot find this supposed "Adobe Reader" forum, nor can I find an "Acrobat Reader" forum. (Everything else seems to be there, but no Reader...)
    With all previous versions over recent years, up to version 9, I could select multiple PDF files in Windows Explorer, hit Enter, and it loaded them all. Then I could Ctrl+F6 to switch between the documents.
    Now, if I try this with just 2 PDF files, it loads one and then locks up, with each session of Acrobat taking about 40-45% of processor power. I have to crash out of it.
    Help!
    Or at least show me where this Acrobat Reader forum is?
    Many thanks

Maybe you are looking for

  • Ipod set in japanese!! How do i change it to english??

    Please help?? Got an ipod nano today for my birthday and somehow it's set to japanese?? Anyone know how to change it back to english??

  • Part of a migration project from SCCM 2007 to 2012 SP1 CU3 - Updates no longer working and reporting not correct

    Been working on a migration from 2007 sp1 to 2012 sp1 cu3.  I first installed directly to sp1 but realized we had a few 8.1 clients being built so I added the cu3 mid-stream.  I moved over two small subnets and pushed out some clients.   I was able t

  • Oracle database name

    hi everyone, can anyone tell me how to find out database name in oracle? i tried "select name from v$database;" but it says "table or view does not exist" .... i have logged on as an ordinary user only...not as dba... thanks in advance regds, Beulah

  • Masking a Donut

    Hello, I am trying to create a lower third in LiveType that incorporates the image of a donut. The donut .gif image I am working with always appears with a box around it when I import the file into LiveType, so I decided to mask the image using Motio

  • Business flow of BIW

    Dear All, Kindly tell me about the business requirements and how we are mapping with the Business Content in BIW. In SAP we have the different data sources in LO. How we have to anlyse all. How to search in the Business content sources with the R/3 f