How to acquire and store the values of DAQmx analog voltage (I do not want the graphic, but strings and values in a chart)?

Hello

How acquire and store the values of voltage DAQmx?

I tried several code example, but they can't get the chart. I don't want to chart. I want to measure exactly the analog voltage values and record these values - as an excel chart, that contains the selected channels and voltage values.

What the example code that I can use?

My hardware is NI PCI-6251.

Thank you very much.


Tags: NI Software

Similar Questions

  • How to acquire data from the memory of the meter

    I am a beginner of Labview. I don't know how to acquire data from the memory of the meter.

    I read a few examples of data acquisition, but apparently not similar to my case. I can't use DAQ in my computer, because I don't have DAQ card.

    Could someone give me some pointers? Similar examples would be great.


  • How to remove pictures of the iphone but not on icloud?

    Hello, I have an iphone 6 and I have a backup to icloud. I need to free up space on my iphone, I noticed when I delete a photo on my phone its disappear automatically icloud. Is there a way to remove photos from the phone, but keep about icloud?

    Thank you!

    iCloud Libray Photo is not a backup service; It is a synchronization service. Whatever you do a device is synchronized with all other devices, including your computer and iCloud. That's how it was designed to work.

    If you are running out of storage space on your device, choose to use a local library optimized photos. This will dynamically adjust the size of the library based on how much storage is available.

    Otherwise, you will need to disable iCPL and return to the management of your image sync via iTunes.

  • How to remove photos from the iPhone but on mac?

    I am very new to my Macbook and just trying to learn the ins and outs. I've had an iPhone for a few years now and especially had a Macbook because I love my iPhone and needed a new computer.  My problem is, I'm willing to delete the photos on my iPhone to clear up some space, but keep them on my Macbook. Whenever I have delete a my phone is off, it removes off my macbook too.

    Whenever I have delete a my phone is off, it removes off my macbook too.

    You have iCloud library enabled, as well on your iPhone and your Mac? Then you sync the library on your Mac and your iPhone in iCloud. all photos are stored in iCloud, make you adjustments will synchronize to iCloud, and then the changes will be synchronized to all devices, so your photo library will look exactly the same on all devices.

    Do not delete any photo you want on any of your devices, if you use iCloud photo library.  To win the storage on your iPhone select "optimize storage. Then the photos on your iPhone will be reduced in the size of the file, but you need an internet connection if you want to see the full versions.

    If you want less photos on your iPhone to your Mac, do not use iCloud photo library.  Select only 'My Photo Stream' transfer photos from your iPhone to your Mac or use a USB connection. My photo stream is more economic, in any case, because it's free. iCloud library uses the iCloud paid storage and only 5 GB are free. If your photos need more storage, you will need a paid subscription.

    See these support pages: iCloud Photo library FAQ

    and: iCloud: get help using my photo stream

    If you want to turn off iCloud photo library, be sure to disable 'optimize storage"before do you. Wait for the full versions to download again to iCloud.

  • How do I enlarge the Graphics.drawString () string

    Hello
    I'm sorry if my question is stupid.
    I have this method

    public void paint (Graphics g)
    {

    String s = "Java is interesting."
    g.drawString (s, 40,50, 0);

    }


    How to enlarge the font of the String s.

    Graphics class has a setFont(Font f) method.

  • BlackBerry smartphone how to disable internet via the network, but leave the wi - fi on?

    Hi all

    I'm new to Blackberry but love until now.  I have a questionette for you to wizzo on something that left me speechless:

    My rate is not all internet at all (I'm only a poor pensioner!), but it seems that installation is there for me to use it if I do not pay attention if I want to turn it off permanently while installing wi - fi on.  This was possible on my android, but I gave to my wife because the screen is not too sensitive to my skin.  I got the Blackberry the the guy in the store where I bought it, but all he has done is disable data completely so now I can't use it on WiFi either.

    Can you tell me if this is possible and if so, how?

    Thanks in advance.

    As long as your data Services (under manage connections > Mobile Network Options) are lit, you will receive data via Wi - Fi.  When you turn on your Mobile network, you are turning ON the ability to receive calls and texts.  If you do not require these two features to be active (and therefore guarantee 100% that you use not any network data), then let your off Mobile network.  As you said, leaving the disabled Mobile network is similar to airplane mode.

    I hope that clears up any confusion.  Please post back if I'm not understanding something.

  • How to remove music from the iPhone but not the iTunes library

    How do I remove songs from my phone, without remove them permanently from my iTunes library?

    Hello cruzansingerboi,

    If I understand correctly, you want to know how to remove songs from your iPhone 5 c without removing the tracks from your music library to iCloud. The article below provides a lot of information on the management of your music library to iCloud and it also describes the process to remove the pieces of your iOS devices.

    Delete songs and video clips from your music library - Apple Support iCloud

    iPhone, iPad, or iPod touch

    1. In the music application, find the name of the song, album, or playlist you want to delete and tap the Options icon more .
    2. Tap on delete download to remove the item for offline listening. The item will remain in your library on all your devices.
      Press on my music to remove to remove the item completely from your library on all your devices.

    So long.

  • How to get some of the files, but not all of them in a query

    Hi I have a query that returns events that do not have the mrreceived as 'Y '. I'm trying to find a way how we can rewrite the query which gives the events without mrreceived as "Y" or mrreceived as null but events both on the handset? "

    {code}

    Select c.client_id,
    e.event_id,
    e.mrreceived,
    e.event_status_code,
    e.proj_batch_id,
    p.ProviderName,
    p.clientproviderid
    the event e, customer c, slip p
    where e.client_id = c.client_id
    and e.clientproviderid = p.clientproviderid
    and c.client_id = 1250
    and p.clientproviderid not in
    (select distinct sliding b.clientproviderid b, event x
    where b.clientproviderid = p.clientproviderid
    and b.clientproviderid = x.clientproviderid
    and x.mrreceived = 'Y '.
    and e.client_id = 1250)


    {code}

    user11961230 wrote:

    I just want to see the id 10371.

    Ok. If you want to see id with both Y and NULL, right? If so:

    select c.client_id,
           e.event_id,
           e.mrreceived,
           e.event_status_code,
           e.proj_batch_id,
           p.providername,
           p.clientproviderid
    from   event e, client c, clientprovider p
    where  e.client_id = c.client_id
    and    e.clientproviderid = p.clientproviderid
    and    c.client_id = 1250
    and    p.clientproviderid in
           (select b.clientproviderid  from clientprovider b, event x
             where  b.clientproviderid = p.clientproviderid
             and    b.clientproviderid = x.clientproviderid
             and    (x.mrreceived = 'Y' or x.mrreceived IS NULL)
             and    e.client_id = 1250
             group by b.clientproviderid
             having count(distinct nvl(x.mrreceived,'X')) = 2
           )
    /
    

    SY.

  • How can I make Firefox the browser but not to make the default browser?

    I want to use Firefox as a browser on some sites, but not all. I don't want to make Firefox or Internet Explorer as default browser but use each on sites such as Google or MSN certaion web.

    For your choice of default browser, consider that you want to manage links in other programs, such as word processors, Adobe Reader, or an external e-mail program. Windows will use your default browser to open links.

    Then, when you visit a site in a favorite browser, open the browser and use bookmarks or Favorites to get there.

  • How can I disconnect from the internet but to maintain my connection to the local network in Windows 7?

    I need to disconnect internet to my PC Windows 7 while maintaining my LAN network. Can anyone help?

    Hello

    If you want to disconnect Internet on the Windows 7 computer, then you can follow the steps mentioned below. These steps would help you to disconnect from the wired connection, while the connection is still active.

    (a) click Start.

    (b) type network and sharing Center in the start search bar and press ENTER.

    (c) in the left pane, click on change adapter settings

    (d) it would be to open a window with the connection to the wired LAN.

    (e) now, right click on the wired LAN connection icon and select Disable. (Provide the password if necessary).

    (f) it would disconnect the computer from Windows 7 to connect to the local network.

  • Can I change the shape of a color ramp (I do not want a square but a heart)

    Hello!

    I want to know if we can change a color ramp, because mine is a square and I want to have a heart.

    If not, perhaps can I load a picture (of a heart) and change its color depending on the input data?

    Thank you!

    want you a heart? (I hope that's correct )

    In the attachment is what you want.

    How I did it:

    -in Photoshop (you can use something else), I created an image, crop the middle like a heart, create a new layer and save it in GIF format. It is very important to save it in gif format because it allows transparent areas of the image. Save as bmp will fill in the middle with white.

    -Open your cover and (using the mouse) drag-and-drop the gif file created.

    -Add the 'color strip' (make sure its size to mount to the heart), bring back the front image and send "color ramp" (there are a few buttons that allow you to set the order of the controls and indicators - front or back on the toolbar)

    You now have your heart.

    Paul

  • How can I move my c:\ to d:\ FF bookmarks? I do not want on my system for reasons of backup drive.

    The current version of FF (10.0.2), Win7, FF running on drive c:

    I really want to MOVE my favorites on my d: drive so that when I restore/nuke my c: drive of the system, I do not lose my favorites.

    Thanks for your help in telling me how to do this.

    Then, you need to adapt the whole profile to the new drive. Or perhaps consider using Firefox Portable.

    P. S.
    See http://kb.mozillazine.org/Profile_manager#Custom_profile_location

  • How to keep track of the last selectedItem in datagrid?

    Hi all

    I use Flex 4 and an AdvancedDataGrid.  I need to keep track of the previously selected item.  I can't think where this good capture.  In an itemClickHandler method, the value of the selectedItem of the grid is already the element currently selected.

    FocusIn and Focusout/focusouthandler() attributes apply to the entire data grid, not the single line in the datagrid control.

    Thank you.
    Bonnie

    If I understand what you're asking correctly:

    based on the story how 'clicks', you simply store the index selected in an arraycollection collection.

    If you only need one. use 2 variables. One to store the current index and the other to store the previous.  And 'click' call a function that moves the current index in the previous. and the new current index of slected.

    If your 'click' has already done something else, just make a wrapper function that incorpates the copy of the index of the clicked and then done everything what you need.

    something like that... If you insert data in the ADG it should show something other than-1

    ////////////////////////////////////////////////////////////////////////////////////////// ///////////////////

    <>

    xmlns:MX ="http://www.adobe.com/2006/mxml" layout = "absolute" > "

    Import mx.collections.ArrayCollection;

    [

    Bindable]

    private var history: collection ArrayCollection = new ArrayCollection();

    [

    Bindable]

    private var last: int;

    [

    Bindable]

    private var current: int;

    private function recordHistory():void {}

    last = current;

    current = adg1.selectedIndex;

    //***//

    history.addItem (adg1.selectedIndex);

    }

    ]]>

    ////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////

  • How can I upgrade the graphics on a firebird 802?

    HP Firebird Voodoo DNA 802 product # GM339AAR #ABA S.N. {removed privacy}

    Graphics card: Nvidia NForce 760I SLI. Drivers latest have been installed

    I'd like to update the graphics but don't know how. NoPCI slots.

    Shortly after the release of the Version of the driver GeForce 266.58 WHQL GPU Nvidia GeForce 9800 S removed from the NVDISP. File INF Display Information included with the newer driver installation programs. It is possible to change the NVDISP. INF file to include the GeForce 9800 S GPU and install the latest drivers but the Nvidia Control Panel is missing a few pages. I hope Nvidia will fix this later.

    I used the following three files from the site Web NVIDIA under Windows 7 64-bit and Vista 64-bit. From my experience, they are more good, more complete and up-to-date files that install properly on my two Firebirds.

    nForce Driver Version WHQL 15.56

    GeForce Driver Version WHQL 266.58

    System Tools NVIDIA with support from ESA Version 6.08

  • How to add reflection to the SWF format?

    I created a slide show SWF in Flash and incorporated it into my Web page. But now I want to think below himself and fade out gradually as I've seen in countless other Web sites. I asked how to do Flash in the forum but got no response. (And for some reason, as of today, 06/03/12, I can no longer post anything in the Flash Pro forum). But let's not dwell on it. How can I reflect a SWF?

    To take into account what in the .swf, you must create the reflection as part of the .swf.

    So to increase the dimensions of the Flash doc by some number of pixels, you want to be considered part.

    Then you must create the reflection as part of the original image, so it has a half top.. normal image, then also a bottom half or bottom 1/3 or more.

    And reflection is normally at an angle, I suggest that you create this as a .png, because you might have part of the picture will overlap the next image in the slideshow and that this part of overlap to be transparent.

    If you have your original... then flip or mirror image that right down below all at the bottom of the original. Then tilt the lower part slightly to imitate a reflection...

    Now, we have identical images. but inside we went upside down... put the top mirror.

    Then apply a gradient mask that fade to 100% opaque at 100% transparent.

    Also I suggest that create you outside of Flash images... but if you need to, you can also do this in Flash... the principles are the same.

    Ton of tutorials... just Google "Photoshop mirror"... it's just a:

    http://www.designfreebies.org/design-tutorials/Photoshop-tutorials/Photoshop-tutorial-Simp the-and-easy-mirror-reflection.

    So this isn't a procedure of actionscript, this is a physical process, create the reflection in the process image.

    Best wishes

    Adninjastrator

Maybe you are looking for