getElementsByTagName("input").value); Returns the undefined value

Help, please! The API DW getElementsByTagName() function returns no value.

I'm defining the following form part of an extension of bar insert:

(skip the usual of head)
< body onLoad = "reportLabel ()" >
< form >
< table border = "0" height = "100" width = "100" >
< tr valign = 'of basic">
< td align = "left" nowrap >
A label:
< input type = "text" name = "label_field" value = "" id = "alabel" > "
< table >
< /tr >
< /table >
< / make >
< / body >
< / html >

And the following JavaScript code:

function reportLabel() {}

Read the label of meta tag in the active document
var dom = DW.getDocumentDOM (); get the dom of the current document
var label = dom.getElementsByTagName ("meta");
for (counter = 0; counter < label.length; counter ++)
{
If (label [meter] .name is 'Label')
Alert (label [Counter]. Content); It works, the function reads the elements of document of the user very well

But how to find the extension form input field so that I can pre-populate it with the label?

Alert (document.getElementById("Alabel"). (Name) function undefined, grrr
Alert (document. GetElementsByTagName("Input").value); returns undefined-> This is the function I want to use
Alert (document.hasChildNodes ()); Returns true, then the DOM document is readable
Alert (document.childNodes.Length); Returns 2
Alert (document. Forms.Length); Returns the value 1
Alert (document. Forms.childNodes.Length); has no childNodes property
}
}

Thank you!
-Scott

getElementsByTagName() returns an ARRAY - so you can not use a point
operator about it as you have. You have to do, for example:

getElementsByTagName ('INPUT') [0] .value etc.

fMichel brandt

srowe3 wrote:
> Please help! The API DW getElementsByTagName() function returns none
> values.
>
> I'm defining the following form part of an extension of bar insert:
>
> (skipping the usual of head)
>
>


>
>
>
>
>

> A label:
>
>

>

>
>
>
> And the following JavaScript code:
>
> function reportLabel() {}
>
> / / Read the meta tag tag in the active document
> var dom = DW.getDocumentDOM (); get the dom of the current document
> var label = dom.getElementsByTagName("meta");
> for (counter = 0; counter)< label.length;="">
> {
> If (label [meter] .name == "Label")
> / / alert (label [counter] content); It works, the function reads the
> the user of the document elements very well
>
> / / But how to find the extension form input field so that I can
> Pre-populate it with the label?
>
> / / alert (document.getElementById("alabel").name); function undefined,
> grrr
> / / alert (document.getElementsByTagName("input").value); Returns
> undefined---> this is the function I want to use
> / / alert (document.hasChildNodes ()); Returns true, then the DOM document is
> readable
> / / alert (document.childNodes.length); Returns 2
> / / alert (document.forms.length); Returns the value 1
> / / alert (document.forms.childNodes.length); has no childNodes property
> }
> }
>
> Thank you!
> - Scott
>
>

Tags: Dreamweaver

Similar Questions

  • Confidence for app.newDoc function always returns the undefined value

    Hello

    I'm doing a script activated by button.  Its purpose is to save a copy of the first page (form data erasure) in its own file in the same path as the open document.  As part of that I had to create a trust to cover the privileges of the app.newDoc function.  I have the following:

    trustedNewDoc = app.trustedFunction (function (nWidth, nHeight)

    {

    app.beginPriv ();

    app.newDoc (nWidth, nHeight);

    app.endPriv ();

    });

    This was recorded in a file called "newdoc.js" in the "app" of javascript.  I closed my Acrobat Pro XI and restarted.  As soon as I try to activate a button with just: "myDoc = trustedNewDoc var (500,500);", it opens the document as specified, but I get "undefined" returned to myDoc - that avoids manipulation of the Fryer.

    If I run the same line of the console, it also returns the value undefined.  Running "myDoc = var app.newDoc ();" also returns undefined, but just "app.newDoc ()"; only returns '[Doc]' - even if ' trustedNewDoc (500,500); "alone is still undefined.

    In any case, I feel like I'm missing something fundamental, even if I found some guides suggesting to do exactly what I have it implemented.  I am pretty sure I have everything entered correctly and followed all the steps, so at this point I'm stumped.  Any help would be greatly appreciated!

    Thank you

    Mike

    Thanks Gilad, that was exactly what he needed!  And thanks for getting back to me so quickly.  Now, I really wish I would have asked this question more early yesterday after spending hours trying to find a solution.

    Unfortunately there aren't really examples I found where a value was returned.  Maybe it's the good sense and I should have better, but I thought that the value has been returned by other means.  In any case, it's great to work with your help!  Now, I have a separate question, with what I need to see if I can get help. Hey, great work and thank you again!

  • ListItemData.value returns the undefined value

    Hi guys

    I'm having a weird problem with a ListView.

    I made a custom, based on the sample Image Loader

    My Custom Image Loader class has more variables and several accessors:

        // The accessor methods of the properties
        QVariant image() const;
        QString label() const;
        bool loading() const;
    
        //-- MY ACCESORS
        QString desc() const;
        QString target() const;
        QString title() const;
        etc...
    

    In addition, the example uses a QListDataModel, and in my application, I use a GroupDataModel.

    The following code works. Is my earlier version in which I didn't load the images on the web:

    (lst is a QVariantList loaded from a JSON)

        _dataModel = new GroupDataModel(QStringList() << "porder");
        _dataModel->setParent(this);
    
        //-- insert the JSON data to model
        _dataModel->insertList(lst);
    
        //-- make the model flat
        _dataModel->setGrouping(ItemGrouping::None);
    
        //-- find cascades component of type ListView with an objectName property set to the value 'listView'
        //-- assign data model object (m) to its GUI representation object (list_view)
        if(_listView) _listView->setDataModel(_dataModel);
    
        _dataModel = new GroupDataModel(QStringList() << "porder");
        _dataModel->setParent(this);
    
        //-- insert the JSON data to model
        _dataModel->insertList(lst);
    
        //-- make the model flat
        _dataModel->setGrouping(ItemGrouping::None);
    
        //-- find cascades component of type ListView with an objectName property set to the value 'listView'
        //-- assign data model object (m) to its GUI representation object (list_view)
        if(_listView) _listView->setDataModel(_dataModel);
    

    I tried to fill the list with my custom class by replacing "_dataModel-> insertList (lst);" with this code:

    foreach (QVariant vItem, lst) {
        CustomImageLoader *tempCIL = new CustomImageLoader(vItem.toMap(), this);
        _dataModel->insert(tempCIL);
    }
    

    In other words, the same list that was used in the previous version now is iterated and CustomImageLoaders are created, each contains data in the list.

    The result is a list with the exact number of items, but they are all empty.

    I have connected the properties of tempCIL and they do not contain the same channels from the original list.

    By filling the list with the custom class, in my code QML
    ListItemData.title now returns undefined instead of a string.

    If I print the ListItem ListItemData, it displays an instance of CustomImageLoader.

    I did C++ and QML code very similar to the example of Image Loader, and I can't see what is wrong.

    Advice and pointers are welcome.

    DERP DERP

    I'm not even good to copy

    I missed the Q_PROPERTYs in all

    class CustomImageLoader : public QObject
    {
        Q_OBJECT
    
        Q_PROPERTY(QVariant image READ image NOTIFY imageChanged)
        Q_PROPERTY(QString label READ label NOTIFY labelChanged)
    
        Q_PROPERTY(bool loading READ loading NOTIFY loadingChanged)
    
        Q_PROPERTY(QString desc READ desc)
        Q_PROPERTY(QString porder READ porder)
        Q_PROPERTY(QString target READ target)
        Q_PROPERTY(QString title READ titulo)
        ...
    

    4 hours of pain

  • Pass data to jsx function returns the undefined value

    Probably a noob but question why I get defined during the passage of data to a jsx function?

    JavaScript

    var csInterface = new CSInterface();
    csInterface.evalScript ("myFunc ('ack')");

    ExtendScriptfunction

    {myFunc (property)}

    Alert ("connected myFunc get property value:" + property);

    }

    Things work fine if I just a life normal functionc everything without the passage of a variable.

    Found myself in the syntax

    csInterface.evalScript ("myFunc (" "+ ack +" ")");

  • To access the bindItems returns the undefined value

    Hello

    I'm trying to access the string representing the expression SOM associated with dynamic properties for a drop-down list by using script.

    Looking at the xml source I see the bindItems element with attributes in ref, labelRef and valueRef.

    I thought I'd try to access these values for a particular DropDown in the script editor would be:

    DropDown.bindItems.ref

    or something similar, but an exception is thrown that DropDown.bindItems is not defined.

    Any help would be greatly appreciated.

    Thank you.

    Kyle

    Hi Kyle,.

    I don't know what is the boss, some seem to work some don't. But you can work around it by using one of the following methods.

    . REF DropDown ["#bindItems"]

    DropDown.resolveNode('#bindItems').ref

    Good luck

    Bruce

  • JavaScript Command Window.getComputedStyle (document.body, ': after') .getPropertyValue ('content') returns the content with quotes

    When I use in my css:
    body: after {}
    content: "mobile";
    display: none;
    }
    And by controlling javascript with the command:
    size var = window.getComputedStyle (document.body, ': after') .getPropertyValue ('content');

    I get in firefox (mac v 23.0.1) returns the '' mobile' ' string with double quotes as return and, therefore, checking if size == 'mobile' returns false. In safari, the value returned 'mobile' without the quotes. How is it?

    What you get is a string that represents what you specified in the content.

    A content specification can include other things like a counter: body: after {content: "subjects []" counter (topics) "]" ;}}

    size = window.getComputedStyle(document.body,_':after').content would give: 'subjects []' counter (topics) "].

    If you need test the exact text of the contents: size == ' 'mobile "";

  • List of input values (multi-column) must return the output text once the value is selected

    Hello

    I am trying to achieve conditional:

    I create a searchVO(select '' empNumber from dual) - to accept the input value (name empNumber).

    I create empLovVO (select enum,ename, addr, city of emp). lov attached to empNumber (searchVO).

    In the list of values when I select a value (emp 1, a, xyz, abc), it must return the default aby associated with emp values 1 to my output texts

    the name of the EMP one.

    addr xyz

    City abc

    It should also automatically change the values if I select another empNumber.

    Please let me know how to achieve this.


    Thank you

    Firstly, for the searchVO, add a three other attributes, name, address, and City, the type of string:

    and make sure they are still editable:

    Then, you're mapped LOV enum attribute EmpNumber, right?

    Do similar for the newly created attributes, in the list of values dialog box validation:

    Ename--> name,

    --> addr addr,

    City--> City

    Then, just to show these attributes in the form of output text, and you'll get what you want...

  • Verity &amp; lt; cfsearch &amp; gt; Returns &amp; quot; collection is not &amp; quot; error - when the collection is

    I created a collection using the Coldfusion Administrator - and this shows when viewing of all collections. I also filled the collection using < cfindex > - by using a SQL query - and that seems to work well. He put 117 entries in the collection - and this appears also in the Coldfusion Administrator recoveries.

    The problem is when I try to search the collection with the < cfsearch > tag, it returns an error indicating "collection that you specified does not exist or is not registered with the ColdFusion Search Service."

    I can see the collection that I'm looking for is. Is there anything else I need to do to get the < cfsearch > function to find the collection? I tried to repair the collection, the collection optimization, even delete and recreate - nothing seems to work. I Specifies the full path to the collection in my cfsearch, so that shouldn't be the problem.

    Y at - it another command or feature, I need to run?

    Thank you!!! Pamela

    Quote:
    I Specifies the full path to the collection in my cfsearch

    Not sure if this is the problem. The path exists in the CFAdmin. You can see the name of the collection in the cfsearch tag.

    Code to see the attachment, you can do a cfdump to see what the results are returned.

  • How can you specify the default value for the undefined array elements

    According to aid LV, the tables have two default values, the normal default value and the default value for the undefined array elements.

    I assume that there must be a way to specify the default value for later, but I can't find it anywhere.  Any ideas?

    I know that you can drag the item out of the table container.  Change the default value on this scalar element.  Then drag the item in table tank.

  • Returns the time value zero calendar

    Hi, I write code with calendar that return the value zero for HOUR_OF_DAY and MINUTE when I run this code in Strom2(9550-5.0.0.334) below.

    Calendar calendar = Calendar.GetInstance ();
    Date date = new Date (this.arrivalTimeField.getDate ());
    calendar.setTime (date);
    Day int = calendar.get (Calendar.HOUR_OF_DAY);
    int minute = calendar.get (Calendar.MINUTE);

    So please help me for this problem and thanks in advanced

    I had a lot of problems like myself.  Invariably, I find that the bug is my code.  Usually, it is not difficult to find using the appropriate debug or SimpleDateFormat (because times are difficult to interpret, it is good to let the system do it for you!).  I suggest you do the same thing here.

    If you find that the system does not have it that you wait, then give us the details, for example, give us the long value that you provide to the calendar and the time you go out. You should be able to do it in two or three lines, just using the standard Java RIM (i.e. None of your classes).  You can also indicate the time zone that you are testing in.

  • Do stuff to PL/SQl that returns the value and redirect to modal page by setting this value

    Hello

    a button click Page1 I would perform a PL/SQL procedure that returns a value in P1_ITEMVAL and then redirect to a page 2 (modal page) and the value of an item on this page with the value previously returned. To do the same thing with a normal page is quite easy:

    Button action is present, then process of PL/SQL that returns the value in the P1_ITEMVAL element and, finally, a branch at page 2 that sets P2_ITEMVAL with P1_ITEMVAL. I really have no idea how to do the same thing when the target is a modal page.

    I created a unit test on https://apex.oracle.com/pls/apex (application 1554 - redir_to_modal)

    Workspace: tests

    USER: supporter

    PWD: supporter1234

    Any help would be much appreciated.

    Kind regards

    Pavel

    Pavel

    If you prepare a URL using the value calculated in the PLSQL of DA part you can then use a subsequent stage of javascript to set the location of the window.

    This will jump to the top of the page of the modal dialog box

    : P1_URL: = apex_util.prepare_url)

    ' f ? p ='|| : APP_ID - Application id

    |': 2' - Page id

    ||': ' || : APP_SESSION - Session id

    ||':'                      -- Request

    ||':NO'                    -- Debug

    : ': ' - Clear Cache

    : ': ' - Settings

    ||' P2_ITEMVAL'

    : ': ' - Parameter values

    || (: P1_ITEMVAL);

    then in the action of javascript

    Window.Location.Replace ($v ('P1_URL'));

    Hope this is of some use

    Concerning

    Kelvin

  • DBMS_CRYPTO. HASH returns the value encrypted letters

    Hi all

    SE 12.1

    I'm using dbms_crypto. Hash to encrypt the values. But encrypted the returned string is at the top of the case. Calling WebService Im externally requires the proper case...  I've seen other ciphers (java-based) hash functions that seem to properly encrypt with a mixture of cases, what I need.

    Is it possible to return the string that is encrypted in the proper case.

    DECLARE

    l_ccn_raw RAW (128);

    BEGIN

    l_ccn_raw: = utl_raw.cast_to_raw('1234');

    l_ccn_raw: = dbms_crypto.hash (l_ccn_raw, dbms_crypto.hash_sh256);

    dbms_output.put_line (' TOKEN: ' |) ( l_ccn_raw) ;

    END;

    You can always try dbms_output.put_line (' TOKEN: ': bass (l_ccn_raw));

    But are you sure that you don't need a hashvalue base64-coded?

    dbms_output.put_line (' TOKEN: ' | utl_raw.cast_to_varchar2 (utl_encode.base64_encode (l_ccn_raw)));

  • JavaScript input parameter should take the value of the element page Apex

    I have a JavaScript function which i dwonloaded ffrom net to generate bar codes

    DrawCode39Barcode(data,checkDigit).

    I call this function in the body of page attribute by using the following script

    < div id = "P5_X" > < / div >

    < script type = "text/javascript" >

    / * < ! [CDATA [* /]]

    function get_object (id) {}

    var object = null;

    If (document.layers) {}

    object = document.layers [id];

    } Else if (document.all) {}

    object = document.all [id];

    } else if (document.getElementById) {}

    object = document.getElementById (id);

    }

    Returns the object;

    }

    get_object('P5_X').innerHTML = DrawCode39Barcode('1-1-1111',0);

    < /script >

    When I run the page, the barcode for the value 1-1-1111' is generated. Please help so that when this page is running it will automatically take the value of the page item P5_X as parameter instead of hard coded value ' 1 - 1-1111'

    I think it would be simpler. You use the same id for the region and the order of the day, they must be different id

    JavaScript code can be in a dynamic action who sets fire to the loading of the page, or load Execute on the page of your page properties section.

    $('#barcode').html (DrawCode39Barcode ($v ('P5_X'), 0));

  • GetCurrentRow returns the null value while trying to values defined in table advanced VO

    Hi all

    I'm trying to set default values to a bean advanced table according to the selection of LOV in another region. Here is the code and getCurrentRow returns the value null and null pointer exception is throwed. Please let me know where Iam going bad.

       if (pageContext. ) isLovEvent ())

    LovInputSourceId = string pageContext. getLovInputSourceId ();

       if ("poNumber". ) is equal to ()lovInputSourceId))

    pageContext . putDialogMessage (new OAException()"inside Onclick"));

    OAViewObject VO = (OAViewObject) am . findViewObject ()"L3APNonprojbasedpoVO1");

    VO1 OAViewObject = (OAViewObject) am . findViewObject ()"L3APCodingInfoEOVO1");

      VO . setWhereClause (null);

      VO . setWhereClauseParams (null);

      VO . executeQuery ();

      VO1 . setWhereClause (null);

      VO1 . setWhereClauseParams (null);

      VO1 . setWhereClause ("1=2");

      VO1 . executeQuery ();

       if (null! = VO )

       Row ReqRow = (Row) VO.first();  

       if (null ! = ReqRow )

       int idx = VO . getRowCount ();

       for (int xx = 0; xx < idx ; xx ++)

    String Description = (String)VO. getCurrentRow (). getAttribute ()"ItemDescription");

       Number Amount = (Number)VO. getCurrentRow (). getAttribute ("Amount");

       String Company = (String)VO. getCurrentRow (). getAttribute ("Company");

    String ProfitCenter = (String)VO. getCurrentRow (). getAttribute ()'ProfitCenter');

       String Dept = (String)VO. getCurrentRow (). getAttribute ("Dept");

       String Lob = (String)VO. getCurrentRow (). getAttribute ("Lob");

       String Account = (String)VO. getCurrentRow (). getAttribute ("Account");

    pageContext . putDialogMessage (new OAException()"inside loops'));

       if (null! = VO1 )

      { am. invokeMethod ("createRow");

    VO1 . getCurrentRow (). setAttribute ()'Description',Description);

      VO1 . getCurrentRow (). setAttribute ("Amount",Amount);

      VO1 . getCurrentRow (). setAttribute ("Company",Company);

      } ReqRow = (Row)VO.next(); }

       else {}

    }

    }

    Here is the method in AM.

    Public Sub createRow()
    {

    OAViewObject vo = (OAViewObject) getL3APCodingProjectEOVO1 ();

    vo.clearCache ();

    If (!) VO.isPreparedForExecution ())
    {
    System.out.println ("project VO executed");
    vo.setWhereClause (null);
    vo.setWhereClauseParams (null);
    vo.setWhereClause ("1 = 2");
    vo.executeQuery ();
    }
    Line = vo.createRow ();
    vo.insertRow (row);
    row.setNewRowState (Row.STATUS_INITIALIZED);

    }

    I modified your code a bit. This code does not require a method of AM.

    If the problem still not solved.

    If you want you can try this and let us know what happens.

    if (pageContext.isLovEvent())
    {
       String lovInputSourceId = pageContext.getLovInputSourceId();
       if("poNumber".equals(lovInputSourceId))
      {
      pageContext.putDialogMessage(new OAException("Inside Onclick"));
      OAViewObject VO=(OAViewObject)am.findViewObject("L3APNonprojbasedpoVO1");
      OAViewObject VO1=(OAViewObject)am.findViewObject("L3APCodingInfoEOVO1");
      VO.setWhereClause(null);
      VO.setWhereClauseParams(null);
      VO.executeQuery();
    
      VO1.setWhereClause(null);
      VO1.setWhereClauseParams(null);
      VO1.setWhereClause("1=2");
      VO1.executeQuery();
    
      if (VO != null)
      {
      for( Row ReqRow = (Row) VO.first();  ReqRow != null; ReqRow = (Row) VO.next())
      {
      String Description = (String)ReqRow.getAttribute("ItemDescription");
      Number Amount = (Number)ReqRow.getAttribute("Amount");
      String Company = (String)ReqRow.getAttribute("Company");
      String ProfitCenter = (String)ReqRow.getAttribute("ProfitCenter");
      String Dept = (String)ReqRow.getAttribute("Dept");
      String Lob = (String)ReqRow.getAttribute("Lob");
      String Account = (String)ReqRow.getAttribute("Account");
      pageContext.putDialogMessage(new OAException("Inside for Loop"));
    
      if (VO1 != null)
      {
      Row newRow  = VO1.createRow();
      newRow.setAttribute("Description",Description);
      newRow.setAttribute("Amount",Amount);
      newRow.setAttribute("Company",Company);
      VO1.insertRow(newRow);
      }
      }
      }
      }
    }
    

    See you soon

    AJ

  • Returns the value of column line

    Greetings!  I currently have a request we will tell

    SELECT value, period FROM MAS_CFUS_KEYACM_CONTROLDATA ORDER BY cf_keyword_ID

    RESULTS

    Period value

    --------------------------

    100.0002 1 JANUARY 14

    -35.68 1 DECEMBER 14

    -1943.67 NOVEMBER 1, 14

    678.0013 OCTOBER 1, 14

    This continues for about 15 results by cf_keyword_ID.

    I'm looking to return the VALUE first in a new column called PREV1, the second value of PREV2, third in PREV3 and so on.  The same goes for the dates.  And all this for only the first 10 values of each cf_keyword_ID.  Can anyone suggest the best way to achieve this?

    Thank you!!

    Hello

    This is called pivoting.  Because I don't have a copy of your table test, I'll use scott.emp to illustrate.

    This shows the first 3 employees for each job, in order by hiredate, along with their hiredates:

    WITH relevant_data AS

    (

    SELECT ename, job, hiredate

    row_number () taken OVER (PARTITION OF work

    ORDER BY hiredate

    ) AS r_num

    FROM scott.emp

    )

    SELECT *.

    OF relevant_data

    PIVOT (MIN (ename) AS ename

    MIN (hiredate) AS hiredate

    FOR r_num (1, 2, 3)

    )

    ORDER BY job

    ;

    Output:

    WORK 1_ENAME 1_HIREDATE 2_ENAME 2_HIREDATE 3_ENAME 3_HIREDATE

    --------- ---------- ----------- ---------- ----------- ---------- -----------

    ANALYST FORD 3 December 1981 SCOTT April 19, 1987

    The CLERK SMITH December 17, 1980, 3 December 1981 JAMES MILLER January 23, 1982

    MANAGER JONES 2 April 1981 BLAKE 1 May 1981 CLARK June 9, 1981

    PRESIDENT KING November 17, 1981

    SELLER ALLEN 20 February 1981 WARD 22 February 1981 TURNER 08-Sep-1981

    There are actually more than 3 SECRETARIES and SALESMEN.  Which does not cause an error; the only first 3 are shown.

    As you can see, having less of 3 does not cause any errors, either.

    For more info on pivots, see the FAQ of the Forum:

    Re: 4. How can I convert rows to columns?

    I hope that answers your question.

    If this isn't the case, please post a small example of data (CREATE TABLE and only relevant columns, INSERT statements) for all of the tables involved and also publish outcomes from these data.

    Explain, using specific examples, how you get these results from these data.

    If yod post rather a problem using scott.emp, then you need not display the sample data; just results and explanations.

    Always say what version of Oracle you are using (for example, 11.2.0.2.0).

    See the FAQ forum:

    Re: 2. How can I ask a question in the forums?

Maybe you are looking for

  • Why won't my mac won't play music in iTunes?

    I am on iTunes 12.4.3.1 and won't play any sound.  I click on play and audio appears next to the sone but no sound and the progress bar does not move.  I checked the sound settings and volume levels.  Similar questions seem to be a long time ago or r

  • Why set up new phone replaces old backup

    I'm really confused about the 'proper' method to restore the backup to the new phone. iPhone 6 is damaged buy iphone 5 and plug it into itunes try to restore the backup (Aug6) to the iphone 5 error message - iphone5 needs updates. said to set up as a

  • Black screen after reboot - M30-70

    Hi @ all, I received last week from 5 Lenevo M30-70 (April 1, 2015) - all brand new in the box (with Windows 7 x 64 professional pre-installed as the OS). I have successfully Setup a laptop with all our standard applications within our domain - this

  • Two versions of Photos in El Capitan?

    I used a local network file server to store my library iPhoto for years.   I could access it from multiple Macs on the local network, but recently I came across a surprising problem.  I've updated several computers to El Capitan, an old Macbook Pro,

  • Frequency measurement of analog input using DAQmx C APIs on SMU-6341 map

    Hello I use Linux DAQmx and attempt to measure the frequency of analog input using the map DAQ SMU-6341. There is an ANSI-C frequency measurement example: / usr/local/natinst/nidaqmx/examples/ansi_c/Analog_In/Measure_Frequency/Cont_Freq-Int_Clk-SCXI1