Can somebody save this in Labview 7.0?

hello
can somebody save this in labview 7.0 please?
thanks in advance
madgreek
Attachments:
madgreek.vi ‏13 KB

Please keep it all in one place: http://forums.ni.com/ni/board/message?board.id=170&message.id=232912#M232912
LabVIEW Champion . Do more with less code and in less time .

Similar Messages

  • Can somebody save this in Labview 7.0 please?

    Can somebody save this in Labview 7 please. i think its in 8.2
    thank you
    Attachments:
    Pitch Shift.vi ‏33 KB

    Hello,
    This VI contains components that changed between versions 8.0 and 7.1, so a Save for Previous operation will not be straightforward.  Instead, here is the block diagram so you can build it:
    Part 1 (left side):
    Part 2 (right side):
    The Hanning window function will look different but should have the same interface.
    Message Edited by MattP on 03-28-2007 03:06 PM
    Cheers,
    Matt Pollock
    National Instruments
    Attachments:
    right.jpg ‏109 KB
    left.jpg ‏50 KB

  • Infopath submit - how to hide - Save as dialog box - You can only save this file to the current site

    HI,
    I have a infopath form. In the submit options, i have used the below:
    submit options -
    sharepoint document library
    Data connection - Sharepoint Library Submit
    Doc library - lib location
    File name: concat("User Info - ", ResourceName, "-", PersonalID)
    Allow overwrite if file exists is checked.
    When I try to save a record, I am getting a popup:
    Save As:
    You can only save this file to the current site
    File Name: textbox
    save location: doc lib.
    save, cancel buttons.
    How to override this save as option(save as option should not be shown to user), and save the file using the file name mentioned?
    Thanks

    Are you clicking "Save" when you're using the form or "Submit"??
    You should be using "Submit" and it will ... submit your form to the document library with the file name you specified.
    To disable the "Save" button, click on "File" then "Form Options". Under the "Filler Features" area you can uncheck the box beside "Save and Save As". Click OK then re-publish your form.

  • My Ipad crashed, so I pressed both power and home button, now I have to restart my ipad on the itunes, but there are some important info I cannot loose... how can I save this info at this time? actually is some info the I saved in the "notes" app! help!!!

    My Ipad crashed, so I pressed both power and home button, now I have to restart my ipad on the itunes, but there are some important info I cannot loose... how can I save this info at this time? actually is some info the I saved in the "notes" app! help!!!

    I Had it on my iPod, but I reset to factory settings and it got deleted :( If I find a way to get it back, I'll post it here so you can too.

  • Can someone save this vi. in labview 7.0 please?

    hi
     i have this vi in labview 7.1 and i need it in labview 7.0 which i dont have. can someone save it in 7.0 and repost it please?
    regards
    madgreek
    Attachments:
    array1vi.vi ‏38 KB

    Here ya go.
    Andrew Alford
    Production Test Engineering Technologist
    Sustainable Energy Technologies
    www.sustainableenergy.com
    Attachments:
    array1vi.vi ‏38 KB

  • Can someone save these in Labview 7.0 please?

    Can someone save these 2 vis in labview 7 please?
    Attachments:
    Time Variable FFT.vi ‏250 KB
    Play 8-bit mono sound.vi ‏48 KB

    Here ya go madgreek.
    Chris C
    Message Edited by Chris_C. on 04-24-2007 09:40 AM
    Message Edited by Chris_C. on 04-24-2007 09:40 AM
    Chris Cilino
    National Instruments
    LabVIEW Product Marketing Manager
    Certified LabVIEW Architect
    Attachments:
    bd.GIF ‏10 KB

  • Can somebody explain this store procedure

    Hi there
    can somebody explain me this Oracle store procedure, I am not able to figure it out anything from this SP :(
    CREATE OR REPLACE PROCEDURE MyDummySchema.MyDummyStoreProcedure
    (a_created_by_proc SomethingDummy.CREATED_BY_PROC%TYPE)
    as
    BEGIN
    /* Set up your global variables */
    XYZ_FORMAT.g_s_created_by_proc := a_created_by_proc;
    XYZ_FORMAT.g_d_current_time := sysdate;
    XYZ_GENERATEEODQUEUE.XYZ_GENERATEQUEUE;
    XYZ_PROCESSQUEUE.XYZ_PROCESSTRADES;
    XYZ_SYNC_SOMETHING(a_created_by_proc);
    END MyDummyStoreProcedure;

    Here
    XYZ_FORMAT, XYZ_GENERATEEODQUEUE, XYZ_PROCESSQUEUE
    are package names;
    XYZ_SYNC_SOMETHING is another PL/SQL procedure name; the procedure takes one parameter;
    XYZ_FORMAT.g_s_created_by_proc, XYZ_FORMAT.g_d_current_time are global variables defined in the package XYZ_FORMAT, in package definition part of it;
    XYZ_GENERATEEODQUEUE.XYZ_GENERATEQUEUE,
    XYZ_PROCESSQUEUE.XYZ_PROCESSTRADES are stored procedures w/o parameters definned in packages XYZ_GENERATEEODQUEUE and XYZ_PROCESSQUEUE respectively.
    But only the author [hopefully] knows what is the point of all this stuff :)

  • Can someone save this BMP as an ICON?

    The ICON editor I have only saves in 256 colors. I need this ICON saved in 16x16, 32x32, and 48x48 in only 16 colors. Any help would appreciated. I can email the BMP to you. Thanks.
    Doug Ferguson
    www.southerndaqsolutions.com

    If you have LabVIEW 8.x there is one located in: LabVIEW x.x\applibs\iconeditor\iconedit.exe
    This one allows to copy-paste images into the ico file.
    One warning, my LabVIEW crashes when I try to us an ico containing 48x48 as the icon of an executable.
    Ton
    Free Code Capture Tool! Version 2.1.3 with comments, web-upload, back-save and snippets!
    Nederlandse LabVIEW user groep www.lvug.nl
    My LabVIEW Ideas
    LabVIEW, programming like it should be!

  • Can somebody explain this strange method overloading behavior

    Please check the following code out......
    Snippet 1) compiles while Snippet 2) does not. Can someone explain. Thanks in advance for your help.
    Snippet 1)
    public class AQuestion
    public void method(Object o)
    System.out.println("Object Verion");
    public void method(String s)
    System.out.println("String Version");
    public static void main(String args[])
    AQuestion question = new AQuestion();
    question.method(null);
    // second version of this code.....
    Snippet 2)
    public class AQuestion
    public void method(StringBuffer sb)
    System.out.println("StringBuffer Verion");
    public void method(String s)
    System.out.println("String Version");
    public static void main(String args[])
    AQuestion question = new AQuestion();
    question.method(null);

    foo( SuperClass parm ) {}
    foo( SubClass parm ) {}
    Now somewhere in your code you do this:
    SuperClass myVar = new SubClass();
    foo( myVar );Which one do you want the JVM to call? Well, you want
    it to call the more specific one.
    So it calls foo( SubClass ). But if you sayNo, it doesnt. At compile time the compiler cannot know the complete type of myVar. It can only assure that myVar is of the type SuperClass. And it inserts no dynamic type-checking. And therefore it calls foo(SuperClass).
    It also does that if myVar is null (no dynamic type checking).
    SuperClass myVar = null;
    foo( myVar );
    foo(SuperClass) is called !!!
    foo(null);
    foo(SubClass) is called.
    SuperClass myVar = new SubClass();
    foo( myVar );
    SuperClass myVar = new SuperClass();
    foo( myVar );
    Can you cast myVar as an instance of SuperClass?
    yes.
    Can you cast myVar as an instance of SubClass?
    No.
    This is true of null; null can be cast as SuperClass
    or SubClass.
    No I dont think so. because null doesnt provide any method specified in SuperClass. Thus there can't be done a type cast. Null must be treated specially. It simply fits every class type at compile time.
    If the static (known at compile time) type of a parameter is known (not null) then the method with exactly the same parameter type is called or the one with the most specific parameter type in the line of inheritance of the given parameter - independent from the dynamic (known at runtime) type of the given parameter. If the parameter is null and if there is only one "line of inheritance" then null matches the most specific type by definition. If there are more "lines of inheritance" for the parameters then null would match each most specific type, and thus its not clear which method to use.
    I think this has nothin to do with type casts.

  • Can somebody explain this?

    This would look better if it were in a fixed width font (viewable at [http://sites.google.com/site/jbo5112/oracle_problem]), but this is a direct copy out of my sqlplus window. I have not altered a single thing with my tables, querries, omitted anything, added anything, or relocated anything. I even made a copy of the table that was giving me problems, renaming some columns, removing other colums, and adding an id field so I wouldn't show important information. I still seem get the same strange problem below.
    As far as I can tell, the two sum_1's should match and the two sum_2's should match. However, making a third table didn't show the problem. Am I missing something or has oracle lost its marbles? Please help me, I've wasted many, many long days trying to fix our data, and can't sort out what is right anymore.
    SQL> describe my_table_name;
    Name Null? Type
    ID NUMBER
    AOC NUMBER(9)
    AOM NUMBER
    ATC NUMBER(9)
    ATM NUMBER
    ROC NUMBER(9)
    ROM NUMBER
    RTC NUMBER(9)
    RTM NUMBER
    SQL> select
    2 sum(aoc+roc + atc+rtc) sum_1a,
    3 sum(aoc+roc)+sum(atc+rtc) sum_1b,
    4 sum(aom+rom + atm+rtm) sum_2a,
    5 sum(aom+rom)+sum(atm+rtm) sum_2b
    6 from my_table_name;
    SUM_1A SUM_1B SUM_2A SUM_2B
    1169352 6857438 384755.106 13222465.8
    Elapsed: 00:00:01.42
    SQL> create table my_table as (select id, aoc col1, aom col2, atc col3, atm col4, roc col5, rom col6, rtc col7, rtm col8 from my_table_name);
    Table created.
    Elapsed: 00:00:02.01
    SQL> select
    2 sum(col1+col3 + col5+col7) sum_1a,
    3 sum(col1+col3)+sum(col5+col7) sum_1b,
    4 sum(col2+col4 + col6+col8) sum_2a,
    5 sum(col2+col4)+sum(col6+col8) sum_2b
    6 from my_table;
    SUM_1A SUM_1B SUM_2A SUM_2B
    1169352 1169352 384755.106 384755.106
    Elapsed: 00:00:00.93
    SQL>

    You can just wrap \ tags around the code
    As for the NULL values 1+1+null is undefined because null is undefined.  It's only in aggregate functions that Oracle is allowed to discard NULL values and just sum the non-null rows.
    Justin
    Edited by: Justin Cave on Feb 20, 2009 7:20 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Error 54 Can't save this Illustration. The file is locked

    I am getting this message from CS4 Illustrator running on Mac 10.6.2 saving back to a WIn 2004 server via SMB connection. The file will save ok the first time, but from then on, the error 54 persist until you close the file and re-open it.
    Has anyone seen this issue and been able to resolve it?
    Thanks

    From a Windows prespective it seems as thought the Error 54 means the network is busy. Sounds like it might be a time sync problem.

  • Webcast in Windows Media Player format - Can I save this to my iPod

    There are news events that are webcast the next day using RealPlayer and Windows Media Player. They play as nice little videos in my web browser, complete with audio.
    Is there a way that these things can be captured and converted to a correct format for the iPod. I tried control-clicking (on Mac, equivalent to right-clicking in Windows) and 'download source' only yielded a 24k html document. So, I guess the first goal would be how to download the video file itself.
    Anyone have experience with how to do this? Please let me know how to go about it.
    Thank You,
    Ken

    I guess I am finding out that they are streaming and can't be downloaded. When I try to download they just download the link to the video.
    Maybe someone with experience in capturing online video can look at it for me and see if they know a way to capture it to my computer so I can convert it.
    It's so I can get the state of the union address that I missed part of the other night / webcast right at the top:
    http://www.whitehouse.gov/stateoftheunion/2007/
    Thank you so much for your help with this.
    Ken

  • HT1386 I have downloaded my cd music from my previous computer to my I Phone.  The phone will randomly play the music without notice, therefore killing my battery.  How can I save this music from my phone to my new computer, and erase it from the phone???

    The music that  I downloaded from my previous computer to my I Phone constantly plays without notice.  How can I delete it from my phone after downloading to my new computer?????  I will pick up my phone to make a call, and the music is playing, even tho I didn't tap on the music symbol. Is this a problem with my phone??  Can I successfully download from my phone to my new computer????????  This is a very annoying problem and I need it solved.  My battery is always run down.

    If iPhone music is not on iTunes Library, you need a 3rd party tool to help you
    Mac: http://www.ecamm.com/mac/phoneview/
    PC: http://www.wideanglesoftware.com/touchcopy/index.php

  • Can somebody fix this applescript?

    Hello, I am making an xcode applescript application and I have connected the "usernamelicense" and the "license license" correctly, but there is something wrong with my code. It loads the page but then it doesn't do anything. I have tried to delete this "& licenselicenseValue" part of the code, and then it works perfectly but when I trie that same code again it always does this:
    display dialog "Username or license doesn't exist." with title "License - Checker" with icon 0 buttons {"Ok", "Buy License"} default button 2
    Even when "DamianVdK" exists. The first time I try it, it finds that word but than not anymore. I have made that webpage so I can edit the text and I know the text is there although it's not visible.
      on clickedCheckLicense_(sender)
            set pagURL to "http://passavelicenses.businesscatalyst.com/index.html"
            set websitemain to "http://tikasoftware.businesscatalyst.com"
            set usernamelicenseValue to usernamelicense's stringValue()
            set licenselicenseValue to licenselicense's stringValue()
            tell application "Safari"
                activate
            end tell
            tell application "Safari"
                activate
            end tell
            if application "Safari" is not running then
                quit
                return
            end if
            tell application "Safari"
                set URL of document 1 of window 1 to pagURL
                delay 2
                -- delay to let page load.
                -- there are more elegant ways of doing this using do javascript, but this will suffice.
                if source of document 1 of window 1 contains usernamelicenseValue & licenselicenseValue then
                    tell application "Safari"
                        close every window
                    end tell
                    display dialog "Exists"
                    else
                    tell application "Safari"
                        close every window
                    end tell
                    display dialog "Username or license doesn't exist." with title "License - Checker" with icon 0 buttons {"Ok", "Buy License"} default button 2
                end if
                set x to button returned of result
                if x is "Buy License" then
                    tell application "Safari" to open location websitemain
                else if x = "Ok" then
                end if
            end tell
        end clickedCheckLicense_

    I'd prefer to persevere here as the point of the public forum is that it might help someone else.
    I am available for private consultancy, but I charge for that!
    The problem is most likely one of scope.
    That said, you can get user input using JavaScript which might be enough for you, e.g.
    tell application "Safari"
      activate
      set searchString3 to do JavaScript "prompt(\"Please enter your license key\")" in document 1
      set pageSource to source of front document
      if pageSource contains searchString3 then display dialog "got it"
    end tell

  • How can I make this in labview : find the numbers of overlapping between bits

    Dear
    I have this problem it really so complex to solve for me
    its not home work its related to my academic research
    I have two stream of bits each one with fixed n bits length as follow:
    x=1,1,1,1,0,0,0,0
    y=1,1,1,0,0,0,0,0
    I need to extract the following information
    a1, the number of overlapping 1s:in this case is 3
    a2, the number of overlapping 1s of X and 0s of Y :in this case is 1
    a3, the number of overlapping 0s of X and 1s of Y:in this case is 0
    a4, the number of overlapping 0s on both x,y.:in this case is 4
    thank in advance
    best regards
    hi ?Q>
    Solved!
    Go to Solution.

    alexderjuengere wrote:
    just for fun, here's a numeric approach. the u8 arrays are limited to 0 and 1.
    Alex, I think the idea was a binary representation, not a decimal array of 1's or zeros:
    CLA, LabVIEW Versions 2010-2013
    Attachments:
    checkbits.png ‏8 KB

Maybe you are looking for