How to export XY graph picture to clipboard (or file) with labview 6i

Hello,
I would like to export XY graph picture to clipboard (or file) to insert it in a word document using labview 6i
I found example for labview 8 using invokenode but not with labview 6i
But this invokenode doesn't exist in labview 6i : here's what I found in labview 6i
 Does anyone knows how to use this one ?
thanks in advance
Solved!
Go to Solution.

I would recommend you use Write PNG File.vi instead of Write JPG File.vi unless the place you are using it cannot handle PNGs.  The PNG will be much better quality and should be about the same size for this type of image.
Message Edited by DFGray on 02-03-2010 07:22 AM
This account is no longer active. Contact ShadesOfGray for current posts and information.

Similar Messages

  • How can i make a picture from a video file with final cut pro x?

    how can i make a picture from a video file with final cut pro x?

    Go to the "share" menu, select "save current frame"

  • How to export "gif" animation frames as individual .psd files with layers intact?

    Hi, after creating an extended 25 frame animation (as if building a .gif) I would like to export each frame to individual .psd files with all the layers showing in each respective frame intact as separate editable layers (rather than each frame as a flattened one layer image/psd)...how can this be done? thanks

    maybe it would be easiest if there were just a script which would delete all the layers not visible in a frame but leave the visible layers unflattened, then the file could be saved with a new_name_001 etc., then the deletions could be undone manually via option+command z, the animation advanced by a frame...repeat
    is there a script which deletes all but the visible layers in a frame -- but leaves those which are visible unflattened/editable?
    thanks

  • How to read columns of a Microsoft Excel .csv file with LabVIEW?

    This should be simple.  Any ideas on how to read an Excel file with csv extension using LabVIEW?
    Thanks!

    Use the Read From SpeadSheet File.VI which you can find on the FILE I/O pallette.
    "Read From Spreadsheet File
    Reads a specified number of lines
    or rows from a numeric text file beginning at a specified character offset and
    converts the data to a 2D, single-precision array of numbers. You optionally can transpose the
    array. The VI opens the file before reading from it and closes it afterwards.
    You can use this VI to read a spreadsheet file saved in text format. This VI
    calls the Spreadsheet String
    to Array function to convert the data."
    The CSV file is essentially a text file which uses commas as delimiters in the files structure.

  • How to export diadem channels to an existing excel file with a certain configuration

    Hello,
    I would like to export some channels from the Data Portal of Diadem  to an existing excel file. The excel file consists of many spreadsheets and each channel  should match one spreadsheet.
    I´ve tried to use EXCELExport() function but it doesn´t work.(this function is designed for something else, it generates a new excel file). I´ve tried to access to each spreadsheet and copy the information throughout a for statement but this solution needs a lot of time. If somebody has any idea, please help.   
    Solved!
    Go to Solution.

    Hi Ovidius,
    You have two options that I can think of.  You can export the data from the Data Portal to a temporary file, probably a CSV file, then load the data from file into the Excel template, OR you could stick with the Excel ActiveX approach but change to assigning a range of cells instead of individual cell values one at a time.
    There is an Excel File Export option in DIAdem, but it always creates a new Excel file, it can not be used to export to an existing Excel file.
    Brad Turpin
    DIAdem Product Support Engineer
    National Instruments

  • How do i move a picture from one pdf-file to another already created pdf-file with adobe reader?

    How do I move a picture from one pdf-file to another, already created pdf-file, with adobe reader?

    Reader doesn't have editing capabilities.

  • How to export the text edit data to excel file without splitting the data in excel file?

    how to export the text edit data to excel file without splitting the data in excel file?
    I have a requirement in SAP HR where in the appraiser can add comments in the area given and can export that to excel file. Currently the file is getting exported but the comments getting split into deifferent rows.
    I want the entire comment to be fit in one row.
    Please help.
    Thank you

    Hi,
    if your text edit value is stored in 'lv_string' variable.
    then before exporting the value to excel you have to remove CL_ABAP_CHAR_UTILITIES=>NEWLINE
    that is '#' from the variable lv_string.
    for that use code some thing like this.
    REPLACE ALL OCCURRENCES OF CL_ABAP_CHAR_UTILITIES=>NEWLINE in lv_string WITH space.
    I think this will do the trick.

  • How do I get my pictures if my phone isnt with me

    how do I get my pictures if my phone isnt with me????

    Telepathy.
    What on earth do you mean "how do I get my pictures if my phone isnt with me?"?

  • How to get string (specified by line and column) from txt file with labview

    Hi everyone
    How to get string (specified by line and column) from txt file with labview
    thx 
    Solved!
    Go to Solution.

    As far as I know, a text file has no columns.  Please be more specific.  Do you mean something like the 5th word on line 4, where words are separated by a space, and lines are separated by a newline character?  You could the Read from Spreadsheet String function and set the delimiter to a space.  This will produce a 2D array of strings.  Then use index array and give the line number and column number.
    - tbob
    Inventor of the WORM Global

  • How can I write new objects to the existing file with already written objec

    Hi,
    I've got a problem in my app.
    Namely, my app stores data as objects written to the files. Everything is OK, when I write some data (objects of a class defined by me) to the file (by using writeObject method from ObjectOutputStream) and then I'm reading it sequencially by the corresponding readObject method (from ObjectInputStream).
    Problems start when I add new objects to the already existing file (to the end of this file). Then, when I'm trying to read newly written data, I get an exception:
    java.io.StreamCorruptedException
    at java.io.ObjectInputStream.readObject0(Unknown Source)
    at java.io.ObjectInputStream.readObject(Unknown Source)
    Is there any method to avoid corrupting the stream? Maybe it is a silly problem, but I really can't cope with it! How can I write new objects to the existing file with already written objects?
    If anyone of you know something about this issue, please help!
    Jai

    Here is a piece of sample codes. You can save the bytes read from the object by invoking save(byte[] b), and load the last inserted object by invoking load.
    * Created on 2004-12-23
    package com.cpic.msgbus.monitor.util.cachequeue;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.io.RandomAccessFile;
    * @author elgs This is a very high performance implemention of Cache.
    public class StackCache implements Cache
        protected long             seed    = 0;
        protected RandomAccessFile raf;
        protected int              count;
        protected String           cacheDeviceName;
        protected Adapter          adapter;
        protected long             pointer = 0;
        protected File             f;
        public StackCache(String name) throws IOException
            cacheDeviceName = name;
            f = new File(Const.cacheHome + name);
            raf = new RandomAccessFile(f, "rw");
            if (raf.length() == 0)
                raf.writeLong(0L);
         * Whne the cache file is getting large in size and may there be fragments,
         * we should do a shrink.
        public synchronized void shrink() throws IOException
            int BUF = 8192;
            long pointer = getPointer();
            long size = pointer + 4;
            File temp = new File(Const.cacheHome + getCacheDeviceName() + ".shrink");
            FileInputStream in = new FileInputStream(f);
            FileOutputStream out = new FileOutputStream(temp);
            byte[] buf = new byte[BUF];
            long runs = size / BUF;
            int mode = (int) size % BUF;
            for (long l = 0; l < runs; ++l)
                in.read(buf);
                out.write(buf);
            in.read(buf, 0, mode);
            out.write(buf, 0, mode);
            out.flush();
            out.close();
            in.close();
            raf.close();
            f.delete();
            temp.renameTo(f);
            raf = new RandomAccessFile(f, "rw");
        private synchronized long getPointer() throws IOException
            long l = raf.getFilePointer();
            raf.seek(0);
            long pointer = raf.readLong();
            raf.seek(l);
            return pointer < 8 ? 4 : pointer;
         * (non-Javadoc)
         * @see com.cpic.msgbus.monitor.util.cachequeue.Cache#load()
        public synchronized byte[] load() throws IOException
            pointer = getPointer();
            if (pointer < 8)
                return null;
            raf.seek(pointer);
            int length = raf.readInt();
            pointer = pointer - length - 4;
            raf.seek(0);
            raf.writeLong(pointer);
            byte[] b = new byte[length];
            raf.seek(pointer + 4);
            raf.read(b);
            --count;
            return b;
         * (non-Javadoc)
         * @see com.cpic.msgbus.monitor.util.cachequeue.Cache#save(byte[])
        public synchronized void save(byte[] b) throws IOException
            pointer = getPointer();
            int length = b.length;
            pointer += 4;
            raf.seek(pointer);
            raf.write(b);
            raf.writeInt(length);
            pointer = raf.getFilePointer() - 4;
            raf.seek(0);
            raf.writeLong(pointer);
            ++count;
         * (non-Javadoc)
         * @see com.cpic.msgbus.monitor.util.cachequeue.Cache#getCachedObjectsCount()
        public synchronized int getCachedObjectsCount()
            return count;
         * (non-Javadoc)
         * @see com.cpic.msgbus.monitor.util.cachequeue.Cache#getCacheDeviceName()
        public String getCacheDeviceName()
            return cacheDeviceName;
    }

  • How to export xy graph with indicator field.

    hi,
     I want export my graph in .emf format.For this i have used invoke node>>Image export. If i use this , i can only export the graph not other indicator filed(numeric and string indicatror).how can i export graph with indicator field??
    here is .vi that i have used.
    Solved!
    Go to Solution.
    Attachments:
    Unbenannt 2.vi ‏12 KB

    Thanks for your post in our Discussion Forum,
    is it necessary to export the picture in the .emf Format?
    Otherwise I can provide two possibilities:
    The easiest way to make a screenshot of a certain area of the frontpanel is to 
    create a SubVI with all the elements you want to take a screenshot from and
    then take a screenshot from the whole frontpanel of the SubVI.
    This works fine although the frontpanel is not visible while the picture is taken.
    The screenshot can be taken with a method-node as seen in the example attached to this post.
    Another possibility is to crop a screenshot of a whole frontpanel to the region which you are interested in.
    How this works is described here: http://forums.ni.com/t5/LabVIEW/take-screenshot-of-part-of-front-panel/td-p/1613750
    The downside is that you have to manually set the region which might change due to scrolling or changes on the panel.
    Best regards,
    Peter
    Attachments:
    VI Screenshot.vi ‏13 KB

  • How to export Resource Graphs/Profiles to Word or Excel

    We are using Primavera Risk Analysis 8.x and we could not find an option on how to generate reports showing resource profiles or how to export them into another software. Has anybody came across such an issue?
    Thanks in advance
    Chris

    As with other Primavera products you can export most data fields out to MS Excel or Word or Access in order to better customize your reports. Charting in Excel is far better for your graphical reports :) If not, you could always import that data back into P6 and run your resource profiles in that software.
    ~~~~~~~~~~~~~~~~~~~~~~~~~
    Exporting using Export View Contents commandThis method of export is excellent for getting selected information out of Pertmaster for manipulation or viewing in other packages.
    You can use the Export View Contents command from the Gantt Chart or the Resource Sheet.
    Using Export View Contents from the Gantt Chart saves the information displayed in the current columns and the column headings.
    Using Export View Contents from the Resource Sheet saves the information on the usage of the displayed resources between two user defined dates.
    To Export View Contents from the Gantt Chart
    Set up the Gantt Chart columns to display the information that you require. Apply a filter if you wish to export only the information of certain tasks.
    View | Export View Contents.
    Type in the filename. Click on OK.
    To Export View Contents from the Resource Sheet
    Add the required resources to the resource sheet.
    View | Export View Contents.
    Type in the filename. Click on OK.
    Enter the export date range. Click on OK.
    To Export View Contents from the Resource Graph
    You cannot export directly from the resource graph. So add the required resource to the resource sheet and then use export as described above.
    Was this answer helpful??   If not,  just email me back
    Thanks,

  • How to export a Graph or Chart from a BW report to PDF file

    Hi All,
    I am new for BI7.  i have one clarification 
    "How the system shall provide the users the ability to export a Graph or Chart from a BW report to PDF file in WAD"
    Thanks In Advance
    Ravi

    You have to use this command and assign your web items to this command to get graphs and charts
    http://help.sap.com/saphelp_nw70/helpdata/en/44/85de4943af5919e10000000a1553f7/frameset.htm

  • How to store a graph to a clipboard (conserving colors info)

    Hi everybody,
    I'm looking for a way (also not conventional)to copy on clipboard a graph, without loose the colors information.
    Someone can help me?
    Many thanks
    Neona

    Neona,
    If you absolutely must do this in response to a user clicking a front-panel button, as suggested in your attached example, then you'll need to hunt down some code. Programmatically, the built-in LabVIEW functions will take you only so far as getting the full-color image data (Right-click on your graph and choose Create >> Invoke Node, then select the Get Image method from that node), but not sending it to the clipboard.
    George Zou has created VIs to do this exact thing (send image data from LabVIEW to the clipboard), but I haven't used them and I'm fairly sure they are not free. Plus, I think his main site is down right at the moment. See this thread.
    There's a much easier solution. If you're willing to ask your users to right-click the graph and choose Copy Data at run-time, then that will copy a nice full-color image of the graph to the clipboard, and you can paste it into PPT, etc, as you desire. It's not quite clicking a button, but it's comparably easy.
    Regards,
    John

  • How can i copy a picture that has been installed with the flash player

    how can i copy a picture that has been installed using the flash player

    You can't. You can take a screen cap of it, but the container doesn't allow access to the individual images used in a SWF or FLV.

Maybe you are looking for

  • Automatically open newly added files in a folder?

    Hi there. I own a Nikon D80 and I want to have the images I take transfered directly to my Mac to be stored and displayed. I found this om flickr: http://www.flickr.com/groups/d80/discuss/72157603787246133/ where a user describes how to automatically

  • Open-vm-tools-modules and kernel rebuild

    Initially when I installed open-vm-tools-modules the wiki instructed me to rebuild the kernel to include the VMWare drivers. Today there was an upgrade to open-vm-tools-modules and I was wondering if a kernel rebuild is required every time this packa

  • Trouble with thermocouple example...

    Hi, I'm using SCC-TC02 connected to a thermocouple probe (K). Are trying to use the "Acq Thermocouple sample" example vi. But I only get the value -1908625864800603,25 and nothing else...? (CJC source: constant, 25) Any ideas?

  • BW or BI Systems Administration in a classical iSeries Installation

    Hi together, we want to run several BI Systems on iSeries in future. We have several ERP, GTS, PLM System running on iSeries. We are doing the SAP Authority Administration in the ERP Systems in the Basis Group (BC). How are you doing authority admini

  • Tracking User Access to Help

    Is there a way to track user access to HTML help?  I'm wanting to be able to run a report that will tell me how often the online help is accessed either at topic level or just the full help level if that is the only possibility. Is there a plugin or