Easy example: show a control on a different VI

Hi all
i have a very-beginner question: i have a main VI, and several sub-VI's...
what i want...is to pass a value from a sub-vi to the main VI, to display it there. and i have to do it with a reference and property node...that's all i found out so far...
it seems to be so easy, i feel really stupid. any help is appreciated...
markus

OK, here is the way to do it by reference. Put both vi's in a directory called c:\MyTemp to run my example. I used a static VI reference. In your application you can redefine the reference to your own particular path.
- tbob
Inventor of the WORM Global
Attachments:
Master[1].vi ‏21 KB
SUB.vi ‏49 KB

Similar Messages

  • "Show Transform Controls" Equivalent in Flash CS4? + Other Questions

    Hi everyone.
    I've been using Adobe Flash CS3 & CS4, and I still find it ridiculously hard to navigate around that Program sometimes, mainly when I have to deal with a Pre-made Flash website that needs Editing.
    Allot of people Label layers, Symbols, etc... poorly, so it's hard to find your way around.
    I would like to know if these is any Equivalent of "Show Transform Controls" (from Adobe Photoshop), in Adobe Flash CS4.
    I have loads of Layers to deal with, and the only way I can get to edit the Layer, is by double clicking on them, then I go to it's timeline and settings.
    Most of the times I can't even see some of these Layers/Buttons, as they appear invisible on the Stage/Preview Screen.
    How can I more easily Work with my Layers in Flash CS4?
    It would be allot easier, if I could click on the Layer in the Pallet, and see an outline of where it is on the Stage.
    Or if I could edit the settings of a Layer, by clicking something in the Layers Palette.
    I am also trying to figure out how I can change the color of an image to Black/White, I only know how to do this with the Motion Tween Option, that gradually changes the color over those given seconds. I don't want an animation, just permanent color change.
    Also when I am moving a Object in one layer,
    when I exit and view a different layer, I see that the "Shared" object also moved there too, which I do not want.
    Is there any way to unlink these by chance?
    Is any of this possible?
    Please reply soon someone.
    Thanks,
    -Andrew

    [Note]: "View layer as outlines" Does not help me to see where those "Invisible" layers are.

  • Move tool "Show transform controls" with a type layer

    I just recently figured this "show transform controls" option with the Move Tool and while trying it out, I noticed it works differently with type layers than others.
    On regular bitmap layers it moves, resizes and rotates as supposed, but with type layer it jumps to "free transform" -function when trying to do anything with the transform controls. Causing the tool to drop and the anchor points change place (from text outline to text box?).
    Is this normal behaviour or is there something I don't get?

    Yes, being able to assign shortcuts to UI elements would be a major productivity jump in several cases! I tought that it
    was the advantage of the object-oriented programming, but I my coding abilities stop at "20 go to 10"...

  • [svn:osmf:] 15449: Add example showing how to inject a live NetConnection and/ or NetStream into a VideoElement.

    Revision: 15449
    Revision: 15449
    Author:   [email protected]
    Date:     2010-04-15 12:57:20 -0700 (Thu, 15 Apr 2010)
    Log Message:
    Add example showing how to inject a live NetConnection and/or NetStream into a VideoElement.
    Modified Paths:
        osmf/trunk/apps/samples/framework/ExamplePlayer/org/osmf/examples/AllExamples.as
    Added Paths:
        osmf/trunk/apps/samples/framework/ExamplePlayer/org/osmf/examples/netconnection/
        osmf/trunk/apps/samples/framework/ExamplePlayer/org/osmf/examples/netconnection/SimpleNet ConnectionFactory.as
        osmf/trunk/apps/samples/framework/ExamplePlayer/org/osmf/examples/netconnection/SimpleNet Loader.as

    Remember that Arch Arm is a different distribution, but we try to bend the rules and provide limited support for them.  This may or may not be unique to Arch Arm, so you might try asking on their forums as well.

  • Showing tranformation controls, Adobe Photoshop CS2, Mac Tiger

    The 'show transformation controls' are checked but the controls do not display. Going to Edit - transform - ...... they will display, but then disappear again and do not show on re selecting with the move tool.
    This has only just started to happen on the Mac and does not correspond to any upgrades or new software and has been working fine since the installation of CS2 quite some time ago.
    Cathy

    Try trashing your preferences?
    (Hold down the Shift+Option+Command keys AS you launch Photoshop. You'll get a little dialog to delete your settings.)

  • Problem updating a control on one panel based on a value change in another control on a different panel

    Hi,
    I am trying to update the value of a control on one panel when the value of another control on a different panel is changed.  The two panels are saved in two different .uir files, so there are two associated .h files generated by CVI.  The problem is that, inside the callback function for the control that is being modified (Ctrl_Id_A on Panel_A), when I call SetCtrlVal(Panel_B, Ctrl_Id_B, Value); 'Panel_B' and 'Ctrl_Id_B' (which have the same numeric values as Panel_A = 1 and Ctrl_Id_A = 2 in their respective .h files) are being interpreted as Panel_A and Ctrl_Id_A.  I never understood how CVI makes this distinction, eg. knowing which of PANEL_A = 1 and PANEL_B = 1 is being referred to, but didn't worry about it since I never needed cross-communication between panels until now.  Any help on how to implement this would be greatly appreciated.  Thanks!
    Solved!
    Go to Solution.

    This is a basic issue on which you can find tons of forum posts
    The online help for the function recitates:
    int SetCtrlVal (int panelHandle, int controlID, ...);
    Parameters
    Input
    Name
    Type
    Description
    panelHandle
    int
    Specifier for a particular panel that is currently in memory. You obtain this
    handle from LoadPanel, NewPanel, or DuplicatePanel.
    controlID
    int
    The defined constant, located in the .uir header file, that you assigned to the control in the User Interface Editor, or the ID returned by NewCtrl or DuplicateCtrl.
    value
    New value of the control. The data type of value must match the data type of the control.
    That is, you must not use the panel constant name in the first parameter of SetCtrlVal, use the panel handle instead. The system guarantees that all panel handles are unique throughout the whole application whichever is the number of panels used in every moment.
    int SetCtrlVal (int panelHandle, int controlID, ...);
    Purpose
    Sets the value of a control to a value you specify.
    When you call SetCtrlVal on a list box or a ring control, SetCtrlVal
    sets the current list item to the first item that has the value you
    specify. To set the current list item through a zero-based index, use SetCtrlIndex.
    When you call SetCtrlVal on a text box, SetCtrlVal appends value to the contents of the text box and scrolls the text box to display value. Use ResetTextBox to replace the contents of the text box with value.
    Note   This function updates the displayed value immediately. Use SetCtrlAttribute with ATTR_CTRL_VAL to set the control value without immediately updating the displayed value. For this reason, SetCtrlAttribute with ATTR_CTRL_VAL is generally faster than SetCtrlVal. However, if the control in which you are setting the value is the active control in the panel, SetCtrlAttribute with ATTR_CTRL_VAL displays the value immediately.
    Note   This function is not valid for graph and strip chart controls.
    Parameters
    Input
    Name
    Type
    Description
    panelHandle
    int
    Specifier for a particular panel that is currently in memory. You obtain this
    handle from LoadPanel, NewPanel, or DuplicatePanel.
    controlID
    int
    The defined constant, located in the .uir header file, that you assigned to the control in the User Interface Editor, or the ID returned by NewCtrl or DuplicateCtrl.
    value
    New value of the control. The data type of value must match the data type of the control.
    Proud to use LW/CVI from 3.1 on.
    My contributions to the Developer Zone Community
    If I have helped you, why not giving me a kudos?

  • Issue with 'Show approval controls in task details only' in Human Task

    Hi,
    In human task, for the approval controls / outcomes to be displayed only in the task details (Not in the task summary, actions menu), the below option was selected and it was working perfectly in SOA BPM worklist application (11.1.1.5.0). But when we migrate to 11.1.1.6.0, this was not working...
    Option to be selected: .task > Assignment > Configure Assignment > Assignment > Show approval control controls in task details only.
    We are anyhow planning to test in 11.1.1.7.0 also, but do anyone knows why its not working in 11.1.1.6.0?

    I'm facing the same issue in 11g PS5. Any update on this?

  • SSDT Schema Compare keeps showing the same objects as different..

    Hi, 
    When comparing a database to my project using Visual Studio 2012 SSDT I get several stored procedures marked as changed. The body of the procedures is identical, but two properties are highlighted as different when expanding the object:
    IsSelf (false on the DB vs true on the project) and User  (dbo on the DB, needs to be added to the project).
    The procedures have the option "with execute as self" both in the database and in the project as part of the body.
    I have not found what needs to be done so these differences are applied to the project and never appear again. Tried changing some options on the schema compare but didn't found one that help. 
    Some forum suggested dropping the objects and re-creating them but I don't want to loose the history of changes on TFS.
    Any suggestions? 

    Hi Daniel,
    Since you have posted this issue to the SSDT forum here:
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/5c9c5c47-64ac-4af4-9104-c9500dc8cf52/ssdt-schema-compare-keeps-showing-the-same-objects-as-different?forum=ssdt#5c9c5c47-64ac-4af4-9104-c9500dc8cf52
    I will move this thread to the Off-topic forum, thanks for your understanding.
    Sincerely,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • An easy Example to send a mail!!

    Hi,
    I never have done anything about send an e_mail.So, i need an easy example about that. Could you tell me how i have to do it.
    Thanks in advance,
    Monica

    Try
    http://www.javacommerce.com/articles/sendingmail.htm
    or other references in the
    "JavaMail API and Internet Mail Resources"
    section on the JavaMail home page
    (http://java.sun.com/products/javamail/)
    Regards
    Dave

  • Where is show transform controls in pse 13

    Can someone please tell me exactly where I can find the show transform controls in pse 13? 

    Open your image in Expert mode and press Ctrl+T (Cmd+T on Mac)
    When you see the corner and side handles it’s possible to right-click (Control-click) in the center of the image and chose from:
    Free Transform
    Perspective
    Skew
    Distort
    Rotate

  • I am trying to import external CSS in Edge Animate, Has anyone got a "simple" example showing this working that I could have a look at?

    I am trying to import external CSS in Edge Animate, Has anyone got a "simple" example showing this working that I could have a look at?

    Hi Vivek,
    Thanks a lot for replying, actually i am creating a short LAMP animation. In which i used Blur filter on the fire flares(SVG images), everything works just fine on google chrome, but for IE10 & Firefox the filter seems not working, so i need to know is it possible to override the fallbacks for the Blur Filter through external StyleSheet.                            
    IE10 & firefox rendered Image, blur filter not working             Google Chrome rendered Image, blur filter working perfectly
    So, can you please guide me, what shall i do in maintaining quality of my graphics as well while such animation's.

  • My RoboHelp HTML 9 is not showing version control link

    My RoboHelp HTML 9 is not showing version control link in File menu and in Tools - > options. Do I need to set anything in project to see version control link?

    Welcome to our community
    Have you tried right-clicking the toolbars and ensuring you are seeing the Version Control toolbar?
    I believe it may also depend on whether you elected to install version control when you installed RoboHelp. And in thinking about it, *IS* there a version control system installed?
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7, 8 or 9 within the day!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • An example showing at selection-screen func

    An example showing at selection-screen event  function please ...............

    hi
    chk this:
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME.
      PARAMETERS: R1 RADIOBUTTON GROUP RAD1 DEFAULT 'X',
                  R2 RADIOBUTTON GROUP RAD1,
                  R3 RADIOBUTTON GROUP RAD1.
    SELECTION-SCREEN END OF BLOCK B1.
    SELECTION-SCREEN BEGIN OF BLOCK B2 WITH FRAME.
      PARAMETERS: R4 RADIOBUTTON GROUP RAD2 DEFAULT 'X',
                  R5 RADIOBUTTON GROUP RAD2,
                  R6 RADIOBUTTON GROUP RAD2.
    SELECTION-SCREEN END OF BLOCK B2.
    AT SELECTION-SCREEN ON RADIOBUTTON GROUP RAD1.
      IF R1 = 'X'.
        MESSAGE W040(HB).
      ENDIF.
    AT SELECTION-SCREEN ON RADIOBUTTON GROUP RAD2.
      IF R4 = 'X'.
        MESSAGE W040(HB).
      ENDIF.
    regards,
    madhu

  • Show Transform Controls. KEYBOARD SHORTCUT PLEASE ANYONE!!!

    I use Photoshop CS5/3 for Drawing and creative art. Hense I measure up images using the awesome 'Show Transform Control' Option Command, whilst in the Move Tool. But im SICK of having to CHECK AND UNCHECK the box. Please somebody tell me where I can find a Keybaord Short Cut Option in the Keybaord Short Cut and Menus Section.
    Thank you.

    Ive kind of answered my own question.
    Keep the 'Show Transform Control' box checked all the time. When 'Show Transform Control' BOUNDING BOX starts getting on your nerves, press: Ctrl + H to HIDE the slections on screen! Dont forget to press Cntrl H to get it back when you switch to other tools.
    Hopes this helps speed the job up.
    regards

  • My ipod 6th generation does not show in control panel on computer Windows 7.....also when I try to download from itunes, I get message network cannot make connection.  can you provide me help?

    My ipod 6th generation does not show in control panel on computer Windows 7....also when I try to download from itunes, I get message saying network cannot make connection.  Can you help me with these issues?

    Hello jrsmallwood,
    I've a couple of articles that should get you back on your way!
    iPod not recognized in 'My Computer' and in iTunes for Windows
    http://support.apple.com/kb/TS1369
    Can't connect to the iTunes Store
    http://support.apple.com/kb/TS1368
    Cheers,
    Allen

Maybe you are looking for

  • Cgicmd.dat in formsweb.cfg?

    Hi, in my formsweb.cfg i have two alias that point to two different database. I have only one cgicmd.dat and don't want to change code of forms for invoking reports. I can put two different cgicmd.dat for pointing the two database ? Thanks. Best rega

  • Opening a shared mailbox in Outlook 2013 (office 365) returns "Cannot Expand Folder" error.

    Hi! We've just upgraded from our old Domino email server to Office 365 E1 and running an on-premise Exchange 2013 hybrid server. In Outlook 2013, when trying to expand a shared mailbox, It asks me to enter my outlook credentials. Trying so doesn't wo

  • Creating own list

    I have to create my own list in my application. This is a rule in the application. I need to add, remove and iterate through this list. How to create my own list without extending or implementing any collection classes ? I think i hav to go for "nati

  • Dynamic temp tables

    I am taking off the post, since didnt solve my purpose Quote from post: " why do you need dynamic temp tables? Why not put all in same table and add a column called City inside it to identify the city to which they belong?"

  • Where is the error message for Debrief line stored?

    Hi, I'm writing an sql query to display all the debriefs (and lines) in error and need to display the detailed error message (the field labeled "Error" on the Material tab on Debrief form). Does anyone know where this is stored in tables? I am diggin