Align centers with one object stationary

My simple questions is how do you use Align Vertical/Horizontal Centers when you want align one object (say a label) to the center of another object without actually moving the first object?
Currently I just move the second object by hand and visually center it since the Align Centers button moves both objects.

That topic comes up occasionally.  There is no "anchor point" object available in LV.  It is something that I have wanted sometimes.
If this is important to you, post an idea on the LabVIEW Ideas Exchange Forum.  If you can make a good case and many people agree with you, it might get implemented in a future version of LV.
Lynn

Similar Messages

  • Re: How to create More two class with one object

    haii,
             i have small information How to create More two class with one object,
    bye
    bye
    babu

    Hello
    I assume you want to create multiple instance of your class.
    Assuming that you class is NOT a singleton then simply repeat the CREATE OBJECT statement as many times as you need.
    TYPES: begin of ty_s_class.
    TYPES: instance   TYPE REF TO zcl_myclass.
    TYPES: end of ty_s_class.
    DATA:
      lt_itab      TYPE STANDARD TABLE OF ty_s_class
                     WITH DEFAULT KEY,
      ls_record  TYPE ty_s_class.
      DO 10 TIMES.
        CLEAR: ls_record-instance.
        CREATE OBJECT ls_record-instance.
        APPEND ls_record TO lt_itab.
      ENDDO.
    Regards
      Uwe

  • Centering/Aligning While Keeping One Object in Place

    We use Corel Draw at work, and although I prefer Illustrator, Corel does have some nice features that I don't think Illustrator has. If I want to center a small circle inside a larger circle, they will both move together, but if I want one to stay in place, is there a way to do that?
    In Corel you select the object you want to move first and then the other, then just press "C" to center horizontal and "E" to center vertical. Does Illustrator have anything like that? Thanks.

    One all your objects are selected, click again on the object you don't want moved. Objects will align to that objects position.

  • How to have three prompts with one object?

    Dear collegues,
    I am creating a report where I want to see an employees salary in three different periods, f.ex 11.2006, 08.2007 and 09.2007. This is no problem when I set these spesific periods as filters in the query. But how can these three periods be prompted values? So that the user can choose for which three periods he wants to see the salary?
    I have used an object Month Year to try. I drag it into the filter area of the query three times, and gives it prompt-functionality and call them Date 1, Date 2, Date 3. When I try to run the query it just tells me "No data".. (BO 6.0)
    Is this possible?
    Will sign points if you can help!
    regards Silje

    Hi Jaques,
    Thank you!
    I want to distribute the three dates on three different columns, date 1, date 2, date 3. Is that possible with inList?
    If I use OR, do I get all the dates and can distribute them in different columns?
    (In this report we follow salary development of employees. The report shows the given salary at three different points of time for an employee).
    Regards Silje

  • "horizontal/vertical align center" relative to one object, not the average

    Hello!
    I see in Illustrator, if i select 2 objects and i choose to align them relative to their centers, both objects will move to the middle point of the distance between their original positions.
    Is there a way to make just one of them move?
    Am i able to center one object to another object that is already in its final position?
    thanks a lot!

    i tried it, but it doesn't work. here's what i did:
    -selected one object
    -shift-selected the other one
    -clicked horizontal align center
    both objects moved
    (i am using CS3)

  • Possible?Multi-Entity View Object with one Entity Object that is Read-only.

    I know this sounds crazy, but I would like to create a multi-entity view object, where one entity object is based on a table in my application (we'll call it "Users", which basically stores the primary key for the person from the institutional people database), and the other table is a entity object based on a view of the institutional people database table (read only access), which we can call "People".
    I know that since no updates will be done to the People table, it really should be a read-only View Object, but I would lose the ability to sort on attributes like Last Name, Hire date, etc, since those would be transient attributes in my ViewObject for the Users. By having People as an entity object, I can then create a multi entity view object and have the ability to join Users to People and be able to sort on the above mentioned fields (like Last Name).
    The problem is that when I use the JDev (I'm currently using 10.1.2.1) AppModule BC4J tester, when I click on the multi-entity view object that I added to the AppModule it gives me an error:
    oracle.jbo.RowCreateException) JBO-25017: Error while creating a new entity row for People.
    ----- LEVEL 1: DETAIL 0 -----
    (java.lang.InstantiationException) null
    I have tried to change all the attributes to updateable in my entity object, but no create method, and I have tried to make them all read-only, but no effect, I get the same error (probably because the People view is read-only in my schema).
    Is there a way to change the entity object so that it will not try to create a new row when it runs the Tester? So that the multi entity view object behaves more like a view link, but gives me the added bonus of being able to sort on the Last Name column from the People table?
    Thanks for any help on this subject...at worst, I will have to use the view link method to get the job accomplished, but it would be "cooler" if this would work!
    Jeremy.

    Steve, thanks for your quick response to my question.
    To answer your questions, I was trying to create the Multi-entity View Object to give me more flexibility when working with my User table, and my People view. The flexibility I desired was that I would be able to sort my Users based on attributes in the People view. This is not possible when the there is only one Entity in my VO, and the People view data are all transient attributes, because they are not in the SQL statement.
    Ultimately, after working with one of my colleagues, we decided to use the approach that you mentioned by creating a read-only VO with the SQL query we want to display to the user (contains both User and People data fields), and then use a different ViewObject when performing other actions on the User Table (such as inserts/updates/deletes). By using the setWhereClauseParam() method in the handleLifeCycle() for the JSP page, we should be able to navigate between the different View Objects, so that the user does not see any difference.
    Thanks! Oh, and by the way, I have read your article you included before, and I have used it many times before to tune my View Objects! Thanks!

  • How do I center objects (photos and animations) so they stay centered with the other page elements?

    How do I center objects (photos and animations) so they stay centered with the other page elements?

    Geez .. Your class doesn't fulfill the javabean specifications. The properties should not be public.
    It should rather look likepublic class TheAddress {
        // Properties ---------------------------------------------------------------------------------
        private String address1;
        private String address2;
        // Constructors -------------------------------------------------------------------------------
        public TheAddress() {
            // Default constructor.
        public TheAddress(String address1, String address2) {
            // Full constructor.
            this.address1 = address1;
            this.address2 = address2;
        // Getters ------------------------------------------------------------------------------------
        public String getAddress1() {
            return address1;
        public String getAddress2() {
            return address2;
        // Setters ------------------------------------------------------------------------------------
        public void setAddress1(String address1) {
            this.address1 = address1;
        public void setAddress2(String address2) {
            this.address2 = address2;
    }

  • Ranking one object (row) with two/multiple criteria - excluded from one set of results if ranked by the other criteria.

    Working in Numbers 3.2.2. I've figured out how to rank with one or more criteria, but I need help completing my formula...
    I have a table with each person (row) who have different values for two different products (Columns B and C). I want to rank each person by column B (top 5), then rank the remaining 5 by column C.
    I'm able to create the table that ranks by product A using the formulas:
    A2  =LOOKUP(LARGE(Totals::Product A,ROW()−1),Totals::Product A,Totals::A)
    B2  =LARGE(Totals::Product A,ROW()−1)
    C2  =LOOKUP(LARGE(Totals::Product A,ROW()−1),Totals::Product A,Totals::Product B)
    I need exclude Persons H, D, G, J, and A from the ranking of Product B for the remaining 5 slots. This is where I'm getting stuck... I've manually created the rest of the table showing the sorting of Product B, excluding the top 5 people from Product A, and the final results I'm after. (The green cells show the ranking pattern I'm after. (Yes, Person F appears to get shafted. That's why I'm doing this. ))

    Hello
    You may create a rank index column as follows so that you can sort or retrieve the data based upon it.
    Table 1
    A1  Name
    A2  N01
    A3  N02
    A4  N03
    A5  N04
    A6  N05
    A7  N06
    A8  N07
    A9  N08
    A10 N09
    A11 N10
    B1  A
    B2  806
    B3  206
    B4  705
    B5  749
    B6  169
    B7  28
    B8  80
    B9  385
    B10 733
    B11 125
    C1  B
    C2  925
    C3  803
    C4  115
    C5  189
    C6  925
    C7  191
    C8  699
    C9  64
    C10 510
    C11 738
    D1  rank index
    D2  =IF(B2-LARGE(B,5)>=0,B2*"1e8",C2)
    D3  =IF(B3-LARGE(B,5)>=0,B3*"1e8",C3)
    D4  =IF(B4-LARGE(B,5)>=0,B4*"1e8",C4)
    D5  =IF(B5-LARGE(B,5)>=0,B5*"1e8",C5)
    D6  =IF(B6-LARGE(B,5)>=0,B6*"1e8",C6)
    D7  =IF(B7-LARGE(B,5)>=0,B7*"1e8",C7)
    D8  =IF(B8-LARGE(B,5)>=0,B8*"1e8",C8)
    D9  =IF(B9-LARGE(B,5)>=0,B9*"1e8",C9)
    D10 =IF(B10-LARGE(B,5)>=0,B10*"1e8",C10)
    D11 =IF(B11-LARGE(B,5)>=0,B11*"1e8",C11)
    Tested with Numbers 2.0.5 under OS X 10.6.8.
    Good luck,
    H

  • Keeping "child" objects aligned relative to "parent" objects - Possible?

    Hello,
    I have an object (e.g. a circle) and I have some text that I would like to remain center-aligned horizontally and vertically to the center of the circle, even if I cange the font or size of the text, or add a newline (make it two or three lines of text rather than one).
    Right now I have to realign the text to the object each time I change the text. I'd like to be able to "lock" the alignment of the text (or any other object) to some other object. Can I get this result (or close to it) somehow? I have to make frequent changes like this, and the extra realignement step after each change is a productivity killer for me.
    Thanks for your wisdom,
    Ben

    Thanks for the help so far, I appreciate it!
    I think I will likley have to go the action or scripting route.  Setting an object's origin relative to that of another object seems like what I want to do, but the example I gave was really an oversimplification of my situation, and the text and circle of my example are really more complicated objects and groups of objects (including text) in the actual case, so I don't think the convert to ellipse solution will be quite robust enough. I'm going to fiddle with that method a bit to see if it might be adapted to the general case; it involves a few features I didn't know about so thanks for the education regardless. Otherwise, if there is no general way of linking one object's coordinate system to another object's center, creating an action or script will at least eliminate a few mouse clicks.
    Thanks again both of you,
    Ben

  • How do I create multiple TEBs with one submit button on one page in Captivate 7

    I've read other posts on this topic (which refer primarily to earlier versions of Captivate) and am still at a loss as to how to put multiple text entry boxes on a page with one submit button. Here's my scenario:
    I am creating test questions.
    Each test question has multiple text entry boxes (for numbers only).
    Student should be able to enter numbers into the textboxes in any order.
    Then there is one Submit button that should initiate validating all the text entries, and move to a scoring page (so I can test it). (What would be best is if this button not only did the above, but also submitted scores to the LMS.  But that is not my question at this time.)
    I'd like this question to be set up as a template so that I can duplicate it, be able to add or delete text boxes and change the values required in the text boxes.  
    Here is an image of a sample question page with multiple TEBs. The yellow boxes tell the student where they need to enter text:
    Any help or direction to help is appreciated!!

    I think the problem here is that Arlhoolie wants all of the different TEBs to behave as if they were part of a single interaction that submits only ONE result to the quiz.  Using multiple TEBs in Captivate means that you have multiple scored objects and therefore multiple results being submitted to the quiz.
    If you want a single Success or Failure result submitted to the quiz based on the results from multiple interactive objects then there really is no simple way to do it.  But you could try using the Infosemantics Interactive Master widget to combine all the TEBs as slave objects that report to the Master Widget, which then reports a single score to the quiz based on the results from the slave objects.
    You can learn more about the Master widget here:
    http://www.infosemantics.com.au/adobe-captivate-widgets/interactive-master
    http://www.infosemantics.com.au/interactivemaster/help
    You can download a free trial version of the widget here:
    http://www.infosemantics.com.au/adobe-captivate-widgets/download-free-trial-widgets
    One caveat you should be aware of is that this widget is not HTML5 compatible.

  • Report with OLE Object Problem (Crystal Report 11)

    Post Author: ibertola
    CA Forum: General
    Hi all,I'm a new user, and I've got a problem with OLE object. I would like to have a report that show me ONLY one of many OLE (word document) in Crystal structure.I've created 3 section detail, and in each one I've insert OLE object (creating from a file, and LINK).So, if I change one document stored locally, and then refresh the report, the content doesn't change like the linked file! Actually I've got all locally  Please help me.

    CR XI r2 is not supported on WIN 2008. See the [supported platforms|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/7081b21c-911e-2b10-678e-fe062159b453]
    documentation  and [this|https://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=56787567] wiki.
    Ludek

  • Can i copy values from one object to another ?

    One more help..
    How do i compare the input values with the ones in an object of another class ?
    Can i copy values of one object of a class to different object of another class ?
    Thanks,
    Sanlearns

    How do i compare the input values with the ones in an
    object of another class ?By getting and comparing them?
    Can i copy values of one object of a class to
    different object of another class ?Yes, you can. But you shouldn't, as you're breaking encapsulation all over the place. You could use setter methods (if available) to set the values.

  • How do i create an animation with one frame for each layer?

    I have 76 sequential images that i've loaded as layers using bridge, then aligned using photoshop.
    I would now like to create a 76 frame animation with one animation frame for each layer
    (the layers are in sequential order).
    is there an easy way to do this
    or do i have to create 76 frames (can duplicate multiple to speed it up)
    then set layer visibility for each frame?
    thanks
    bill w
    astro.whwiii.net

    thanks for all the replies
    got it
    here's a rough draft of 2 hours of sunshine
    http://whwastro.homestead.com/files/big/31-05-2014-prom-animation.gif
    -bill w
    astro.whwiii.net

  • GroupLayout can only be used with one Container at a time

    Dear all,
    I am a beginner so please don't throw rocks at me...
    I have created two frames with NetBeans. One is the main frame (extends from JPanel) and the other frame I put it to be started when pressing a button from the main frame (the second frame extends from JFrame). Both frames are created using the designer in NetBeans, so the code for creating the GUI is automatically generated by NetBeans, so both frames use the same layout (GroupLayout).
    Here is the code of the button from the main frame to start the second one:
    private void manageCustomersActionPerformed(java.awt.event.ActionEvent evt) {                                                
            // TODO add your handling code here:
            CustomerGUI custGUI1=new CustomerGUI();//CustomerGUI is the second frame
            custGUI1.setVisible(true);
    }When I press this button from the main frame I get this runtime exception: Exception in thread "AWT-EventQueue-0" java.lang.IllegalArgumentException: GroupLayout can only be used with one Container at a time. The second frame is not opened.
    How should I handle this?
    What I want to do: I want to have a main frame, from which I can start additional ones (the main frame must be always opened, while the additional ones can be closed after performing certain actions). I read a little about internal frames and I think this can be a solution, but I must edit the existing design...
    Thank you
    With respect,
    Don
    Edited by: don1983p on Dec 16, 2008 2:21 AM

    AndrewThompson64 wrote:
    There are those that maintain that JFrame should never be extended. I am not convinced, but most cases where a JFrame is extended would be better coded as simply configuring the JFrame within the main(). GUI builders such as found in NetBeans seem to extend JFrame as a matter of course.I too am not rigorous or religious about this either, but try to adhere to this as a matter of practicality and convenience, I find that if I don't extend a JComponent but rather use composition rather than inheritance, it's much easier to use objects of my class when programming in Eclipse. For instance in Eclipse (and in most IDEs), if I type my object name and then a period, it will show all of the method's available for me to use on this object. If I subclass JPanel or JFrame, I'll see a gazillion methods most I don't want to see, and thus most are clutter. On the other hand if I use composition, I'll only see a small number of methods and these will be only the methods that I want to see and need to use.

  • Selecting more than one object at a time

    Hi guys and girls
    I am trying to select more than one object on my artboard and Shift+clicking on the next one isn't working...
    I am creating an interactive form in Indesign and realised that I have everything on one layer... I have radio buttons for yes/no questions and I wanted to move them to a new layer for ease of selection and editing...
    I have tried selecting one and then Shift+Click on the next but it just moves which one is selected...?
    I even tried creating a new layer and dragging them up to the new layer...no Dice?
    Has anyone any ideas....Please!
    bookie56
    P.S. Just realised that the radio buttons are part of the text? Could this be the reason why I can't move them. Doesn't solve the question about selection though

    Hi AnshulJain19
    OK! sort of guessed that....thanks for coming by.
    I am still on this form and have created multiline text boxes for two of my text boxes.... have checked the positioning of the boxes - but when I write in the box in Adobe Acrobat the text is quite a long way above the line...this is only happening with the multiline boxes.
    Is there a way to export a font colour for the boxes or does this need to be done in Acrobat Reader...?
    I have a standard dark background for my page and that needs a White font...when I fill the form in it is black...
    bookie56

Maybe you are looking for

  • Session Prob-user1 becomes user2 with ProxyServer

    hi all We have a session problem using Weblogic server. Our application is a Java application sitting in Weblogic server. When we use Internet Explorer to access the system without any proxy server, everything goes fine, without any problem. Problems

  • How can I buy another "license" for an app I already have?

    How can I buy another "license" for an app I already have?

  • How to make a data set from this???

    Hi all, I have to read an XML file and then display each item on my page. Now, I have no problems doing this with simple, one level XML files like an RSS file for example. But the XML I have to read is a little different to what I am used to: quote:

  • Connect Flat files using jdbc

    Hi, I have a problem with connecting flat files(.txt, .xml, .csv, .xls, etc...) which is existing in application it's self, using jdbc connection. After searching I found some suggestions below. 1)xlsql 2)JDO I tried with first one (xlsql), below is

  • Want to change broken back glass on 4S. What screwdriver works?

    Hi Dropped my iPhone 4S (16gb) and broke the back glass. Ordered a replacement from Canada that came with 3 small screwdrivers. None seems to work. I believe my Model No is A1387, at least the A and 87 are clearly legible. What screwdriver works and