FP.Get Image method does not capture the background image

The attached VI (8.5) demonstrates the issue nicely - the background image is not included in the image captured by the FP.Get Image method.
Workaround - don't use the background image if you want to capture the FP like this - paste your image in the background or use a picture control.
Message Edited by tst on 09-10-2008 09:20 PM
Try to take over the world!
Attachments:
Get Image without background.vi ‏713 KB

Hi tst,
Thanks for the information.This was reported to R&D (#50678) for further investigation. R&D is currently investigating this issue. We appreciate your feedback.
Regards,
Stephen S.
National Instruments
Applications Engineering

Similar Messages

  • The control chart in the sampling method does not match the insp. char. Mes

    The control chart in the sampling method does not match the insp. char.
    Message no. QD240
    how solve?????

    You need to compare 'requirement for control chart' and 'control indicator of insp. characteristic'.
    1. Requirement for control chart
    QCC0 > Quality Planning > Basic Data > Sample, SPC > Statistical Process Control > Define Control Chart Type
    See detail for your control chart and check 'requirement' in characteristic type screen area.
    2. Control indicator of insp. characteristic
    QS24
    Check 'control indicator' is suitable for requirement.
    Regards, Do Wook KIM

  • Why does converting word into PDF does not take the background color of the page?

    When I do a page background on a document, and save as pdf, it does not take the background color. It shows only white background.

    This may be a limitation with the built in PDF writer in OS X. Never tried it so I have no idea if it does the same on my Mac.
    As this is not a MS Word problem you are in the right set of forums.
    Have you tried another PDF writer other then the built in one?

  • So I decided to try and 'Edge up' since I was practically at the mark. Seemed to go fine until I select my new device, then I get 'This device does not match the device ID on your original Edge Agreement.'. Odd because I've never switched phones, and i'm

    So only a few bucks left for the edge upgrade, decided to edge up since it gave me the option to do so, I figure why not?
    Process seems to go fine until i'm in the checkout for a new device.
    Tosses 'This device does not match the device ID on your original Edge Agreement. ' at me, but it's really strange because I'm using the phone I got direct from Verizon, haven't switched phones or anything.
    Has anyone had this issue before?

    Toxicle,
    I can understand how something like this can be concerning. Let's work to get to the bottom of this for you. What kind of phone were you Edging up from? Has the phone ever been replaced or removed temporarily? Just want to make sure we are getting all the facts to help with this issue.
    CandiceH_VZW
    Follow us on Twitter at @VZWSupport

  • Why the wildcard does not capture the Object

    Why the following program return the error in the method change?
    import java.util.*;
    public class MapInMap
        private static Map<String,Map<String,?>> hmSHm =
                       new HashMap<String,Map<String,?>>();
        static{
            Map<String,Integer> mi;
            mi = new HashMap<String,Integer>();
            mi.put( "apple",  200 );
            mi.put( "orange", 150 );
            mi.put( "pear",   300 );
            hmSHm.put( "calories", mi );
            Map<String,String> ms;
            ms = new HashMap<String,String>();
            ms.put( "apple",  "read" );
            ms.put( "orange", "orange" );
            ms.put( "pear",   "green" );
            hmSHm.put( "color", ms );
        public static void print( String sort, String item ) {
            System.out.println( "The " + sort + " of " + item + ": " +
                                hmSHm.get(sort).get(item) );
        public static void change( String sort, String item, Object value ) {
            hmSHm.get( sort ).put( item, value );
    //Previous statement give the error:
    //  put(java.lang.String,capture of ?) in java.util.Map<java.lang.String,capture of ?>
    //    cannot be applied to (java.lang.String,java.lang.Object)
    //WHY?
        public static void test() {
            System.out.print( "Before change: " );
            print( "calories", "pear" );
            change( "calories", "pear", 350 );
            System.out.print( "\nAfter change: " );
            print( "calories", "pear" );
    }

    You cannot call methods on wild-card type instances that have the wild-card type as a a method parameter.
    Map<String,Map<String,?>> hmSHm =
                       new HashMap<String,Map<String,?>>();You've defined a reference which includes the unkown type - fine.
    Map<String, Integer> mi = new HashMap<String,Integer>();
    mi.put("bar", 350);
    hmSHm.put("foo", mi);
    Map<String,String> ms;
    ms = new HashMap<String,String>();
    ms.put( "apple",  "read" );
    hmSHm.put( "color", ms );ok - I'm a bit confused by this. I don't think it should work but it does. You've managed to turn a Map<String, Map<String, ?>> which is a parameterized type which should be homogeneous into a heterogeneous collection! ? shoud only bind to a single type, the compiler shouldn't allow you to store Map<String, Integer> and Map<String, String> in the same parameterised collection - that makes the collection heterogeneous . But the next bit fails correctly.
    hmSHM.get("foo").put( item, value)The compiler stops you because the object returned by hmSHm.get("foo") is of type Map<String, ?> which is an instantiation of a parametrized type, where we don't know what one of the type parameters is. The compiler knows that the instance has a method with the following signature:
    public ? put (String, ?);but compiler has no way of knowing what ? is and so will prevent you from using it because it can't type check it and you could end up adding the wrong type which generics are meant to prevent you from doing. Now you might say that since this will be a concrete instantiation at run-time, then the run-time will know the type and simply throw a type error at run-time, but this is wrong. Generics as they are implemented in Java only exist in run-time. The Java compiler type checks the generics and then replaces all the generic constructs with plain old vanilla non-generic java. In this case ? are replaced with java.lang.Object.
    Its a little subtle, I don't know if I've explained it well, have a look at the link below for a more thorough description:
    http://www.langer.camelot.de/Articles/JavaPro/02.JavaGenericsWildcards/Wildcards.html#What%20is%20the%20purpose%20of%20wildcards?

  • Queue method does not recycle the extent file

    Hi, all,
    I use Queue methond in TDS of db-4.7.25, and enqueue with set(DB_APPEND) and inqueue with get(DB_CONSUME).
    I configured the queue db with set_q_extentsize.
    I found there are still extent files in env dir(see __dbq.test1.20 and __dbq.test1.21), though the queue is empty.
    -rw-r----- 1 root root 24K Dec 9 17:22 __db.001
    -rw-r----- 1 root root 25M Dec 9 17:22 __db.002
    -rw-r----- 1 root root 321M Dec 9 17:22 __db.003
    -rw-r----- 1 root root 4.1M Dec 9 17:22 __db.004
    -rw-r----- 1 root root 33M Dec 9 17:22 __db.005
    -rw-r----- 1 root root 15M Dec 9 17:22 __db.006
    -rw-r--r-- 1 root root 64M Dec 9 17:25 __dbq.test1.20
    -rw-r--r-- 1 root root 64M Dec 9 17:26 __dbq.test1.21
    -rw-r--r-- 1 root root 40M Dec 9 17:32 __dbq.test1.36
    -rw-r----- 1 root root 10M Dec 9 17:28 log.0000000333
    -rw-r----- 1 root root 10M Dec 9 17:28 log.0000000334
    -rw-r----- 1 root root 10M Dec 9 17:28 log.0000000335
    -rw-r----- 1 root root 10M Dec 9 17:28 log.0000000336
    -rw-r----- 1 root root 10M Dec 9 17:28 log.0000000337
    -rw-r----- 1 root root 10M Dec 9 17:28 log.0000000338
    -rw-r----- 1 root root 10M Dec 9 17:28 log.0000000339
    -rw-r----- 1 root root 10M Dec 9 17:28 log.0000000340
    -rw-r----- 1 root root 10M Dec 9 17:28 log.0000000341
    -rw-r----- 1 root root 10M Dec 9 17:28 log.0000000342
    -rw-r----- 1 root root 10M Dec 9 17:28 log.0000000343
    -rw-r----- 1 root root 10M Dec 9 17:28 log.0000000344
    -rw-r----- 1 root root 10M Dec 9 17:28 log.0000000345
    -rw-r----- 1 root root 10M Dec 9 17:38 log.0000000346
    -rw-r--r-- 1 root root 4.0K Dec 9 17:29 test1
    # /usr/local/BerkeleyDB.4.7/bin/db_stat -d test1
    Wed Dec 9 17:41:47 2009     Local time
    42253     Queue magic number
    4     Queue version number
    1024     Fixed-length record size
    0x20     Fixed-length record pad
    4096     Underlying database page size
    16384     Underlying database extent size
    0     Number of records in the database
    1     Number of database pages
    3072     Number of bytes free in database pages (25% ff)
    1800002     First undeleted record
    1800002     Next available record number
    This issue confuses me, does it have a delay recycling of extent files? But why only 20 and 21? or Is this a bug of 4.7.25 version?
    Regards,
    Steve

    Hi Steve,
    Any chance you might have deleted records in the queue database by record number and not only through DB_CONSUME operations? Have you used the DB->del method or just DB->get with the DB_CONSUME flags?
    In general, only if the data is deleted using a DB_CONSUME operation can BDB be sure of removing a queue extent file. Otherwise, if BDB detects that a record at the head of the queue has been deleted, then it will check whether the extent file can be deleted. Though, active concurrent updates in the queue might prevent BDB from detecting that.
    In BDB 4.8.24 the DB_CONSUME flag is set on all deletes in the queue, hence forcing the check to see if the queue extent can be deleted.
    However, this is not done all the time as it affects concurrency.
    I believe you're seeing the effects of bug #17004. This is fixed in BDB 4.8.24, and the relevant entry in the change log describing it is:
    [http://www.oracle.com/technology/documentation/berkeley-db/db/programmer_reference/changelog_4_8.html]
    Fixed a bug that could cause a queue extent to be recreated if an application deleted a record that was already deleted in that extent.  (#17004)
    Added the DB_CONSUME flag to DB->del and DBC->del to force adjustment of the head of the queue. (#17004)
    Could you test with BDB 4.8.24 and see if you run into the same problem?
    Regards,
    Andrei

  • CDHDR does not capture the Tcode for vendor master address changes:

    Hi Guys,
    Wish you a happy new year.
    I have the problem to track the changes of the vendor master. I have a vendor master, which got changed by one user. If I look the change history, I can be able to see the change document number, old value and new value. based on that I used CDHDR table to find out the TCODE which is used for this change, but found no value in the TCODE field. What is the meaning of this? Is it meant to say that this field is updated by other sources other than direct changes (XK02/MK02)? If such a case, is it possible to find out the program or LSMW or BW, etc...which is used for this change?

    >
    Smart Sometimes wrote:
    > do we have the option to search the changes based on the USER id for a particular date?
    Which userid? SCN or SAP userid?

  • IOS 6 showFeedbackCaptionAndDoAction() javascript method does not draw consistently

    Hi!
    The issue describe below seem to only appear in iOS 6
    CPlayerLib.js judge() -> showFeedbackCaptionAndDoAction() javascript method does not draw the Feedback Caption consistently
    sometime the feedback does not appear, I see it in the dom tree but the canvas is not drawn, the Div capturing the click is always present. Strangely when I scroll the page a bit it shows up.
    Thanks

    Ok I found a way to fix it.
    In CPlayerLib.js cp.show method in the for loop within the if (htmlItem) I added a setTimeout(function() { htmlItem.style.webkitTransform = "scale3d(1,1,1)"},100) and it now force the canvas to repaint.
    Related issue:
    http://stackoverflow.com/questions/11002195/chrome-does-not-redraw-div-after-it-is-hidden

  • Billing document does not capturing basic amt. capture only duty part

    Hi
    while doing billing on customer
    the billing document does not capturing the basic amt on , it only capture only duty part.
    pl suggest , how resolve the prob.
    Regard
    R.Sharma

    HI,
    Check the pricing procedure, in that remove the statistic for the pricing condition then try,
    i think will resolve the issue, pricing should not activate the statistic
    Thanks & Regards
    Rajasekhar

  • I have a MacBook Pro running 10.7.2.  I am trying to import photos from my older Canon EOS-1D for the first time since my OS upgrade.  iPhoto does not see the camera nor does Image Capture.  IC says there is not a camera connected.  Cable is known good.

    I have a MacBook Pro running 10.7.2.  I am trying to import photos from my older Canon EOS-1D for the first time since my OS upgrade.  iPhoto does not see the camera nor does Image Capture.  IC says there is not a camera connected.  Cable is known good.  Has something changed?  Thanks!

    If neither iPhoto not IC can seethe card it might suggest an issue with the card or the ports on the camera/mac.
    Try reformat the card, change the ports and/or use a USB Card Reader.

  • Firefox does not display the basic menu line File Edit View etc. How do I get this menu to show. I have tried uninstalling and reinstalling, but that does not help

    When I ask for help finding bookmarks, the answer tells me to click on bookmarks as shown in the illustration, but there is no such line displayed on my computer.

    '''''"Firefox does not display the basic menu line File Edit View etc."''''': That is the Menu Bar; see below.
    '''<u>Menu Bar</u>''' (File, Edit, View, History, Bookmarks, Tools, Help)<br /> <u>Firefox 3.6.x versions allow the user to hide the Menu Bar.</u><br />
    *Tap the ALT key or the F10 key, Menu Bar will display, click View, click Toolbars, click Menu Bar to place a check mark next to it, '''''OR'''''
    *Press and hold the ALT key while pressing the letters VTM on your keyboard, then release the ALT key
    *See: http://support.mozilla.com/en-US/kb/Menu+bar+is+missing
    '''<u>Other Toolbars</u>''', see: https://support.mozilla.com/en-US/kb/Back+and+forward+or+other+toolbar+items+are+missing<br />
    '''<u>Status Bar</u>''': click View, click Status Bar to place a check mark<br />
    '''<u>Full Screen Mode</u>''': If you have no Toolbars or Tab Bar: Press F11 (F11 is an on/off toggle). See: http://kb.mozillazine.org/Netbooks#Full_screen<br />
    Also see: http://kb.mozillazine.org/Toolbar_customization_-_Firefox#Restoring_missing_menu_or_other_toolbars
    <br />
    <br />
    '''Other items that need your attention'''
    The information submitted with your question indicates that you have out of date plugins with known security and stability issues that should be updated. To see the plugins submitted with your question, click "More system details..." to the right of your original question post. You can also see your plugins from the Firefox menu, Tools > Add-ons > Plugins.<br />
    <br />
    *Adobe PDF Plug-In For Firefox and Netscape
    **Current versions are 9.4.2 and 10.0.1 (aka Reader X)
    **More info about version 10 (aka Reader X)
    ***New Adobe Reader X (version 10) with Protected Mode was released 2010-11-19
    ***See: http://www.securityweek.com/adobe-releases-acrobat-reader-x-protected-mode
    #'''Check your plugin versions''': http://www.mozilla.com/en-US/plugincheck/
    #*'''Note: plugin check page does not have information on all plugin versions'''
    #'''Update Adobe Reader (PDF plugin):'''
    #*From within your existing Adobe Reader ('''<u>if you have it already installed</u>'''):
    #**Open the Adobe Reader program from your Programs list
    #**Click Help > Check for Updates
    #**Follow the prompts for updating
    #**If this method works for you, skip the "Download complete installer" section below and proceed to "After the installation" below
    #*Download complete installer ('''if you do <u>NOT</u> have Adobe Reader installed'''):
    #**Use the links below to avoid getting the troublesome "getplus" Adobe Download Manager and other "extras" you may not want
    #**Use Firefox to download and SAVE the installer to your hard drive from the appropriate link below
    #**Click "Save to File"; save to your Desktop (so you can find it)
    #**After download completes, close Firefox
    #**Click the installer you just downloaded and allow the install to continue
    #***Note: Vista and Win7 users may need to right-click the installer and choose "Run as Administrator"
    #**'''<u>Download link</u>''': ftp://ftp.adobe.com/pub/adobe/reader/
    #***Choose your OS
    #***Choose the latest #.x version (example 9.x, for version 9)
    #***Choose the highest number version listed
    #****NOTE: 10.x is the new Adobe Reader X (Windows and Mac only as of this posting)
    #***Choose your language
    #***Download the file, SAVE it to your hard drive, when complete, close Firefox, click on the installer you just downloaded and let it install.
    #***Windows: choose the .exe file; Mac: choose the .dmg file
    #*Using either of the links below will force you to install the "getPlus" Adobe Download Manager. Also be sure to uncheck the McAfee Scanner if you do not want the link forcibly installed on your desktop
    #**''<u>Also see Download link</u>''': http://get.adobe.com/reader/otherversions/
    #**Also see: https://support.mozilla.com/en-US/kb/Using+the+Adobe+Reader+plugin+with+Firefox (do not use the link on this page for downloading; you may get the troublesome "getplus" Adobe Download Manager (Adobe DLM) and other "extras")
    #*After the installation, start Firefox and check your version again.

  • Everytime I start up my MacBook Pro, I get this message.  'Insecure Startup Disabled.'  "/Library/Startup items/HP Trap Monitor" has not been started because it does not have the proper security settings.

    Everytime I start up my MacBook Pro, I get this message.  'Insecure Startup Disabled.'  "/Library/Startup items/HP Trap Monitor" has not been started because it does not have the proper security settings.

    Update your HP Printer drivers/software at their website or uninstall using the developers method.

  • My computer (MacBook mid-2007) does not recognise the battery suddenly. A cross appears on the image. I have tried uninstalling and re-installing it but it didn't help. Is the battery dead?

    My computer (MacBook mid-2007) does not recognise the battery suddenly. A cross appears on the image. I have tried uninstalling and re-installing it but it didn't help. Is the battery dead?

    Welcome to the Apple Support Communities
    Try resetting the SMC > http://support.apple.com/kb/HT3964
    If it doesn't work, take the Mac to an Apple Store to get it diagnosed

  • The source drive does not contain the HP Recovery Image

    I'm trying to create a bootable USB stick with the Recovery disk creation utility of HP. After having moaned that my 8560w was running on battery, and that there was no room on a 16 GB FAT32 formated USB stick, I finally came to the next screen that says "The source drive does not contain the HP Recovery Image" which is wrong: partition D is primary, contains the recovery disk. So what ? No way to create a recovery disk ? Note also that I have no Recovery Manager (???) and that F11 has never worked (??????). HP decision to get out of the PC business is probably the best thing that could happen to customers.
    pher
    This question was solved.
    View Solution.

    Hi,
    Check the below link:
    Creating Recovery Discs or Saving a Recovery Image to a USB Flash Drive (Windows 7)
    Quote from this document:
    "Use a blank USB flash drive with at least 32 GB of memory. HP recommends using a name brand from a manufacturer you trust."
    ** Say thanks by clicking the "Thumb up" icon which is on the left. **
    ** Make it easier for other people to find solutions, by marking my answer with "Accept as Solution" if it solves your issue. **

  • Log onto incoming mail server (POP3): Your server does not support the connection encryption type you have specified. Try changing the encryption method. Contact your mail server administrator or Internet service provider (ISP) for additional assistance.

    Hi All,
    This is my first post to ms exchange forum am getting  Log onto incoming mail server (POP3): Your server does not support the connection encryption type you have specified. Try changing the encryption method. Contact your mail server administrator
    or Internet service provider (ISP) for additional assistance. in my outlook clients, till last Sunday (12.04.15) my exchange was well & good, Monday morning suddenly the problem started like none of our outlook pop3 clients are able to communicate
    with exchange (rest  IMAP, SMTP & Exchange accounts are working fine). i have tried with all port no but no luck. please help me to get raid of this one.
    Exchange 2013 CU6 with server 2012 Std 64Bit
    Thanks,
    Murali 

    Dear All,
    I have found the solution for above problem, the problem has occur due to PopProxy inactivity
    please find relevant exchange management shell commends below.
    1. Get-ServerComponentstate -Identity <yourmailserver.com> 
    Server Component State
    yourmailserver.com ServerWideOffline Active
    yourmailserver.com HubTransport Active
    yourmailserver.com FrontendTransport Active
    yourmailserver.com Monitoring Active
    yourmailserver.com RecoveryActionsEnabled Active
    yourmailserver.com AutoDiscoverProxy Active
    yourmailserver.com ActiveSyncProxy Active
    yourmailserver.com EcpProxy Active
    yourmailserver.com EwsProxy Active
    yourmailserver.com ImapProxy Active
    yourmailserver.com OabProxy Active
    yourmailserver.com OwaProxy Active
    yourmailserver.com PopProxy Inactive
    yourmailserver.com PushNotificationsProxy Active
    yourmailserver.com RpsProxy Active
    yourmailserver.com RwsProxy Active
    yourmailserver.com RpcProxy Active
    yourmailserver.com UMCallRouter Active
    yourmailserver.com XropProxy Active
    yourmailserver.com HttpProxyAvailabilityGroup Active
    yourmailserver.com ForwardSyncDaemon Active
    yourmailserver.com ProvisioningRps Active
    yourmailserver.com MapiProxy Active
    yourmailserver.com EdgeTransport Active
    yourmailserver.com HighAvailability Active
    yourmailserver.com SharedCache Active
    2. Set-ServerComponentState -Identity <yourmailserver.com> -Component PopProxy -Requester HealthAPI
    -State Active
    3. Get-ServerComponentstate -Identity <yourmailserver.com> 
    Server Component State
    yourmailserver.com ServerWideOffline Active
    yourmailserver.com HubTransport Active
    yourmailserver.com FrontendTransport Active
    yourmailserver.com Monitoring Active
    yourmailserver.com RecoveryActionsEnabled Active
    yourmailserver.com AutoDiscoverProxy Active
    yourmailserver.com ActiveSyncProxy Active
    yourmailserver.com EcpProxy Active
    yourmailserver.com EwsProxy Active
    yourmailserver.com ImapProxy Active
    yourmailserver.com OabProxy Active
    yourmailserver.com OwaProxy Active
    yourmailserver.com PopProxy Active
    yourmailserver.com PushNotificationsProxy Active
    yourmailserver.com RpsProxy Active
    yourmailserver.com RwsProxy Active
    yourmailserver.com RpcProxy Active
    yourmailserver.com UMCallRouter Active
    yourmailserver.com XropProxy Active
    yourmailserver.com HttpProxyAvailabilityGroup Active
    yourmailserver.com ForwardSyncDaemon Active
    yourmailserver.com ProvisioningRps Active
    yourmailserver.com MapiProxy Active
    yourmailserver.com EdgeTransport Active
    yourmailserver.com HighAvailability Active
    yourmailserver.com SharedCache Activ
    Replace yourmailserver.com with your server host name.
    Thanks

Maybe you are looking for