Importing Max file

Hello all,
I have some requirements which to import the NI configuration
file to MAX programatically through Labview.
This config file contains the virtual channel informations which will
be updated to the particular physical channels while loaded.
So far i was able to import the config file manualyy using Max
Import/Export.
Can somebody tell me/send a code which will do the same???
Thanks and regards
Vijaysiva

Hi Vijaysiva,
I think that this KnowledgeBase, How Can I Load or Change My NI-DAQ Configuration File (*.daq) Programmatically in LabVIEW? is just what you need.  It explains how to programmatically load the .daq files that you previously imported/exported from MAX.
Take a look at this document and please post again if you have further questions.
Good luck!
Megan B.
National Instruments

Similar Messages

  • Premiere Pro CS4 does not import EX1 files longer than 1 hour

    I had to record a long speech and used a Sony XDCAM HD EX1 camera with a 32 Gb and a 16 Gb SXS cards. The speaker paused after 1h 26 min. I stopped the recording and waited until the green light that allows recording the segment came on. Later I recored smaller segments.
    I copied all the recorded files to the PC hard disk ( Intel Quad Core 2.4 Ghz with 3.25 GB RAM with XP Proofessional SP3).
    I used Sony Clip browser to watch the clips and all of them were perfect. Then I opened premiere Pro CS4 4.21 and I wanted to import this 27 GB file. In the media browser appeared only one mp4 file. All the short ones where imported normally but the big one freezed premiere and the only way to close premiere was with the windows task manager.
    I checked again in the Sony XDCAM clip browser version 2.6 and you can see it perfectly. There was a detail, though: in the lower part of the preview window I saw 6 marks. When I checked the file in the disk, I found that the 27 Gb file was separated in 7 parts. Each of them was 3.51 Gb and the last one 2.5 Gb. That means that the file was cut in pieces that were less than 4Gb supposed max file lenght.
    I tried many ways to import and no result. The I used the "export " of the sony clip browser. There is one choice that is "MXF for XDCAM HD". When I chose this item another panel appeared and showed a 1440 X 180 59.94i 25Mbps choice. I took it and after some time it created the 27 Gb file that I could import it normally with 4 audio tracks. But there is a drawback a "media concept" logo appeared to remeber to "buy" the program.
    Anyhow, the question is: How can I import to Premiere CS4 a MP4 file created by a Sony EX1 HD camera whose lenght is more that 1 hour long ?
    Thanks
    Wolfgang

    I think  is the contrary because the clip browser copies all the foleders needed. I got this opinion from another forum that copies into Final Cut:
    "My workflow is to create a hard drive folder for the project, then use Clip Browser to import the clips from the card. I review the clips, labelling them, adding logging notes, setting the status and putting in essence marks as needed (the number of characters available for the essence mark description is fairly limited). I then open FCP, create and save a new project then call up XDCAM Transfer. I select the project folder and it will pull in all the clips. I then filter for OK status, occasionally create subclips then import. The clips come over to the bin, with their names and with the essence marks converted to markers. Obviously there are backups taken - I've not mentioned them."

  • Problem in importing XML file

    good morning, 
    i've a problem when i try to import an XML file to SQL.
    In my particular case i've an xml file structured like this:
    <?xml version="1.0" encoding="UTF-8"?>
    <Flussi xmlns="http://indennitario.acquirenteunico.it/Semplificato/1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <Flusso xsi:type="FlussoSI1.1150Type" COD_FLUSSO="1150" COD_SERVIZIO="SI1">
    <IdentificativiRichiesta>
    <CodPratGestore>688628</CodPratGestore>
    </IdentificativiRichiesta>
    </Flusso>
    </Flussi>
     I managed to import that file in that way:
    DECLARE @XML AS XML, @hDoc AS INT, @SQL NVARCHAR (MAX)
    SELECT @XML = '<Flussi
    >
    <Flusso COD_FLUSSO="1150" COD_SERVIZIO="SI1">
    <IdentificativiRichiesta>
    <CodPratGestore>688628</CodPratGestore>
    </IdentificativiRichiesta>
    </Flusso>
    </Flussi>'
    EXEC sp_xml_preparedocument @hDoc OUTPUT, @XML
    SELECT
        Cod_flusso = Events.value('@COD_FLUSSO', 'int'),
        Cod_servizio = Events.value('@COD_SERVIZIO', 'varchar(20)'),
        --EventIsFixed = Events.value('(IsFixed)[1]', 'varchar(20)'),
        --EventKind = Events.value('(EventKind)[1]', 'varchar(20)'),
        PIVAUtenteUscente = Events.value('(IdentificativiRichiesta/PIVAUtenteUscente)[1]', 'varchar(20)'),
        CodPratUtente=Events.value('(IdentificativiRichiesta/CodPratUtente)[1]', 'varchar(20)'),
        CodPOD=Events.value('(DatiTecnici/CodPOD)[1]', 'varchar(20)'),
        Cf=Events.value('(AnagraficaClienteFinale/CF)[1]', 'varchar(20)'),
        Cmor=Events.value('(DefinizioneIndennizzo/Cmor)[1]', 'float'),
        Credito=Events.value('(DefinizioneIndennizzo/Credito)[1]', 'float'),
        DataSwitching=Events.value('(DefinizioneIndennizzo/DataSwitching)[1]', 'varchar(20)'),
        DataEmissione=Events.value('(FattureIndennizzo/DataEmissione)[1]', 'varchar(20)'),
        TipoFattura=Events.value('(FattureIndennizzo/TipoFattura)[1]', 'varchar(20)'),
        DataScadenza=Events.value('(FattureIndennizzo/DataScadenza)[1]', 'varchar(20)'),
        IdentificativoFattura=Events.value('(FattureIndennizzo/IdentificativoFattura)[1]', 'varchar(20)'),
        NumeroGiorniErogazione=Events.value('(FattureIndennizzo/NumeroGiorniErogazione)[1]', 'int')
        --ParameterName = Events.value('(Fields/Parameter[@Name="Name"]/@Value)[1]', 'varchar(20)'),
        --ParameterDuration = Events.value('(Fields/Parameter[@Name="Duration"]/@Value)[1]',
    'varchar(20)')
    FROM
        @XML.nodes('/Flussi/Flusso') AS XTbl(Events)
    EXEC sp_xml_removedocument @hDoc
    The problem is that when i try to import the initial file with this kind of attributes: xsi:type="FlussoSI1.1150Type" i can't get the data.
    does anyone know how to solve the problem? thank you 

    declare @x xml='<?xml version="1.0" encoding="UTF-8"?>
    <Flussi xmlns="http://indennitario.acquirenteunico.it/Semplificato/1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <Flusso xsi:type="FlussoSI1.1150Type" COD_FLUSSO="1150" COD_SERVIZIO="SI1">
    <IdentificativiRichiesta>
    <CodPratGestore>688628</CodPratGestore>
    </IdentificativiRichiesta>
    </Flusso>
    </Flussi>'
    ;WITH XMLNAMESPACES(default 'http://indennitario.acquirenteunico.it/Semplificato/1.0')
    select p.q.value('@COD_FLUSSO','int'),
    p.q.value('@xsi:type[1]','varchar(100)'),
    p.q.value('@COD_SERVIZIO','varchar(10)'),
    p.q.value('(IdentificativiRichiesta/CodPratGestore)[1]','int')
    from @x.nodes('/Flussi/Flusso')p(q)
    Please Mark This As Answer if it solved your issue
    Please Mark This As Helpful if it helps to solve your issue
    Visakh
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • Problems importing PDF file to Forms Central

    I am trying to import a PDF file to Form Central, last week the file imported fine, we had to make some corections, and now when I try to import the file I get this response
    FormsCentral could not import the PDF form because it has more than 500 form fields.
    can someone enlighten me on this,  I did not add any more fields, I just adjusted the tabs and labeled the form fields.
    Thanks New

    Thanks Josh...that's what I ended-up having to do. The problem is this will now produce two separate responses. I now have to devise a way to track/connect submissions from part A & part B (i.e, by adding a reference ID to both forms), otherwise we wouldn't know which data applies to which responses - considering the applications will now be submitted at different times vs as a whole. Just another setback with Form Central.
    The other issue is with Form Central reordering certain fields in the Response table.  My field names and tab order set in Acrobat are 100% in sequence - in terms of the names in the tab order panel matching the actual placement of the fields on the page. When I upload/import the PDF to Form Central, certain fields are placed out of order and I have to scroll through "miles" of headers just to find the misplaced field to manually reorder it.  Is there any progress in having this issue resolved in Form Central? I have no idea what Form Central is reading when it imports the PDF, because it doesn't appear to looking at the form structure in terms of the tab order.
    Also, will the 500 field max ever get increased?
    i think Form Central offers a good solution for being able to submit data but these quirks are casting a shadow on the brand.

  • .Max Files in After Effects

    We are trying to create a movie with a roving drone. The movie is being created in FCP; and edited in after effects. Beacause we are only doing this for a school project we do not want to pay for any models. My question: Are we able to import .MAX, .3DS or .OBJ's into after effects to include in the final cut?
    What is the native file extension for 3D objects in AE? Also I've heard that the 3d invigorator plugin may allow me to bring in objects, but have read otherwise.
    Any help or suggestions would be appreciated.

    Mylenium is right. Here's more information.
    Here's some more information about using 3D object layers from Photoshop in After Effects.
    Here's a bunch of information about using 3D files from other applications in After Effects.

  • Importing wav. files into itunes on MAC OSX

    I have a question, hope someone has the answer.
    I am a new mac owner, new ipod owner too.
    I currently have 200-300 gigabytes of SHN and FLAC files on my PC (mostly grateful dead soundboard recordings).
    I am planning on converting these files to WAV. format with "artist", "album" (show date), and "song" ID tags.
    I then plan on copying these WAV. files to my imac or separate external hard drive formatted for MAC OSX.
    OK THE QUESTION (finally, no?),
    When WAV. files are imported into itunes are they automatically converted to the MP4 AAC format?
    I have looked in the itune PREFERENCES menu I go to ADVANCED and see that there is a control for switching file formats for importing CD'S but there is no mention of importing WAV. files.
    On another note it is too bad that Apple has not come up with a file conversion utility for itunes, where FLAC, SHN, and WAV. files could be converted to MP4AAC, Apple Losless, etc...
    I appreciate any answers to my question, and also comments regarding the general subject of audio file conversion on the MAC OSX.
    Thanks

    Hi,
    Firstly, I must point out that WAV doesn't support tagging, so there is no point in converting your compressed FLAC and SHN files to WAV before making the move over to a Mac.
    Rather, it would make more sense to use the free and excellent Max to convert all these files automatically to the format of your choice, such as Apple Lossless. You can even run multiple conversions simultaneously, so you could, say, convert your whole lot of files to Apple Lossless while at the same time convert the same lot to AAC for use on your iPod. The program is highly configurable, allowing you to specify destination directories and whether or not the output files are added directly to your iTunes library. Also, the tagging will be preserved when converting FLAC and SHN files to supported formats.

  • Importing MAX

    when I try to import a .MAX file, It asks me to install the plug-in, I browse and find the path to 3DS max files, but it does not accept it, is it because it is not upgraded for the latest wersion of 3D Studio MAX? I have 9.0

    Hi Vijaysiva,
    I think that this KnowledgeBase, How Can I Load or Change My NI-DAQ Configuration File (*.daq) Programmatically in LabVIEW? is just what you need.  It explains how to programmatically load the .daq files that you previously imported/exported from MAX.
    Take a look at this document and please post again if you have further questions.
    Good luck!
    Megan B.
    National Instruments

  • Error while importing PAR file from local system.

    Hi Experts,
    While importing PAR file into my NWDS, I am encountered by some strange error.
    Please refer below screenshot for your reference.
    After clicking on "OK" button of the above error popup, another popup emerge with different error, please find below the screenshot for this error.
    Please let me know the reason and resolution of this error. It will be very helpful for me.
    Thanks in advance.
    Thanks and Regards,
    sarvesh Agarwal

    Hi ,
    Are u trying to import with .bak extension ? If so please rename the file and remove .bak extension and try.
    x.par is enough to import not x.par.bak.
    Thanks,

  • How to Import XML file into SAP B1

    Dear All,
    I have a scenario like,
    I am receiving a XML file from a 3rd party application for the daily Creation,Update of Item Master,BP Master, Marketing Documents. I want to import this file into SAP B1 through its approp objects. I understand DTW has limitation in its file types (Semicolo,Tab,Comma,ODBC). How do i do this ? Please guide me.
    Thanks,
    Thanga Raj K

    Hy folks,
    I´m frim Brasil and I've been studying the tool EFM (Eletronic File Manager) to learn more about it!
    There I saw that we can extract to XML "any" infomation from the database we want, mainly through the GEP.
    However, as I've seen, this Add-On can not import any XML file into SBO, unless for the BFP wich can be imported in conjunction with the BTHF Add-on.
    So I ask: how is it possible to import XML data into SBO database? Is it possible to be done through the EFM? or  it´s really necessary to write a code specifically to do that?
    Besides, I know that de B1iSN fit to this necessity... but when I tried to use it, by the custom "object" for BP, for example, there are some data wich the mapping conteined in this custom "process" that can not be imported... I tried to understand how to map those other fields not imported by the custom but this has been dificult to me as I am a implementation consultant focused in administrative process not on development...
    Could you please help me with this subject!
    Thanks a lot,
    Denis

  • How to include preset in RTF import option while importing RTF files?

    Dear all,
    I created a script which will place text from rtf files present in a folder to an active document on different page based on match. I am using a preset name "myRTF" which i will use when i import rtf files without script.
    Is there a way to include this preset in script?
    I have checked many places....... but did not found.
    #target Indesign
    var myDoc = app.documents.item(0);
    var sourceFolder = Folder("/Users/admin4/Desktop/ec_txt");
    myFiles = sourceFolder.getFiles("*.rtf");
    var myFrame1 = myDoc.pageItems.itemByID(111076);  // switerland
    var myFrame2 = myDoc.pageItems.itemByID(111114);  // eurozone
    var myFrame3 = myDoc.pageItems.itemByID(111146);  // germany
    for (var i=0; i < myFiles.length; i++)
        switch (myFiles[i].name.slice (6, myFiles[i].name.lastIndexOf("_")))
            case "Switzerland_en":
            myFrame1.parentStory.insertionPoints.item(-1).place(File (sourceFolder + "/" + myFiles[i].name))
            break;
            case "Eurozone_en":
            myFrame2.parentStory.insertionPoints.item(-1).place(File (sourceFolder + "/" + myFiles[i].name))
            break;
            case "Germany_en":
            myFrame3.parentStory.insertionPoints.item(-1).place(File (sourceFolder + "/" + myFiles[i].name))
            break;

    Hi Dave, Peter,
    thanks for your reply. In that case i will check WordRTFImportPreference but not sure if customize style import can be done for paragraph style sheets.
    for example: word has "normal" and "head1" style but i want to map to indesign Body_light and H1 styles respectively.
    Virender

  • Problem Importing CR2 Files in Aperture 1.5.6

    I recently shot a number of pictures at my sister's wedding using my Canon Digital Rebel XTi. I am now trying to import the RAW files into Aperture (ver. 1.5.6). Aperture will recognize the compact flash card and display the files on the card. When I try to import the files, however, Aperture seems to go through the process of importing the files (the little timer dial runs etc.) but at the end of the import process the pictures do not appear in my project. What could be the problem? I am able to copy the files onto a folder on my desktop but Aperture will not import these files even from that folder. Help!

    gah hey im having this problem too
    and it all worked last week <?>
    formatted flash drive on camera.
    downloaded photos from a file reader via flash drive.
    camera = canon mk3ds eos
    can see previews in apeture (2.1.2) but large image on browser is unsupported.
    error message "unsupported image format".
    have tried downloading them again and importing them again etc.
    both straight into apeture and via hard drive folder.
    but it worked last week?
    bit upset i love aperture and my new camera now nothing is working well
    for info i loaded up canon photo professional which is canons own brand image processor (which is a bit rubbish imho) and the images worked on that.
    they will not import to photoshop (an old version)

  • Tempo problems with imported wav files

    Hey everyone, sorry if there's a quick fix for this in the forums that I couldn't find, but I've been having some tempo problems with imported .wav files.
    Long story short, my system couldn't handle playing all the tracks for a song while recording drums, so I bounced out an mp3 of the song and put it in a new Logic file so my drummer could just play along to that as I recorded him. Unfortunately, the original song is at 167 bpm, but I forgot to change the bpm in the new Logic file with the .mp3 file of the song to 167 bpm, so it was left at the default 120 bpm.
    So, the drums were recorded at the correct 167 bpm, but Logic thinks that those new drum .wav files should be played at 120 bpm, so when I import my drum tracks back into the original file, they do not play correctly at all.
    I could get record it all again, but I wanted to check if there was a way I could salvage what I already have, since my drummer lives about an hour away right now and can't just come over whenever he wants.
    Thanks for the help! I really appreciate it.

    Hi,
    First, do not use MP3 in Logic, the sound quality is less than AIFF, WAV or CAF, and Logic has to decode it for playback, making it a heavier burden on the CPU than an uncoded audiofile, such as AIFF, WAV or CAF.
    Secondly, audio files are independent of Logic's tempo. If you bounce down an audio file in any format (other than Apple Loop), it will play back at the same speed, +regardless of Logics' tempo setting+, either at recording or playback. Logic doesn't 'think' anything. The BPM is only important to MIDI tracks, or to the spacing between audio files. The audio files themselves *are not affected* by the tempo setting. If you import an audio file of tempo 167 into a 120 BPM project, the file will still play at 167, only Logic will indicate the wrong bar positions.
    regards, Erik.

  • How to import excel file in oracle 10g suit

    Respected all,
    i am working d2k6i now i am going to 10g suit and i want to import excel file so anybody help me how to do it? Thanks in advance.

    Hi,
    This forum is dedicated to Oracle SQL Developer Data Modeler, so it is possible to get an answer here, but it is not very likely.
    Try to get help in in more appropriate forum from here
    https://forums.oracle.com/forums/main.jspa?categoryID=84
    Regards

  • After I import a movie file from the camera memory card, Imovie 10.0.1 acts as if the memory card is empty though I know it isn't.... I can't import that file to iMovie again.. is that the way it worksnow?  Thank you, Filippo

    On IMac 10.9  After I import a movie file from the camera memory card to Imovie 10.0.1 it acts as if the memory card is empty though I know it isn't.... I can't import that file to iMovie again.. is that the way it works now?  Anyone know?  Thanks, Filippo

    I would like to know this too. I imported a lot of files, then Imovie crashed. I went back in and they are not in imovie at all.
    I reconnected the camcorder to import again and though they are still on the camcorder, I no longer see them in the available list of files to import. I'm sure there is some sort of simple setting somewhere that reveals all files even if it thinks they are imported.
    Thanks

  • When importing a file from a folder

    when importing a file from a folder it appears in the organizer as a exclamation mark but no photo. can anyone help i use elements 9

    Hi there,
    Digging up an old thread slightly, but is this still definitely the case? Last week double-clicking a folder definitely just opened up a folder for me to explore its contents, but now I'm constantly accidentally importing huge folders into things like After Effects and Mail... it's very annoying!
    If there's a fix I'd love to hear it!

Maybe you are looking for

  • Past Itunes Purchases, Help.

    I'm trying to download past purchases from my iTunes account onto my computer. It's telling me, "You can download past purchases on this computer with just one Apple ID every 90 days. This computer can be used with a different Apple ID in 75 days." D

  • Connected to network but not internet :(

    I posted in the airport forum but to no avail, hopefuly some of you guys can help, here's my original post: I'm in a holiday lodge, which has a wireless network. I'm friends with the owner so I can fiddle with the modem/router, however as I type this

  • Xi functionalities

    hi friends, I would like to have an elaborate explanation for my below queries:- Does XI has the ability to integrate with a Webservice with minimum changes to out of the box application? Does XI has the ability to prove robust performance and scalab

  • Adobe Air will not update..

    I have 3.8.0.1280 version of Adobe air installed and need to update.. When I update it gives me this error: an error occurred while installing Adobe Air... If I try to run it as an administrator ... nothing happens.. I am running Win 7 Pro... 16.0 GB

  • IMac applications see my iPhone 5s but cannot display the photos.  Last week I was using Image Capture with no problem.

    I have an iMac 10.8.4 and an iPhone 5s. I recently downloaded 110 photos and 10 very short videos using Image Capture v.6.2.  I plugged the phone into the iMac, all of the photos appeared in Image Capture, I selected all and sent them along to a fold