How to create a evenly spaced grid of rectangles

Ok Im having difficulty in creating 5x5 rectangles with rounded corners, which themselves have a specific height and width and the spacing (rows and columns) inbetween are evely spaced.
How would i acheive this???

Thanks for the replies.
I had actually tried Steve Fairbank's method before posting this thread, however it would you would have to set the area and thw shape width seperately f.e. if i were to set the height and width and the spacing, the overall area wouldnt expand to compensate but rather stay the same, if i then increase the area it would mess up either the spacing or the width and height. Very Frustrating. a
Anyway I have achieved what i wanted using Larry G. Schneider's method.
I have one more question now at this point:
Do you know how to manipulate the spacing between the shapes so that there is even spacing in the rows and columns between the shapes?? Doing this whilst using your method i found was hit and miss and i only got it roughly right.
Thanks

Similar Messages

  • How can you create an 'even-spaced' spiral?

    Is there a way or method to create the 'even-spaced' spiral with the spiral tool?  I've tried to using the Ctl+spiral tool but the inside is still too tight and the outside is too 'wide'.  I know I'm missing something here, I'd appreciate any info and/or help here.  The sample I've uploaded is almost what I'm looking for but without the 'ying-yang' look. Thanks in advance!

    cripeland,
    The free Archimedean Spiral script is downloadable (along with other nice free scripts) here:
    http://park12.wakwak.com/~shp/lc/et/en_aics_script.html#archimedes

  • How to create oracle services using grid control

    Hi All,
    I have oracle grid control account my grid control version is 10.2.0.4.0.Can any one please let me know the tab from which I can create Oracle services.
    I know we can create oracle services using DBCA also.When I'm trying to do that way it is giving below error.
    dbca
    DISPLAY not set.
    Set DISPLAY environment variable, then re-run.
    How to set DISPLAY environment variable.
    Thanks,
    Rafi.

    Normally, you set DISPLAY to an IP address with the suffix : and 0.0: the IP address must match a machine able to display X11 windows.
    Example with Linux bash shell:
    export DISPLAY=192.168.0.1:0.0What is your OS version ? What is your shell (bash, ksh, sh, csh) ? How do you connect to the UNIX host ?
    Edited by: P. Forstmann on 8 févr. 2010 09:05

  • How to create an interactive rectangular grid in labview.

    Hello everyone I want to create a grid in labview in which If I click in any block it should change colour and say it changes from intially white to red, than blue. And I want to save the data representing the colour like 0, 1, 2 , 3 to an array. Can anybody help me, where should I start with?? Can you please direct me towards any example.
    Solved!
    Go to Solution.

    Ah sorry, the posted VI has an array of pictures instead on an array of picture rings as I suggested. Thus my reply does not apply directly.
    I recommend a array of picture ring indicators, since there is only a small set of possibilities.
    You coulds use code similar to the one shown in the link of this post:
    A full featured 4x4 Tic Tac Toe Game
    Alternatively, you could make the entire grid as one big picture.
    LabVIEW Champion . Do more with less code and in less time .

  • How to create functionality to ALV Grid?

    Hi All,
    My ALV code is running successfully,but I just wanna add few customer specific functionality and my own PF status.Can you suggest me something for this.
    Thanks and Regards.
    Rajarshi.

    Hi Rajarshi,
    If you are using REUSE_ALV_GRID_CONTROL, Here is how you add 
    custom functionality.
    1) In the fM REUSE_ALV_GRID_CONTROL pass the parameters
    i_callback_user_command        = 'USER_COMMAND'  i_callback_pf_status_set       = 'SET_PF_STATUS'.  This are form name.
    2) Create a form in your program as below.
    FORM set_pf_status USING rt_extab TYPE slis_t_extab.
      SET PF-STATUS 'PFSTAT1' EXCLUDING rt_extab.
    ENDFORM.                    "SET_PF_STATUS
    PFSTAT1 is a copy of the Pf-status STANDARD_FULSCREEN of the program SAPLKKBL (copy it using SE41).
    Once PFSTAT1 is created you can modify it just like any other PF status and add your own menu or command buttons.
    3) To handle the functioanlity create a form of name user_command in your program as below.
    FORM user_command USING r_ucomm LIKE sy-ucomm
                            rs_selfield TYPE slis_selfield.
    The field "R_UCOMM" will contain the current value of   *"SY-UCOMM"
    "RS_SELFIELD" will hold contents of the selected line
      CASE r_ucomm.
      ENDCASE.
    ENDFORM.                    "USER_COMMAND
    Hope this helps

  • How to create PDF from data grid selected row records and save in local PC

    ok now i am need another help ;
    i am having one datagrid and one button outside the grid ,
    i   am having one datagrid in that i am having 5 records if i click a   record from the datagrid then click that button means that particular   record will save as PDF in my local PC.
    How to do that,
    Any suggession or examples.
    Thanks in advance
    B.venkatesan.

    <cfdocument>
    Usage is described in the cfml reference manual.  If you don't have one, the internet does.

  • How to create the selectable-resizable-movable transparent rectangle box?

    Hai,
    I want to create selectable-resizable-movable Transparent Rectangle box.This rectangular box may be moved and/or resized by putting the mouse pointer on a side or corner of the rectangle box.
    This is for cropping the image where rhe rectangle is selected. Please help how to write the code.
    Thanks in advance
    Regards,
    Saravanan.K

    Unless you're doing something special here (I'm not too sure what you mean by 'may not cover the background image'), I don't think you need an 'effect'.
    Try this:
    private Rectangle createSelectWindow(final Color color, double length) {
            Rectangle rect = new Rectangle(length, length);
            rect.setFill(Color.RED);
            rect.setStroke(Color.RED);
            rect.setOpacity(0.5);  // i.e. make it 50% visible
            rect.setCursor(Cursor.HAND);
            return rect;
    }Or, if you don't want the border to be translucent and just the fill, try this:
    private Rectangle createSelectWindow(final Color color, double length) {
            Rectangle rect = new Rectangle(length, length);
            rect.setFill(new Color(1, 0, 0, 0.5));  // rgba - use an alpha of 0.5 on the fill color
            rect.setStroke(Color.RED);
            rect.setCursor(Cursor.HAND);
            rootPane.getChildren().add(rect);
    }

  • How to create evenly spaced vertical rows?

    Hello!
    I need to create a grid with evenly spaced columns and rows, so what I basically need is the ability to vertically subdivide a frame in a number of steps, something similar to the "number of columns" input box for a text frame.
    Currently my workaround is to create a text frame, turn it 90 degrees and then apply the "number of columns" command to the desired number of vertical subdivisions I need (I like this option cos' it provides a gutter between the rows). Is there something faster?

    Set up the column width on that page to the value you need for spacing.
    Draw a rectangle/text frame/graphic frame and
    as you draw (don't release the mouse button) work with the arrow keys up and down.
    Or go to Layout > Create guide lines and add your values there and draw your rectangles between these guide lines.

  • How to create exchange grid in web entry form...

    Hi to all,
    I am new to HFM..my query is How to create exchange grid in web entry form...i try it a lot but it didn't get the solution...
    i did this exchange grid in web grid..any one can share the document or ppt or video clip related to this..which will be helpful for me...
    Thanks

    Hi...
    Its better to create the Exchange Rates in a Data Form than in an Data Grid, so that you can easily Import and Export the form and even can feed the values easily....
    Select the POV like in Scenario-Actual,Year-Your particular year,Period-In Period Dimension do not choose any option so that it can be selected in Columns and Rows,View--the same as Period Dimension,Entity-[None],Value-<Entity Currency>,Account-Do Not select ,ICP- [ICP None],Custom 1-[None], Custom 2-[None], Custom 3-[None], Custom 4-[None]...
    In Columns Select Scenario -Actual,Period-{[Fourth Generation]},Currency-#USD(Default Currency)
    In Rows Select-Account-A#AVGRATE,View-w#Periodic,Currency-C2#EUR
    A#AVGRATE.w#Periodic.C2#CFA and so on for rest of the currencies....
    and same in the below rows for the Closing Rates---- A#CLORATE.w#Periodic.C2#EUR
    A#CLORATE.w#Periodic.C2#CFA
    This might help you.....

  • How to create and assign a help document to INFO button on ALV grid

    Hi All,
    Can somebody tell me how to create an 'END USER DOCUMENTATION' document and the 'FUNCTION MODULE' to call it and display in the form of F1 help screen.
    OR
    Is there any standard method to call & display a help document, when the user clicks the INFO(i) button on the ALV grid standard toolbar?
    Thanks in advance.
    Rkumar

    Hello Rkumar
    If you have defined a documentation for your ALV report which you want to display when the INFO button is pushed you can use the following coding:
    CALL FUNCTION 'DSYS_SHOW_FOR_F1HELP'           
        EXPORTING                                  
             DOKCLASS           = 'RE'                                          " = report
             DOKNAME            = '<name of your ALV report>'
             SHORT_TEXT         = 'X'              
        EXCEPTIONS                                 
             OTHERS             = 1.     
    Regards
      Uwe

  • How to create new or delete the existing row in the grid....

    hi my friends...
    i am developing report using Reuse_alv_grid_display...
    my requirement is... At runtime
              1.  i may create new row on the grid (empty row inwhich  i may enter the data).
              2.  i may delete a existing row in the grid
              3.  i may edit the existing data...
    then i have to trace the modification in the grid in one internal table...
    how can i get into this.....
    note:
    i have some idea to edit the existing record in the grid and trace those modification,
    but i don't know abt how to create new or delete the existing row....
    can you give me some idea...

    Hi deva,
    write a class which implemets these methods
    CLASS lcl_event_receiver DEFINITION.
      PUBLIC SECTION.
        METHODS:
    To handle the toolbar on alv
         handle_toolbar
           FOR EVENT toolbar OF cl_gui_alv_grid
              IMPORTING e_object e_interactive,
    To handle the buttons on the alv grid
         handle_user_command
           FOR EVENT user_command OF cl_gui_alv_grid
           IMPORTING e_ucomm.
    endclass.
    Now Implement these methods.
    CLASS lcl_event_receiver IMPLEMENTATION.
    To handle the toolbar on alv
      METHOD handle_toolbar.
       DATA ls_toolbar  TYPE stb_button.
        CLEAR gs_toolbar.
        MOVE 3 TO gs_toolbar-butn_type.
        APPEND gs_toolbar TO e_object->mt_toolbar.
        CLEAR gs_toolbar.
        PERFORM icon_create USING 'ICON_INSERT_ROW' gs_toolbar-icon.
        MOVE text-010 TO gs_toolbar-function.
        MOVE text-012 TO gs_toolbar-quickinfo.
        MOVE ' ' TO gs_toolbar-disabled.
        APPEND gs_toolbar TO e_object->mt_toolbar.
        CLEAR gs_toolbar.
        PERFORM icon_create USING 'ICON_DELETE_ROW' gs_toolbar-icon.
        MOVE text-011 TO gs_toolbar-function.
        MOVE text-013 TO gs_toolbar-quickinfo.
        MOVE ' ' TO gs_toolbar-disabled.
        APPEND gs_toolbar TO e_object->mt_toolbar.
      ENDMETHOD.
       METHOD handle_user_command.
    In this form, check the function code(e_ucomm has the function code), based on that do the required action.
    as i said yesterday(i.e for appending a row, deleting a row, modifying a row)
        PERFORM user_command USING e_ucomm.
      ENDMETHOD
    endclass.
    Before calling the alv method, create a object of this class.
    DATA :
          gref_event_receiver  TYPE REF TO lcl_event_receiver,
          gv_tables_alv          TYPE REF TO cl_gui_alv_grid.
          CREATE OBJECT gref_event_receiver.
          SET HANDLER   gref_event_receiver->handle_user_command
                        FOR gv_tables_alv.
          SET HANDLER   gref_event_receiver->handle_toolbar
                        FOR gv_tables_alv.
    check this program for event handling, it is the similar way
    demo_abap_objects_events
    Hope u understood this.
    Regards,
    Prasant
    reward if helpful

  • How to create a grid

    Hi Friends,
    How to create a Grid, not a form or table.
    I want a grid to hold about 10 fields.
    so :-
    f1 v1 f2 v2
    f1 v1 f2 v2
    f--fields
    v--values
    I can get it using simple form ,but it doesnot look like a grid.
    I need the look and feel of a grid.
    Thanks!

    Hi Naveen,
    Check http://searchsap.techtarget.com/searchSAP/downloads/SAPPRESS.pdf Section "7.6 Layout managers"
    It will give you the most exhaustive description of how to build a grid in WD.
    Best tregards, Maksim Rashchynski.

  • How to create an occupancy grid map

    I am using a LIDAR sensor (URG-04LX) to map an environment for DaNI 1.0 in LabVIEW Robotics 2010 module.  I want to create an occupancy grid map of the environment to use for path planning purposes. Can anyone provide me with any assistance. I have looked at the examples for path planning using the A* technique on an occupancy grid but I don't understand how to create the occupancy map.

    ... everyone above as told you how to create and LABVIEW occupancy map.... using an occupancy map.
    The labview VI assumes you know exactly what the envrioment is like. Meaning you pretty much have some representation of the enviroment.
    What you want to know is how do I generate and occupancy map using a laserscanner. For this you would need something called SLAM. Simultaneous localisation and Mapping. In order generate an occupancy map you need to continously localise your system so you can map laser measurements with refference to a fixed refferece frame, you then have to localise with respect to your map and repeat. This is non-trivial !
    unfortuently there is no LabviewVi to do this for you, and there is not much working example code. So honestly if you want to do this, i would use a robotic development framework call ROS and using gmapping (which is a SLAM package). Alternatively if you inist on using labview you could create a dll of the gmapping (open source libary) and call it from labview, Our you could try to implement it from scratch yourself....
    I just wish it was easier to use opensource libaries like pcl,opencv and integrate with textbased langauges using a labview system... it would make labview so much better, but labview robotics i feels is not really a good robotic application framework comapared to alternatives like ROS which have much bigger communities and much more modules of code you can use... escpecially for SLAM 
    https://decibel.ni.com/content/docs/DOC-22790 this is the best i have managed to find ( they do implement SLAM for this) 
    http://www.ros.org/wiki/gmapping

  • How to create an "overlay" in Advanced Grid in Flex?

    I'd like to know how to create an "overlay" in Advanced Grid in Flex? See the snapshot of what I'm trying to achieve here:
    http://www.softfinity.com/overlay.png
    As you can see that changing selected item's background won't be enough for achieving the same result because elected row is slightly higher than other rows.

    Maybe something like this?

  • How to create grid texture in Photoshop?

    How to create grid texture in Photoshop?

    Christoph points out a very good method for creating your own grid pattern.
    There is one already provided that may be sufficient.  Choose Edit - Fill - Pattern, load the standard Patterns set, and choosing the grid pattern Tiles-Smooth from the provided Patterns...
    -Noel

Maybe you are looking for

  • Can't import movies to iTunes after setting up iTunes Match

    Hi.  I setup iTunes Match a couple of weeks ago (love it, btw), but for some reason since I set it up I can no longer import .m4v files into the Movies library. There is no error, they just never copy over. iTunes 10.6.1(7) 64-bit on MacPro running O

  • Can't drag media into project

    Hello, It seems I hit a key that suddenly prevents me from being able to drag media into premier pro, but for the life of me I can't seem to figure out what key it was I pressed or any options to allow me to again drag media into Premier.  I can stil

  • Conversion Issue

    Hello, I have a query about currency conversion. we have our company in different countries. so i want to show the amount in dollars but they are coming from different countries and stored in different currencies too. Do I need to store those currenc

  • Extending an existing form

    Hi there, for my introduction I have a lousy question: How do I extend an existing form in SBO ? (vice versa, how can I hide formelements in an existing form) I know, I have to capture an event, but which. Do you have sample code ? Perhaps C#-Code gr

  • SWISS keyboard in the USA stores?

    Is it possible to buy in the US stores (online or in NYC) a mac book air 13" 256gb with a SWISS - FR keyboard?