Unbundle does not resize

Hello everybody,
I am using Labview 7.1 and I have the following problem. I use the Fieldpoint express vi to read from my modules. The output is in the form of Dynamic Data Type (blue line) which I then convert to an array by usiing the DynamicDataType to Array function and then I use the array to cluster function to get all the data.
My problem is that when I use the unbundle function to get every item of the cluster it does not let me resize it at all and it only comes with two items as an output although my cluster has all the channels of the module (ex. 8 channels). If I use the unbundle by name it has more options and it lets me resize, add element etc.
Does anyone know why this happens and how I can solve it?
Thanks a lot

The Array to Cluster function doesn't know how many elements to give you. You have to tell it by right-clicking on it and selecting "Cluster Size...". You will see a dialog where you can specify how many elements you want.
Dan Press
Certified LabVIEW Architect
PrimeTest Corporation

Similar Messages

  • Node Container that does not resize with Window Resize Event

    Hello,
    I'm not new to Java but I am new to JavaFX.
    I plan to have a container/Canvas with multiple shapes (Lines, Text, Rectangle etc) in it. This Container can be X times in the Szene with different Text Shapes. I need to Zoom and Pan (maybe rotation) the whole Szene and the Containers/Canvas.
    So I was playing around with that but I have two issues.
    1) all Canvas classes that I found (like Pane for example) do resize with the main window resize event. The content of the canvas isn't centered any more.
    2) I added a couple of Rectangles to the canvas and both the rectangles and the canvas have a mouse listener which will rotate the item/canvas. Problem is, that even if I click the rectangle also the underlaying canvas is rotated...I think I need some kind of Z-Info to find out what was clicked.
    Here is the little example program, it makes no produktiv sense but it demonstrates my problem.
    Does anybody has a tip what canvas class would fit and does not resize with the main window and how to figure out what was clicked?
    public class Test extends Application
         Scene mainScene;
         Group root;
         public static void main(String[] args)
            launch(args);
        @Override
        public void init()
            root = new Group();
            int x = 0;
            int y = -100;
            for(int i = 0; i < 5; i++)
                 x = 0;
                 y = y + 100;
                 for (int j = 0; j < 5; j++)
                      final Rectangle rect = new Rectangle(x, y, 30 , 30);
                       final RotateTransition rotateTransition = RotateTransitionBuilder.create()
                             .node(rect)
                             .duration(Duration.seconds(4))
                             .fromAngle(0)
                             .toAngle(720)
                             .cycleCount(Timeline.INDEFINITE)
                             .autoReverse(true)
                             .build();
                     rect.setOnMouseClicked(new EventHandler<MouseEvent>()
                          public void handle(MouseEvent me)
                               if(rotateTransition.getStatus().equals(Animation.Status.RUNNING))
                                    rotateTransition.setToAngle(0);
                                    rotateTransition.stop();
                                    rect.setFill(Color.BLACK);
                                    rect.setScaleX(1.0);
                                    rect.setScaleY(1.0);
                               else
                                    rect.setFill(Color.AQUAMARINE);
                                    rect.setScaleX(2.0);
                                    rect.setScaleY(2.0);
                                    rotateTransition.play();
                      root.getChildren().add(rect);
                      x = x + 100;
        public void start(Stage primaryStage)
             final Pane pane = new Pane();
             pane.setStyle("-fx-background-color: #CCFF99");
             pane.setOnScroll(new EventHandler<ScrollEvent>()
                   @Override
                   public void handle(ScrollEvent se)
                        if(se.getDeltaY() > 0)
                             pane.setScaleX(pane.getScaleX() + 0.01);
                             pane.setScaleY(pane.getScaleY() + 0.01);
                        else
                             pane.setScaleX(pane.getScaleX() - 0.01);
                             pane.setScaleY(pane.getScaleY() - 0.01);
             pane.getChildren().addAll(root);
             pane.setOnMouseClicked(new EventHandler<MouseEvent>(){
                   @Override
                   public void handle(MouseEvent event)
                        System.out.println(event.getButton());
                        if(event.getButton().equals(MouseButton.PRIMARY))
                             System.out.println("primary button");
                             final RotateTransition rotateTransition2 = RotateTransitionBuilder.create()
                                  .node(pane)
                                  .duration(Duration.seconds(10))
                                  .fromAngle(0)
                                  .toAngle(360)
                                  .cycleCount(Timeline.INDEFINITE)
                                  .autoReverse(false)
                                  .build();
                             rotateTransition2.play();
             mainScene = new Scene(pane, 400, 400);
             primaryStage.setScene(mainScene);
            primaryStage.show();
    }Edited by: 953596 on 19.08.2012 12:03

    To answer my own Question, it depends how you add childs.
    It seems that the "master Container", the one added to the Scene will allways resize with the window. To avoid that you can add a container to the "master Container" and tell it to be
    pane.setPrefSize(<child>.getWidth(), <child>.getHeight());
    pane.setMaxSize(<child>.getWidth(), <child>.getHeight());
    root.getChildren().add(pane);and it will stay the size even if the window is resized.
    Here is the modified code. Zooming and panning is working, zomming to window size is not right now. I'll work on that.
    import javafx.animation.Animation;
    import javafx.animation.ParallelTransition;
    import javafx.animation.ParallelTransitionBuilder;
    import javafx.animation.RotateTransition;
    import javafx.animation.RotateTransitionBuilder;
    import javafx.animation.ScaleTransitionBuilder;
    import javafx.animation.Timeline;
    import javafx.animation.TranslateTransitionBuilder;
    import javafx.application.Application;
    import javafx.event.EventHandler;
    import javafx.geometry.Point2D;
    import javafx.scene.Group;
    import javafx.scene.Scene;
    import javafx.scene.input.MouseButton;
    import javafx.scene.input.MouseEvent;
    import javafx.scene.input.ScrollEvent;
    import javafx.scene.layout.Pane;
    import javafx.scene.paint.Color;
    import javafx.scene.shape.Rectangle;
    import javafx.stage.Stage;
    import javafx.util.Duration;
    public class Test extends Application
         Stage primStage;
        Scene mainScene;
         Group root;
         Pane masterPane;
         Point2D dragAnchor;
         double initX;
        double initY;
         public static void main(String[] args)
            launch(args);
        @Override
        public void init()
            root = new Group();
            final Pane pane = new Pane();
            pane.setStyle("-fx-background-color: #CCFF99");
            pane.setOnScroll(new EventHandler<ScrollEvent>()
                @Override
                public void handle(ScrollEvent se)
                    if(se.getDeltaY() > 0)
                        pane.setScaleX(pane.getScaleX() + pane.getScaleX()/15);
                        pane.setScaleY(pane.getScaleY() + pane.getScaleY()/15);
                        System.out.println(pane.getScaleX() + " " + pane.getScaleY());
                    else
                        pane.setScaleX(pane.getScaleX() - pane.getScaleX()/15);
                        pane.setScaleY(pane.getScaleY() - pane.getScaleY()/15);
                        System.out.println(pane.getScaleX() + " " + pane.getScaleY());
            pane.setOnMousePressed(new EventHandler<MouseEvent>()
                public void handle(MouseEvent me)
                    initX = pane.getTranslateX();
                    initY = pane.getTranslateY();
                    dragAnchor = new Point2D(me.getSceneX(), me.getSceneY());
            pane.setOnMouseDragged(new EventHandler<MouseEvent>()
                public void handle(MouseEvent me) {
                    double dragX = me.getSceneX() - dragAnchor.getX();
                    double dragY = me.getSceneY() - dragAnchor.getY();
                    //calculate new position of the pane
                    double newXPosition = initX + dragX;
                    double newYPosition = initY + dragY;
                    //if new position do not exceeds borders of the rectangle, translate to this position
                    pane.setTranslateX(newXPosition);
                    pane.setTranslateY(newYPosition);
            int x = 0;
            int y = -100;
            for(int i = 0; i < 5; i++)
                 x = 0;
                 y = y + 100;
                 for (int j = 0; j < 5; j++)
                      final Rectangle rect = new Rectangle(x, y, 30 , 30);
                       final RotateTransition rotateTransition = RotateTransitionBuilder.create()
                             .node(rect)
                             .duration(Duration.seconds(4))
                             .fromAngle(0)
                             .toAngle(720)
                             .cycleCount(Timeline.INDEFINITE)
                             .autoReverse(true)
                             .build();
                     rect.setOnMouseClicked(new EventHandler<MouseEvent>()
                          public void handle(MouseEvent me)
                               if(rotateTransition.getStatus().equals(Animation.Status.RUNNING))
                                    rotateTransition.setToAngle(0);
                                    rotateTransition.stop();
                                    rect.setFill(Color.BLACK);
                                    rect.setScaleX(1.0);
                                    rect.setScaleY(1.0);
                               else
                                    rect.setFill(Color.AQUAMARINE);
                                    rect.setScaleX(2.0);
                                    rect.setScaleY(2.0);
                                    rotateTransition.play();
                      pane.getChildren().add(rect);
                      x = x + 100;
            pane.autosize();
            pane.setPrefSize(pane.getWidth(), pane.getHeight());
            pane.setMaxSize(pane.getWidth(), pane.getHeight());
            root.getChildren().add(pane);
            masterPane = new Pane();
            masterPane.getChildren().add(root);
            masterPane.setStyle("-fx-background-color: #AABBCC");
            masterPane.setOnMousePressed(new EventHandler<MouseEvent>()
               public void handle(MouseEvent me)
                   System.out.println(me.getButton());
                   if((MouseButton.MIDDLE).equals(me.getButton()))
                       double screenWidth  = masterPane.getWidth();
                       double screenHeight = masterPane.getHeight();
                       System.out.println("screenWidth  " + screenWidth);
                       System.out.println("screenHeight " + screenHeight);
                       System.out.println(screenHeight);
                       double scaleXIs     = pane.getScaleX();
                       double scaleYIs     = pane.getScaleY();
                       double paneWidth    = pane.getWidth()  * scaleXIs;
                       double paneHeight   = pane.getHeight() * scaleYIs;
                       double screenCalc    = screenWidth > screenHeight ? screenHeight : screenWidth;
                       double scaleOperator = screenCalc  / paneWidth;
                       double moveToX       = (screenWidth/2)  - (paneWidth/2);
                       double moveToY       = (screenHeight/2) - (paneHeight/2);
                       System.out.println("movetoX :" + moveToX);
                       System.out.println("movetoY :" + moveToY);
                       //double scaleYTo = screenHeight / paneHeight;
                       ParallelTransition parallelTransition = ParallelTransitionBuilder.create()
                               .node(pane)
                               .children(
                                   TranslateTransitionBuilder.create()
                                       .duration(Duration.seconds(2))
                                       .toX(moveToX)
                                       .toY(moveToY)
                                       .build()
                                   ScaleTransitionBuilder.create()
                                       .duration(Duration.seconds(2))
                                       .toX(scaleOperator)
                                       .toY(scaleOperator)
                                       .build()
                      .build();
                       parallelTransition.play();
        public void start(Stage primaryStage)
             primStage = primaryStage;
            mainScene = new Scene(masterPane, 430, 430);
             primaryStage.setScene(mainScene);
            primaryStage.show();
    }

  • VS open website does not resize

    Using VS 2012: I resized fonts to something I can read - 12pt with a 14pt Title Bar. The open website (IIS) does not resize. The buttons are below the bottom of the page. So, I must go to personalize and resize the fonts just to open a website, and then
    set them back so I can read it.

    Hi
    DenniSys1,
    Thank you for posting in MSDN forum.
    >>I resized
    fonts to something I can read - 12pt with a 14pt Title Bar. The open website (IIS) does not resize.
    According to your description, I suggest you can go to Tools-->Options->Fonts and Colors->Select  Environment Font
    under Show settings for option-> change the font and size under the Font(bold type indicates fixed-width fonts).
    And then you open your website again, you will see the font is resized  in the open web site window.
    Best Regards,
    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.

  • Bug: View does not resize after soft keyboard dismissal

    On Android when resizeForSoftKeyboard=true, the view does not resize after dismissing the soft keyboard. This simple app demonstrates the bug.
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   applicationDPI="160"
                   resizeForSoftKeyboard="true"
                   applicationComplete="applicationComplete()">
        <fx:Script>
            <![CDATA[
                private function applicationComplete():void {
                    keywordTextInput.setFocus();
                private function keywordTextInputEnter():void {
                    stage.focus = null;
            ]]>
        </fx:Script>
        <s:Rect id="rect1" width="100%" height="100%">
            <s:stroke>
                <s:SolidColorStroke color="#FF0000" weight="4"/>
            </s:stroke>
        </s:Rect>
        <s:TextInput id="keywordTextInput" enter="keywordTextInputEnter()" returnKeyLabel="go"/>
    </s:Application>
    1) Start app.
    2) Click on the "go" button on the soft keyboard
    I observe that the red rectangle remains the same size (about half the screen). I expect the red rectangle to resize to fill the entire screen as it does on iOS.
    My environment:
    Flash Builder 4.7 beta
    Flex 4.6.0
    AIR 3.4
    ASUS Transformer (Android 4.0.3)

    Submitted bug:
    https://bugbase.adobe.com/index.cfm?event=bug&id=3657721

  • Form does not resize, cannot open in mobile browser

    I was just shared a form to place on a website, and I have no prior experience with Adobe whatsoever and really do not have the time to learn it, unfortunately.
    My problem is that the form, unlike most other embedding elements, does not seem to be dynamic. So it does not resize on mobile devices, or on small browser windows. How do I change/alter the form so that the embed functions with regard to the browser?
    Thanks!
    The form was made in formscentral.

    I too have the same problem.  I have found the hidden library and mobile documents folder.  Nested in the folder are a variety of other folders, including one for each iWork app.  Unfortunately, there are no documents listed in these folders.  For what it is worth, my documents are syncing fine between my iOS devices and iCloud.com.  I just wish to have some control over them on my MacBook.  I am running 10.7.5.

  • JApplet does not resize correctly

    Hello,
    I'm trying to practice with JLayeredPane in JApplet.
    The problem is that when i resize the applet JButton b3 is painted "as a background", and still works as a JButton.
    Why doesn't it resize correctly as the other JComponent do?
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class JLayeredPaneDemo extends JApplet {
         public void paint(Graphics g) {
              final JLabel l1 = new JLabel("LABEL 1",JLabel.CENTER);
              final JLabel l2 = new JLabel("LABEL 2",JLabel.CENTER);
              final JLabel l3 = new JLabel("LABEL 3",JLabel.CENTER);
              resize(400,300);
              l1.setOpaque(true);
              l1.setBackground(Color.blue);
              l1.setBorder(BorderFactory.createLineBorder(Color.black,2));
              l2.setOpaque(true);
              l2.setBackground(Color.green);
              l2.setBorder(BorderFactory.createLineBorder(Color.black,2));
              l3.setOpaque(true);
              l3.setBackground(Color.yellow);
              l3.setBorder(BorderFactory.createLineBorder(Color.black,2));
              l1.setBounds(0,0,100,100);
              l2.setBounds(30,30,100,100);
              l3.setBounds(60,60,100,100);
              getLayeredPane().add(l1,new Integer(1));
              getLayeredPane().add(l2,new Integer(2));
              getLayeredPane().add(l3,new Integer(3));
              JButton b1 = new JButton("LABEL 1 ON TOP");
              JButton b2 = new JButton("LABEL 2 ON TOP");
              JButton b3 = new JButton("LABEL 3 ON TOP");
              b1.setBounds(220,0,150,40);
              b2.setBounds(220,40,150,40);
              b3.setBounds(220,80,150,40);
              b1.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e) {
                        if(getLayeredPane().getLayer(l2)>getLayeredPane().getLayer(l3))
                             getLayeredPane().setLayer(l1,new Integer(getLayeredPane().getLayer(l2)+1));
                        else
                             getLayeredPane().setLayer(l1,new Integer(getLayeredPane().getLayer(l3)+1));
              b2.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e) {
                        if(getLayeredPane().getLayer(l1)>getLayeredPane().getLayer(l3))
                             getLayeredPane().setLayer(l2,new Integer(getLayeredPane().getLayer(l1)+1));
                        else
                             getLayeredPane().setLayer(l2,new Integer(getLayeredPane().getLayer(l3)+1));
              b3.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e) {
                        if(getLayeredPane().getLayer(l1)>getLayeredPane().getLayer(l2))
                             getLayeredPane().setLayer(l3,new Integer(getLayeredPane().getLayer(l1)+1));
                        else
                             getLayeredPane().setLayer(l3,new Integer(getLayeredPane().getLayer(l2)+1));
              add(b1);
              add(b2);
              add(b3);
    }If i use the init() method instead of the paint(Graphics g) method JButton b3 is painted as large as possible since the beginning.
    thanx in advance :)

    Swing related questions should be posted in the Swing forum.
    If i use the init() method instead of the paint(Graphics g) methodWell, thats the proper way to write a Swing applet. The code for building the GUI should be in the init() method. You never need to override the paint() method of the JApplet.
    Components will not be automatically resized when the size of the applet changes. A layered pane does not use a layout manager, therefore it is up to you to manually change the size of each component. You can add a ComponentListener to the applet to be notified when the size changes.

  • Resizing does not resize graphics?

    Hi,
    I'm playing with a layout that is created using floats and em
    for size. The
    audience will be older seniors, so I would like the page to
    resize both
    larger and smaller.
    The page has graphics that are screwing up the resizing to a
    smaller size so
    that some of the floats are dropping. Is there any way of
    controlling what
    happens with the graphics to stop the float drops, or am I
    doing something
    else wrong?
    IE6 - when going smaller, the float drop problem occurs.
    FF2 - works ok, but graphics stay same size, so
    proportionally not right.
    Opera9 - works the way I want, graphics resize too, so all is
    proportional.
    http://jmt.jobmark.com/jmo/workforce50/template2.htm
    The css is in the template.
    Thanks,
    Doug

    Thanks Murray,
    As soon as I wrote the min-width and sent it, I realized IE
    doesn't support
    it. I thought it was the other way around and it was
    supported by IE6 until
    I looked it up. I ended up not floating the middle section,
    not setting a
    width for it and just setting left and right margins using
    em's. That seems
    to have worked.
    Doug
    "Murray *ACE*" <[email protected]> wrote
    in message
    news:[email protected]...
    > Since IE6 doesn't support min-width, probably not. Just
    try making that
    > section about 3px narrower to see if that helps.
    >
    > --
    > Murray --- ICQ 71997575
    > Adobe Community Expert
    > (If you *MUST* email me, don't LAUGH when you do so!)
    > ==================
    >
    http://www.dreamweavermx-templates.com
    - Template Triage!
    >
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    > ==================
    >
    >
    > "Doug" <[email protected]> wrote in message
    > news:[email protected]...
    >> Murry,
    >>
    >> I just used "float drop" for lack of a better term.
    Since this only seems
    >> to happen in IE6 (not sure about IE7), would the
    min-width for the middle
    >> section be a solution?
    >>
    >> Doug
    >>
    >> "Murray *ACE*"
    <[email protected]> wrote in message
    >> news:[email protected]...
    >>>> or am I doing something else wrong?
    >>>
    >>> What causes the floats to drop is when the
    containing box resizes to
    >>> something too narrow to place the floated
    element beside the rest of the
    >>> content.
    >>>
    >>> When you resize the browser viewport, graphics
    do not resize.
    >>>
    >>> I do not see float drop in IE6, by the way.
    >>>
    >>>
    >>> --
    >>> Murray --- ICQ 71997575
    >>> Adobe Community Expert
    >>> (If you *MUST* email me, don't LAUGH when you do
    so!)
    >>> ==================
    >>>
    http://www.dreamweavermx-templates.com
    - Template Triage!
    >>>
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >>>
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >>>
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    >>> ==================
    >>>
    >>>
    >>> "Doug" <[email protected]> wrote in
    message
    >>> news:[email protected]...
    >>>> Hi,
    >>>>
    >>>> I'm playing with a layout that is created
    using floats and em for size.
    >>>> The audience will be older seniors, so I
    would like the page to resize
    >>>> both larger and smaller.
    >>>>
    >>>> The page has graphics that are screwing up
    the resizing to a smaller
    >>>> size so that some of the floats are
    dropping. Is there any way of
    >>>> controlling what happens with the graphics
    to stop the float drops, or
    >>>> am I doing something else wrong?
    >>>>
    >>>> IE6 - when going smaller, the float drop
    problem occurs.
    >>>> FF2 - works ok, but graphics stay same size,
    so proportionally not
    >>>> right.
    >>>> Opera9 - works the way I want, graphics
    resize too, so all is
    >>>> proportional.
    >>>>
    >>>>
    http://jmt.jobmark.com/jmo/workforce50/template2.htm
    >>>>
    >>>> The css is in the template.
    >>>> --
    >>>> Thanks,
    >>>>
    >>>> Doug
    >>>>
    >>>
    >>>
    >>
    >>
    >
    >

  • Window.resizeTo in addon (overlay commonDialog) does not resize after some minimum size in FF v17 & 18

    I created an addon which overlay commonDialog.xul.
    In the load event, window.resizeTo is called and set to a very small size (like 10x10) so it is almost invisible to users.
    This works fine in FF 15. After upgrading to FF 17 or FF 18, this stops working.
    When I set the size big, it works fine. When setting it to a small size, it seems like when hitting a limit, the window size stays the same. The window size is the same when setting to 10x10 or 100x100.
    This is on a MAC, but same behavior is observed on Windows too.
    It seems like there is a minimum size predefined and the window does not get smaller than that.
    Aren't we supposed to be able to resize the window as we wish in the addon?

    If you create your own window with a unique ID then it should be possible to create more specific CSS rules for that window.
    How (when) do you resize that window when you need it to show with the default dimensions?
    If you have specific questions about developing extensions then it is best to ask advice at the MozillaZine Extension Development forum.
    *http://forums.mozillazine.org/viewforum.php?f=19
    The helpers at that forum are more knowledgeable.<br>
    You need to register at the MozillaZine forum site in order to post at that forum.

  • Album Art Does Not Resize in Album Art Panel

    For some reason some of my album art does not fill up or resize when I resize the album art panel (the lower left hand side of itunes). This happens only with some, not all, of my art. Some additional background:
    - No problem with album art in cover flow or grid views
    - album art was embedded in file by another program (not itunes)
    - Occurs in itunes 7 and itunes 8
    - for the album art that is a problem, the art does not fill in the album art panel and therefore when i resize the panel, it just stays the same size.

    I still don't understand why it would scale in the other views (cover flow and list view)
    Who knows? The artwork preview panel pre-dates Cover Flow, so when Cover Flow was intoduced and made to scale art up as well as down, perhaps nobody considered revisiting the code for the artwork panel to make it work the same way. However, I find the existing behaviour quite handy for spotting when I have images that are too small, since these generally don't scale well. I have my artwork panel set to fit my minimum acceptable size of 200x200 pixels so if I ever notice a white border I know to try and find better quality art.
    tt2

  • TittleWindows does not resize

    I have extremly amature question but I am still not clear
    after reading SDk all day long anfd finding all those invalidateXX
    methods that do not seem to help , anyways here is my problem :
    I have tittleWindow that has ViewStack which has two mx:Box
    containers inside.
    first Box container width = 100px
    second Box width = 410 px.
    inside tittleWindow I have listener for viewstack change
    (wheneve viewstack changes its selected child ):
    this.myviewsStack.addEventListener(IndexChangedEvent.CHANGE,initSelectedStackProps);
    private function initSelectedStackProps(e:*) : void {
    ... some code ....
    Alert.show("width =
    "+this.myviewsStack.selectedChild.width);
    when App loads TittleWindow pups up and I have Alert :
    Alert.show("width "+this.selectedChild.width);
    at Very First Load and very first time when Tittle Window
    pops-up
    Alert box says correct : width=100 .
    but if I close the tittleWindow and open it again and set
    selected child of viewStack to be second mx:Box then Alert says
    width=0?
    and visa versa
    (if very first time Tittle Window pops-up and selected item
    of viewStack is second Box , Alert says :width=410 but afterwards
    every time tittleWindow pups-up and viewStack selected item is
    first Box then it says width=0 for that box .)
    I have exhausted all my resources to get that working
    basically I want tittle window to resize whenever it shows up to
    reflect size of whatever its viewStac's selecteditem is. since I
    have different sized Boxes inside viewStack
    I appreciate all your advices.
    Kind Regards.

    The Array to Cluster function doesn't know how many elements to give you. You have to tell it by right-clicking on it and selecting "Cluster Size...". You will see a dialog where you can specify how many elements you want.
    Dan Press
    Certified LabVIEW Architect
    PrimeTest Corporation

  • The drop down box does not resize with window

    I have enabled the vi option to resize components of the window with resolution. All other elements in the window resizes appropriatly.
    I have already spoke with an NI rep and she has said this is a problem. I am wondering if this problem is also in the 8.2 version of
    labview, since I have just recieved the update. Otherwise I would like to find an eqivelant work around to complete this particular
    application. Kinda frustrating.

    Hi,
    I was able to resize the combo box control in LabVIEW 8.20 by checking the "Scale all object on the front panel as the window resizes"  option in the "VI Properties" settings.
    Tunde

  • Blend does not support display resolution​s higher than 1080p

    I have noticed that blackberry blend does not resize its display to compensate for higher resolutions. In other words, if you open up blend on a windows laptop with a QHD display. The text is going to look really small. Please fix.

    Thank you for this feedback.  I have passed this request on to our development and product teams for further discussion.
    Did someone help you? Click Like! Did a post solve your issue? Click Accept as Solution!

  • Label not resizing

    When I do setText on a Label which I created empty it does not resize correctly so the whole text is not visible. What more should I do to make it resize? myLabel.invalidate() dos nothing to it.
    The Label is added to a Pane which is in its turn added to another Pane which is added to an applet. Thanks for any help!

    I think you should invalidate or validate the Container containing the Label.I do that:
              Container lParent = pComponent.getParent();
              lParent.invalidate();
              lParent.validate();
    It also depends on which LayoutManager you are using and how big that Container is.Take a look at the result here: http://apollo.nu/~ben/sunlabel.jpg
    1. The blue is a panel with borderlayout.
    2. The red and green are two panels with GridLayout(10, 1)
    which are added to the blue panel using:
    add(BorderLayout.WEST, mLabelPanel);
    add(BorderLayout.CENTER, mControlPanel);
    3. The smaller panels with labels are using FlowLayout(FlowLayout.LEFT)
    and added to the red and green panel using:
    add(lPanel)
    In any case it is the LayoutManager of the parent Container that >decides how much space the Label gets, however most LayoutManager will >ask the getPreferredSize() of the Label, which is the space needed to >show it's entire text in it's current font. java.awt.DimensionCould there be a bug in getPreferredSize() for Label in 1.1.8?
    I tried the same with an empty Button for which I set the text later and for that it DOES work using getPreferredSize(), it gets the correct size with either that or my calculation.
    I get the following result for getPreferredSize():
    java.awt.Dimension[width=14,height=23]
    using my own calculation:
    FontMetrics lFontMetrics = getFontMetrics(pComponent.getFont());
    Dimension lStringSize = new Dimension(lFontMetrics.stringWidth(pText), lFontMetrics.getHeight());
    I get this result:
    java.awt.Dimension[width=21,height=15]
    See the marks in the image for 14 and 21. getPreferredSize() obviously gives too little space. The label should say "fr�n" and not "fr�".
    Thanks for your time!

  • Web object not resizing with presentation

    I've added a web object in my elearning and published as a flash presentation.  When I resize the browser window, the flash presentation resizes, but the web object does not resize. My users will have various screen sizes, so I need the web object to display proportionally to the project size.
    I'm using a flash widget, so I cannot publish as HTML5.
    Thank you for any help or assistance.

    Hi there, unfortunately I don't have the answer but I'd like to support your question as I'm having exactly the same issue.
    Cheers,
    Dan

  • JTree in JScrollPane not resizing after model change.

    I have a JTree in a JScrollPane that's put in a JPanel using the JGoodies FormLayout as it's layout manager. The column definition defines the column to grow so the JScrollPane should have enough space. The tree is empty when I create it and put it in the JScrollPane.
    After adding some nodes to the tree the JScrollPane does not resize automatically, it only resizes when a forced repaint occurs (moving or resizing the window , etc).
    I've tried calling invalidate(), repaint(),revalidate() on both the JTree and the JScrollPane. I also do a reload() on the TreeModel after adding the nodes (which is probably unnecessary as I use insertNodeInto(node,parent,position) from the DefaultTreeModel to add the new nodes).
    Anybody knows what I'm missing here?
    Thanks a lot in advance !

    Update:
    The card is running now. I had another Arch system (arch2) on the same network (to compare with), and after I shut that down and rebooted the first one (arch1) the network interfaces show up, both lo and eth0.
    However, the startup routine hangs about 2-3 minutes on the network daemon (with blinking router lights and hdd activity), so it's still not perfect. Another thing is that I can't get the right gateway from the router's dhcp. Here's an overview of the setup:
    Home: 192.168.2.x
    arch1 .2.102-------|
    |
    arch2 .2.101-------| old SMC router: .2.1
    |
    fritzbox .2.2 -----|
    router/modem
    |
    |
    ~~~~~
    internet
    The gateway is supposed to be the fritzbox with ip 192.168.2.2. The old SMC router serves addresses in the range .2.101-110. I set it up this way because I need the 8 ports on the SMC (and I like watching the lights).
    Here's my /etc/rc.conf for both systems:
    arch1 (starts slow):
    eth0="dhcp"
    ROUTES=(!gateway)
    arch2 (working):
    eth0="eth0 192.168.2.101 netmask 255.255.255.0 broadcast 192.168.2.255"
    gateway="default gw 192.168.2.2"
    ROUTES=(gateway)
    arch1 gets the SMC as gateway, arch2 gets the fritzbox.
    Ideally all computers on the network should get their IPs from the SMC dhcp, which also gives them the fritzbox as gateway. But that just doesn't work for the arch1. arch2 and the windows PCs get online just fine.
    I had also tried setting arch1 the same as arch2 except for the ip=2.102. Then the network starts faster, but the gateway is still stuck at the SMC router -> no internet.
    Rather complicated, but what are networks for? Anyone see daylight in this mess?
    Last edited by bitpal (2009-08-13 21:24:02)

Maybe you are looking for

  • How to view customer line items in S_ALR_87012197

    Hi frends, what is the selection criteria for customer line items list in S_ALR_87012197 as i am preparing the EU document for it and till now i didnot use that one.so that i dont have much idea about the icons in that screen.the concept is i need to

  • How to search for all files w Metadata mismatch?

    I Upgraded recently from LR2.6 to 3.3. Many of my images have an Exclamation Mark on them, following the upgrade, informing me that there is a Metadata Mismatch... When I click on it I get this Dialogue box: Firstly I think LR developers are playing

  • Material standard value in Pricing calculation

    Hi, I have requirement to have material standard price should be included in sales price determination in pricing procedure. E.p Material standard price in material master 50 rs then in Pricing it should come as Material cost  50 Margin            20

  • Horizontal scrollbar of waveform chart in tab page resets to end when tab page switched

    I've got a VI in LV 2012 with a chart in one of two pages of a tab control.  Whether compiled to an executable or not, when the waveform chart contains data that is no longer being updated and the x-axis range doesn't show the last point of data, the

  • Webdispatcher problem: Forwarding http requests don't work

    hi experts, i'am trying to configure my webdispatcher in order forwarding http requests to my sap netweaver message server (AS JAVA instance). here is my profile file: SAPSYSTEMNAME = WDP SAPGLOBALHOST = myWebDispatcherHost SAPSYSTEM = 10 INSTANCE_NA