Polymorphic VI / Select Type (small bug ?)

My english is not good enough to explain all this, so i prefer to use a picture
I think this behavior is not correct   (small bug ?)
this problem is about the use of a polymorphic vi and the "Select Type" command.
(my polymorphic vi in attached file)
for a quick test -----> QUICK_TEST.vi 
Attachments:
polymorphic (Wait ms + dataflow).zip ‏101 KB

CAR 354827 discussed in this thread has been fixed in LabVIEW 2013

Similar Messages

  • A selection of iChat Bugs

    Ahoy!
    I've been having a selection of small problems with iChat 4.0 lately, none of which are too problematic but they are all rather annoying nonetheless. If anyone has any ideas, then great!
    First and most annoying: this has only began in the past couple of weeks, but when videochatting, the picture and sound cuts out for a few seconds at random intervals. The connection doesn't die, the window doesn't close etc. but it just freezes. and it does it a lot! If I keep an eye on connection doctor the bit rate doesn't drop or anything, just the video and audio quality bars drop down to zero for the couple of seconds the picture is frozen. As I said, it happens at random intervals, sometimes it's the person i'm chatting to that freezes, sometimes it's me that freezes for them, sometimes it's both at the same time! It was working fine for me prior to a couple of weeks ago. Nothing is Beachballing when it happens.
    Secondly: I can't screen share (or video chat) with one specific person, only when using my Mac Pro. it's a strange phenomena because it worked the first time we tried it, it still works with other people, it works from my old PowerBook on the same internet connection (except the Mac Pro is connected to my router via ethernet) and they can successfully screen share with other people too (including my PowerBook!). Any ideas why iChat is singling this one person out?
    Lastly, this is completely trivial but iChat theater has also started behaving erratically since the first problem problem arose too- when I share an image or movie via iChat theater, it usually displays both the picture I am sending and the person I am chatting with in the theater style (and for the other end they get the picture I am showing and still get a stream of me), but instead of it doing that now it just decides to put whatever I'm showing into my video box so they cant see me. It behaved normally again yesterday but continued to misbehave again today.
    Details: I am using a four-week-old Mac Pro, connected to the router via ethernet, running Mac OS X 10.5.1. The Mac Pro's IP is set to be a DMZ on the router. My internet connection is my weak point as it is only 1 megabit down and a meagre 256k up, but that hasn't been a problem up until about two weeks ago. I am in London.
    The person I talk to most on video chat (who I experience the freezing problem with the most) is using a MacBook Pro running 10.5.1 on an unspecified New York cable connection- we don't know how fast it is but we do know it's a lottt faster than mine.
    The person I have the screen sharing problem with is using a PowerMac G4 MDD running 10.5.1 on a respectable internet connection that I believe to be 2 megabits up and down. They are in the Midlands of England.
    I have also experienced the video freezing problem with someone on a iMac G5 running 10.3.9 (i think that was the last panther release at least!) with a similar internet connection to mine. They are a few miles from me in London.
    I have tried fiddling with the settings that made video chatting more reliable for me on tiger (changing the bandwidth limit in iChat Preferences, changing the connection speed in System Prefs > Quicktime > Sharing) and have since put it back to what was working for me before these issues arose (No limit in iChat, setting QT streaming to 1 megabit as that's what I have going down) and none of it has really made a difference to how it behaves.
    I haven't knowingly installed anything new when these problems surfaced, though I did install some more RAM about a week after the problems began.
    So there's a challenge for whoever wants something to puzzle over! If anyone can work out why I'm facing such mysterious behaviour, then points are on offer. Or something.
    Thanks!
    -Ricky

    It's time for a bump. My problems haven't subsided since upgrading to 10.5.2.
    The freezing problem still exists and I have realised it is with anyone I talk to, so I'm putting this one down to my pony internet connection (though it didn't do it on tiger!). Defcom: thanks for the offer of trying to solve this through a videochat but I shall politely decline- I have a hard enough time talking to people I don't know on the phone, let alone on video chats. :[
    The iChat theater problem is the least annoying of them all and I simply don't care about that one any more.
    The problem with my computer singling out this one particular person is bugging me like crazy now though- it's not just screen sharing with him, I can't do anything beside text chat (or sometimes direct instant messaging if my computer is feeling like playing nice). I can't do screen sharing either way, no videochat, be it one way or two way with this one particular person on this one machine, though I can on my other machine on the same internet connection. I have been through and meticulously checked for settings that might be different between my PowerBook and this Mac Pro and nothing is different in any of the networking/sharing/QuickTime system preferences or iChat preferences.
    Is it worth me filing it as a bug report through feedback with Apple, as it's such a specialised problem (only one person on one computer)?

  • Small bug: Database configuration - Initialization parameters

    Hi!
    SQLDeveloper version: 3.2.20.09
    View -> DBA -> Database configuration -> Initialization Parameters -> right click "Open" -> editor with "Parameter" and "Value" (inter alia) columns appears
    Changing value for parameter "optimizer_features_enable" isn't working:
    Example:
    Parameter: optimizer_features_enable
    Changing value from 11.2.0.1 to 9.2.0 -> commiting changes -> ORA-02017 error appears ("integer value required")
    In "Messages - Log" window appears the following statement: ALTER SYSTEM SET optimizer_features_enable=9.2.0 COMMENT='' SCOPE=MEMORY
    I think rather it should be: ALTER SYSTEM SET optimizer_features_enable='9.2.0' COMMENT='' SCOPE=MEMORY
    It looks like a small bug.

    Hi dz_r,
    One workaround for this case is, when editing the data in the grid cell, to enclose the Oracle version in single quotes. After committing to apply the update (which works), the grid refresh strips away the single quotes, leaving the desired value displayed in the cell.
    So this is, as you say, a small bug. Note that not all parameters of type String require single quotes, e. g., cursor_sharing=exact. Probably any String beginning with a numeric digit should be enclosed in quotes automatically.
    I logged the following bug:
    Bug 16733790 - UPDATING INITIALIZATION PARAMETER OF TYPE STRING FAILS IF BEGINS WITH A NUMERIC
    Thanks for reporting this,
    Gary
    SQL Developer Team

  • Small bug in code complete?

    I'm not sure how significant this bug is, but I think it's a bug.  Please advise.
    I defined a variable with the type UIComponent using code complete.  I Realized that I had chosen fl.core.UICompent instead of mx.core.UIComponent, which import statement was written by organized import.  Highlighting the type and choosing the correct type using code complete yielded something like this.
    var varname:mx.core.UIComponent;

    Jason,
    Thank your attention. Please, let me explain more clearly.
    I defined a variable statement with UIcomponent type using code completion.  ie
    import fl.core.UIComponent;
    var varname:UIComponent;
    Realizing I had chosen the wrong component, I highlight type UIComponent in my variable statement, and use the code completion to select type mx.core.UIComponent.  The result is this.
    import mx.core.UIComponent;
    var varname:mx.core.UIComponent;
    That's not right, is it?  Thank you.
    Garrick

  • Satellite P500-1D6 - Small bug between cover plate and screen.

    Hi
    I have a small bug (in Dutch: "donderbeestje") between the protective glass and the actual screen.
    Where I bought the laptop they yell me that they can't do anything about it and this is not under warranty of Toshiba.
    For me however, this should be under warranty of Toshiba.
    The screen with it's upper layers should be firmly closed so that no foreign objects can come in between.
    So, my question is if this is under warranty or if not, what can I do to get this thing out of there?
    Kind regards,
    Pascal.

    Hey,
    Regarding such hardware related problems you should contact an official authorized service provider. The guys can repair notebooks under warrant for free if its a warranty case. Furthermore they can give you an exact if its normal or hardware problem.
    Here its only an user to user forum so nobody can give you an exact answer but a full list of all ASPs you can find here:
    http://eu.computers.toshiba-europe.com > Support & Downloads > Find an authorized service provider

  • How to Print Text in the PLD when we select Type : Text

    Hi All
    I designed a PLD for Purchase Order which is working well but
    whenever we select type: Text and we enter some text in the row level for each item. when we see the PLD priview
    Items are displaying but the text below the items are not displaying
    it displays an empty row after each item
    How should i print text in the PLD
    I required in this following Format
    ITEMCODE  DESCRIPTION      QTY
    001              XYZ                      20
    this is capital Good Item
    002             PQR                        30 
    this is Raw Material
    In this above format
    I didnt get the text below the Items
    Can any one suggest the correct answer

    Thanks for your reply
    I already select the linetext field from table POR10 and kept it  in the PLD
    but i didnt get my required format
    after giving that line text field  iam getting
    in this way
    S.No.        ITEMCODE   DESCRIPTION  QTY
       1               001               XYZ                 20
    this is Capital Goods
      2                                                                 
    this is Capital Goods
    the text is repeating twice
    I Put the ItemDescription field  in POR1 and Line Text Field in POR10 in the same repetitve area

  • It looked like a small bug going up and down on my screen then it stopped about 12 o clock a quarter of the way from the top, now it seems to be burned in to the inside of the screen, anyone seen this before?  And what can be done about it,  macbook pro

    I have what looked like a small bug that ran up and down the screen and then sudenly stopped in center upper half of screen and now appears to be burned in to the inside of the screen, anyone had this probelm before and what can be done about it?

    Thanks for the suggestion, the next step was to call Apple, who gave me a claim number, which I discovered you must have to get anything done with them.  They refered me to a Apple store or repair center, after some reseach took it to the Computer Store in Mobile, Alabama and they were excellent.  They took pictures of the screen with bug submitted it to Apple who denied the claim but they kept kicking it up to the next level and finally Apple agreed to sent new cover.  The Computer Store had the cover the next day, they changed it out and now I am bug free.  If your in the area of Mobile Alabama you can feel good about getting help from the Computer Store.  For the two folks that responded to my note, Thank You, good comments and good advice.

  • Can't figure out why colors don't totally change when you select type with curser? It looks like it has by looking at it, but when you highlight the area after the old color is still there. It happens with objects to. Driving me NUTZ. Help!

    Can't figure out why colors don't totally change when you select type with curser? It looks like it has by looking at it, but when you highlight the area after the old color is still there. It happens with objects to. Driving me NUTZ. Help!

    Select the text, and open the Appearance palette (Come on guys, text highlight is irrelevant, it happens to objects too says the OP), and see what's listed there.  For a simple text object, there should only be a line item "Type", followed by "Characters", and when double-clicked the Characters line item expands to tell you the stroke and fill color.  For a basic object, there should be a fill and/or stroke.
    What happens sometimes, is that you end up adding extra strokes/fills to objects or text, and the appearance palette is where that will be noted.  Especially when you are dealing with groups, and/or picking up a color with the eyedropper, you may inadvertently be adding a fill or stroke on top of something.  You can drag those unwanted thingies from the Appearance palette into its own little trash can.

  • Small Bug in Flash 8: loading swf that´s a vectorized image in many layers

    Hi! There´s a small bug in flash 8. If you load a swf
    that it´s a vectorized image in many layers, when you give it
    an action in onLoadInit, like mc.onRelease, the mc don´t
    "catch" that action. You can try loading an image (it works), a lot
    of swf (it works), but with this kind of swf the actions onRelease,
    onPress, etc... don´t work.
    The
    swf
    I´ll make a different vectorized image to make it works
    (if there is only one layer it works)

    Seems odd it will only run once. Usually if a cache problem
    you get the same
    results even when you update the movie or server scripts.
    If it is
    http:// it is not local even if from the browser
    cache.
    Verify the html is validated.
    Check to see if this applies to all swfs. Create a simple
    hello world swf
    that connects to a JSP script that returns a simple value to
    Flash. If that
    seems to work, then the problem is in the JSP or
    Actionscripting coding.
    Check you can load the JSP script repeatedly using a direct
    call to it on
    the browser line using
    http://.
    Lon Hosford
    www.lonhosford.com
    Flash, Actionscript and Flash Media Server examples:
    http://flashexamples.hosfordusa.com
    May many happy bits flow your way!
    "srikanth_s_india" <[email protected]> wrote
    in message
    news:e6obld$lfb$[email protected]..
    > Thanks for the article link.
    >
    > I can't provide the URL as it is within our application
    which requires
    > logging
    > in. However, one more interesting thing about it is that
    it always works
    > for
    > the first time (in the browser/machine) but not from the
    next time.
    >
    > My doubt is whether it is because of the caching? When
    it loads for the
    > first
    > time, the HTML and SWF files load from our server and
    hence are allowed to
    > communicate with our JSP. However, when it loads the
    subsequent times, it
    > probably loads from the cache and hence considered as a
    local file and not
    > allowed to communicate with our JSP file which is on the
    Internet.
    >
    > Can anybody tell me how to enable a local SWF file to
    load SWF files from
    > the
    > Internet & access URLs from the Internet in Flash 8
    pluggin?
    >

  • How do I change my timeline selection type

    So I didn't even know it, but apparently there is a different mode of frame select, where normally you hold control to access it while your cursor is in the timeline, but it has become the default!! and now the holding control state is the normal selection type!! please help meee

    Scratch that it's in timeline properties, called span based selection.

  • Select a small area and then use the selected area to paint other areas of the image

    Hello
    My problem is a little hard to explain but I try.
    What I want is to select a small area and then use the selected area to paint other areas of the image. Do not know how to do it and if it's stamp tools or pen tools to be used?

    Howdy.
    Sounds like you're looking for the Clone Stamp Tool. Set to Aligned, the sampling point resets when you release the mouse after painting. Untic Aligned and the sampling point stays in the original spot for the next stroke. It's a good idea to clone onto a separate layer with Sample All Layers selected. Then you don't lose original pixels. Allows you a do over later.
    FWIW.
    Peace,
    Lee

  • Small bug in WAP4410N firmware 2.0.3.3

    Attached is a screenshot of a small bug in the System Up Time. It shows Hour:Day:Sec where it should show Hour:Min:Sec.

    It seems to happen when using external monitor and "Mirroring" is enabled.
    We'll do some more tests to fully confirm
    If someone else has also noticed this, please post details.
    Thanks!
    HD Cam Team
    Group of photographers and filmmakers using Canon cameras for serious purposes.
    www.hdcamteam.com | www.twitter.com/HDCamTeam | www.facebook.com/HDCamTeam

  • Type Tool does not select type by double clicking or click and drag. (Windows CS 5 V15.1)

    Hi,
    My Type Tool does not select type by double clicking or click and drag. (Windows CS 5 V15.1). This is what I have tried so far and the problem still exists.
    Check preferences for "Text": "Select text-object by path only" should be off. Checked. It was off. Didn't fix it.
    Check the toggle for Show/Hide Edges in the View menu. Cmd(Ctrl)-H. Checked. Edges Showing. Didn't fix it.
    Trashed my Prefeerences. Didn't fix it.
    Any other suggestions out there?
    Thank you!!!

    I figured it out! I feel pretty silly, but I will share this in hopes of helping the next person :/ Here goes. Don;t laugh to hard!
    It was the leading! The space between the two lines of text was less than half of the point size of the actual text. So it looked like two lines but there was actually 3.
    Geeze, I'm embarrassed! Thank you for suggesting that I may not need to recreate the entire document, but start with the text, input manually again (even on a new layer, to match the original), which lead to a fix!
    Thank you!!!

  • Small bug in iTunes 7.4.3. on Win XP Pro SP2

    It's a small bug. When I try to edit few or more MP3's file information (ID Tag), but they are "read-only", the change dialog appear normally - all edit forms are enabled - but when I press "OK" the changes didn't save and no error box appear.
    I think that somebody understand this - sorry for my English!

    Yes I do, I'm using an administrator account.
    I dont understand what is going on.
    I had an Oracle 8i installed before. but I delete all the registry entries. And installed the jre 1.4.2.05.
    But nothing . Always abort in 36%.

  • Select type of WWK or WWW

    System-administrator>Application>Function>Create new function >Select type of WWK or WWW>Insert new function into menu>Test>link to document does not work
    it work perfect in 11i but it does not work in 12.1.3 instance what was migrated from 11i

    jemar98 wrote:
    System-administrator>Application>Function>Create new function >Select type of WWK or WWW>Insert new function into menu>Test>link to document does not work
    it work perfect in 11i but it does not work in 12.1.3 instance what was migrated from 11iCannot Define A Fuction To Launch A Web Page In R12 [ID 842919.1]
    Cannot Launch A Web Page Via Form Function [ID 833345.1]
    Thanks,
    Hussein

Maybe you are looking for