Major and minor increment printout

I am new to Labview, only have a couple months experience using Labview 7.1.
My application is to use ultrasound to inspect a component.  For every component inspected, an ultrasound wave chart is print out.  I define my Y axis max and min, also define Y axis major and minor increment as 20 and 4 respectively(see attached file).  However, the very first print out is not what I defined.  It always the major is 10 and minor is 2.5 but the Y axis max and min are still correct.  For the second print out and there after.  They are all correct.  Did I miss something here?
Any help si appreciated, thank you.
Tony

sorry, I missed the attached file.
Attachments:
LV_question.JPG ‏6 KB

Similar Messages

  • Powershell script to find number of major and minor version for a item

    Is there a way to figure out to get the total major and minor version count for an item in powershell.
    I can get the count on basis of following
    “Item Versions” = $item.Versions.Count
    but not sure how to get number of major and number of minor version for an item. Pls advice.
    Thanks Basva

    Hi Basva,
    There might be an easier way, but this should work:
    foreach($item in $list.Items)
    $minor = 0
    $major = 0
    foreach($version in $item.Versions)
    if($version.Level -eq "Draft")
    $minor += 1
    else #Assume Level must be Published
    $major += 1
    #The variables $minor and $major will now hold
    #the correct number of versions for this item

  • Major and minor Functional difference between 4.6c and ecc 6 in SD module

    Hi Gurus,
    Will anyone will mail me doc or url that shows the Major and minor Functional difference between 4.6c and ecc 6 in SD module.  Mail me at [email protected]
      full points for helpful answer
      Regards,
    PV

    Hi,
    This website is very helpfull for version comparision, have a look at it.
    <a href="http://solutionbrowser.erp.sap.fmpmedia.com/">Compare_Versions</a>
    Cheers...
    Santosh

  • Changing Major and Minor ticks in OBI graphs

    Hi Experts,
    I have couple of questions:
    I need to change the major and minor ticks in the OBI graph. For example, my graph has minimum value as 0% and maximum value as 120%. And my interval of the graph should be 20%. Can you suggest how I can change the interval? Currently the interval is 24%. But I require it to be 20%.
    Any help here would be great.
    ChD

    This is no Suite... it's all over the place.
    Consistency, consistency, consistency!
    ps. Et cetero censeo... And further I think the scroll wheel should work in all panels and in all CS3 apps.

  • Major and Minor Versions in OBPM Deployment

    How do we identify and classify some process/project as a major and minor version while deploying a project/process onto Weblogic Enterprise Server using the Process Administrator?
    Is there a guide which says what is a major version and what is a minor version of the project/process?

    Hi,
    The only document I know is http://download.oracle.com/docs/cd/E13165_01/albsi/docs57/ALBPM55_57ProjectVersioningRules.pdf
    It is a bit old since is for 5.7 version of the product but I believe it has not changed in the new versions.
    HTH

  • What are the Major and Minor Diffs between oracle,sql server,MSAccess

    Hi all,
    Can any one explain or send me all the diff between
    oracle ,sql server,access..like how much data can each
    support,...
    Thanks

    Dear sir,
    here it is.
    http://www.oracle.com/database/product_editions.html

  • BSD root: disk0s2, Major 14, minor 2

    I'm getting the above message on a G5 Xserve running 10.5.8. It locks up there and won't go any further whether you're booting Verbose or Single User. Now I know this is not an unusual message to get, but the fact that it stops there and won't go any further is what's distressing. I've run diagnostics on it via Target Disk and found no errors, but it still won't push past BSD root: disk0s2, major 14, minor 2.
    Ideally, it would be great if we could get it back up just enough to migrate services to the new server we just bought to replace it, however if I have to build from scratch, I can build from scratch.

    After running software update on an iMac running 10.5 I am having the same problem (the version it updated to was 10.5.8). The machine will boot in single user and target mode, but if I try to boot normally I get grey screen forever, and in verbose mode it locks up at BSD root: disk0s3, major 14, minor 2. If I boot from Leopard disk and run Disk Utility, repair permissions locks up, but verify disk says the disk is fine. Please help.

  • Will there be a fix for Firefox's problems with Hotmail. I have gone back to 3.5.9 but mostly I am disappointed by the lack of action on this serious problem where a major and critical feature of a major international website is unavailable in the Firefox

    Will there be a fix for Firefox's problems with Hotmail. I have gone back to 3.5.9 but mostly I am disappointed by the lack of action on this serious problem where a major and critical feature of a major international website is unavailable in the Firefox browser.
    == URL of affected sites ==
    http://www.hotmail.com

    We've reached out to the Hotmail team and they've determined that this is a bug in their code. (It was masked by a timing issue in 3.5 that was fixed in 3.6.) We've worked with them to develop a fix but they may not have deployed it yet.

  • Save As - Settings and Filename Incrementer

    Hello All,
    I'm on CS5/CS6, i use a panel which i created in configurator. I have it run actions, menu items etc. All works great.
    Problem:
    I'm sick and tired of saving each open active image as JPG and incrementing the filename by 1.  I'm hoping someone can point out to me on how to increment the filename number by 1, from a panel with a button called say - "Save As Increment"
    So to play this out in a real world scenario....
    1. Photoshop open.
    2. Image file open and active.
    3. I save the first file with name 'GeorgePortrait01.jpg' by clicking the save as button on my configurator panel and giving it the name manually.
    4. > I want to now work on active/open image #2, when i'm done processing that, i'd like to click on my other button hypothetically called 'Save As Increment' which i just click and in the background it:
         A) Takes my settings specified in the script file for quality etc...
         B) Takes my folder location info also set in the script file
         C) Finds the latest incremented number in the folder and then increments by 1
         D) Saves it as GeorgePortrait02.jpg
    So after the script modifications and the first file save, from then on after i'm done with each image, i only have to click the button 'Save As Increment' from that point on until i'm done with the set.
    Is this possible? I'd like a vb script solution if possible. Any advice is hugely appreciated.
    TIA!

    You asked for vb which may put off most here… as you are open to altenatives… This I just C&P from Tom's Event Manager Script…
    // Function: CreateUniqueFileName
    // Usage: given a folder, file name and extenstion create a file with a unique
    //        file name
    // Input: given a folder, file name and extenstion
    // Return: the full path to the unique file
    function CreateUniqueFileName( inFolder, inFileName, inExtension ) {
              var uniqueFileName = inFolder + inFileName + inExtension;
              var fileNumber = 1;
              while ( File( uniqueFileName ).exists ) {
                        uniqueFileName = inFolder + inFileName + "_" + fileNumber + inExtension;
                        fileNumber++;
              return uniqueFileName;
    Simple enough…

  • I can't install Photoshop CS5 under mac because of the format of my HDD Journaled with Capitol and minor letters. Is there a way to get it installed?

    Hello,
    I can't install Photoshop CS5 under mac because of the format of my HDD Journaled with Capitol and minor letters.
    Is there a way to get it installed?
    Thank you
    Andreas

    this is the only screen that appear after clicking on the install.app

  • Instance number and minor number

    hi
    can somebody tell me what is actually instance number and what is the relationship between an instance number and minor number of a device .

    I'm not 100% sure but my reading of it is:
    Usually one has a 1:1 direct mapping of minor number to instance number, but this doesn't have to be the case.
    The instance number is linked to your hardware device and say if you move its base address you will get a new instance number with the old one retained for the original address.
    If you had 3 cards I think you would have instance No.s 0, 1, and 2.
    The minor number can be anything YOU want it to be.
    I have a situation where I have a card carrier with 3 cards mounted on it - I can only have one instance and I need to differentiate between the cards used - I use the minor number that is a part of the device handle and can be returned by using getminor from driver code.
    As usual the Writing DD SUN book is all there is available.
    Any further points - let me know.
    Cheers.

  • E1 Slips and Errors Incrementing

    Ok so I have troubleshooted E1 slips and errors multiple times before. I am aware that the issue is due to clocking. Heres my problem:
    I have configured to take clocking from E1 1/0 which is a telco PRI and this is working fine on E1 1/0 i.e no slips, errors.
    However on E1 1/1 and E1 2/0 which are 2 other PRI lines, there is slips and errors incrementing.
    Configuration of E1 clocks:
    network-clock-participate slot 1
    network-clock-participate slot 2
    network-clock-select 1 E1 1/0
    network-clock-select 2 E1 1/1
    network-clock-select 3 E1 2/0
      Network Clock Configuration
      Priority      Clo
    ck Source    Clock State     Clock Type
         1          E1 1/0          GOOD            E1
         2          E1 1/1          GOOD            E1
         3          E1 2/0          GOOD            E1
        10          Backplane       GOOD            PLL
    Anyone got any advise as to what I can do next? I have also tried to set the clock source as Internal on the E1 lines but same errors and slip increment. Is my only option to go to the Telco? 

    Hi ,
    are all the three E1 lines from same Service Provider?
    regds,
    aman

  • I closed then reopened my navigation toolbar using the Alt button. When it re-opened the add-ons(?) that were on it were no longer there. I'm specifically looking for two add-ons that took me to "Major Television channels" and "Minor television channels".

    I would be content just to have the add-ons back, the one that allowed me to view ABC, NBC, CBS and a handful of other channels, and the one that connected me to the National Geographic channel and I believe some of the Discovery, etc channels . I can get to the Nat Geo if I go through my history but most of the other channels I can't. I've had MozFire on my computer for a while but mainly used Google Chrome until last week when I decided to check out MozFire. As has happened in the past I found myself really liking this program and wondering why I haven't been using it all along.

    I have asked a moderator to provide assistance, they will post an invite on this thread.
    They are the only BT employees on this forum, and are a UK based team of people, who take personal ownership of your problem.
    Once you get a reply, make sure that you are logged into the forum, then click on their name, you will see a screen like this. Click on the link as shown below.
    Please do not send them a personal message, as they may not be on duty for a long time, and your message will not be tracked properly.
    For your own security, do not post any personal details, on this forum. That includes any tracking number you are give.
    They will respond either by phone or e-mail within 5-6 working days.
    Please use the tracked e-mail, to reply, not via the forum. Thanks
    This is the form you should see when you click on the link. If you do not see this form, then you have selected the wrong link.
    When you submit the form, you will receive an enquiry number, so please keep a note of it
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

  • SCC question - how can I get a list of all line items and minor line items associated with a single contract?

    Current;y have to expand each major line item and check all the minor line items, I just want a list of SNs associated with the contract.  Any way to get this mailed to me every month?

    Hi
    I am sorry to see you are having problems
    I suggest you contact the forum mods they should be able to get this problem sorted for you this is a link to them http://bt.custhelp.com/app/contact_email/c/4951
    They normally reply by email or phone directly to you within 3 working days they will take personal ownership of your problem until resolved and will keep you informed of progress
    They are a UK based BT specialist team who have a good record at getting problems solved
    This is a customer to customer self help forum the only BT presence here are the forum moderators
    If you want to say thanks for a helpful answer,please click on the Ratings star on the left-hand side If the reply answers your question then please mark as ’Mark as Accepted Solution’

  • Mac book Pro i5 or i7 ? Performance difference major or minor ?

    Hi folks ,
    Hope every one is doing great
    I have to purchase a Mac book pro 13 inch . But confusion I am having is between i5 and i7 processor . I ll be using my laptop mainly for surfing , movie watching, and Video editing ( FCP , Adobe premiere pro ) . i7 is expensive than i5 and right now my budget is not permiting me to buy i7 until or unless there it is EXTREMELY important to buy a i7 mac book as there are will be huge performance issue . From what I read I got to know that there wont be huge difference since they both are using dual core processor and there is no option of hyper threading in i7 either . Also there aint any difference of graphics card as they both use the cpu inbuilt intel graphics card. So one thing which I am considering in to buy i5 and then spend some money on expanding RAM which will be cheaper , I suppose .(4GB to 8Gb). Will that be fine?
    So just wanted to know from some one who has used i5 mac book pro and ran editing software (or any one who knows about it)  . Did you guys face any glitches or are they very minor to be noticeable. I am fine with extra time taken in rendering and exporting , thats not the issue for me . Only issues is that videos shouldnt lag or appear jerky in the timeline because then it will hamper editing experience .
    I know Imac in same rate is the best option for editing and nothing can beat that . But I couldnt go for it because of portability issue as I have to travel a lot .
    Hope to hear expert comments from you guys.
    Cheers !
    Anurag

    I have been editing with Final Cut for many years, on many different Macs.  Currently using Final Cut Express v4 on a 2.66GHZ Core2Duo MacBookPro with 8GB RAM.  Ditto on my 3.06GHZ Core2Duo iMac with 8GB RAM.  It runs really well on both computers.  An i5 based Mac will do even better.
    The amount of RAM definitely makes a difference if you are using things like Photoshop, Aperture, Lightroom, iMovie, Final Cut and similar apps.  They will run in 4GB RAM but they run a lot better with 8GB RAM or more.  If I were configuring a new Mac to run these kinds of programs, 8GB RAM would be my suggested minimum.

Maybe you are looking for

  • Hard drive not visible in finder or desktop, ghosted in disk utility

    I just reinstalled Snow Leopard to my MacBook Pro 13 inch from mavericks, and now when I try to access my time machine backup on my hard drive, it isn't showing up. It is ghosted in disk utility. I have tried restarting my computer, and have scoured

  • Multiple analog events counted and recorded to file

    I have this VI that I created where Ch 5 is attached to a reed switch on a door and counts how many times the door is opened and writes a date and time stamp to file each time and also updates the numeric counter on the front panel.  I would like to

  • PSE 7 Slide Show Music

    I am using PSE 7 to create a slide show.  I am attempting to add music but cannot seem to download songs from my itunes library where most of my music is stored. I am runnig Windows 7 and have been able to download from my Windows mucic folders.  Is

  • ABAP Routines

    Hi All, My project is using ABAP Routines for the conversion and transfer of datas, can you please let me know in detail about these ABAP routines how these are written and if any available ones readily. Thank you sirs.. Regards

  • How to load  exchange rates in BW 3.5  for month end

    Hi , The exchange rates are not loaded automatically in BW for FEB month end. Request your reply ...how to load exchage rates into BW and what should be the reasons like why this is not loaded automatically.