Layout help

hey
im have a serious problem with the layout manager.
i started programing using the netbeans ide's null layout manager, and only now i found it that when changing the resolution it messes up eevrything.
i tried using diffrent layouts, but nothing works (accept the border layout), not mentioning that it doesnt even work...
i guess that you figured by now that im new to java and only learning
anyway, my question is, can i make it "resolution-independent" without using the layout manager?
thanks a lot in advance
p.s. how can i make make the window maximized when it openes? (not to just make it on all the screen, but to have the property maximized)

You should try to avoid null layouts alltogether since that approach is not working well as you learned by yourself.
There are many Layout managers available in the sdk and you almost can create anything you can imagine. The tutorials show you how do. If you are looking for a somewhat different approach check out Forms from http://www.jgoodies.com/

Similar Messages

  • Creating a purchase order form that has a flowable layout" Help Tutorial

    Regarding the "Creating a purchase order form that has a flowable layout" Help Tutorial,  I can't seem to get the data to pull in for just the PO in question, is there a secret?
    Ideally, it should create one form for each PO with the detail lines for each PO on the individual forms.  Can we do this?
    Many thanks!

    Hi
    If the smartform purchase order is not available in your system
    means you can download the form IDES and you can upload the form in ur ecc 6.0 system.we faced a similar kind of problem in our system and we did as i said.
    Once you uploaded the things you can easily view the form interface and rest of the things related to smartforms.
    Thanks and Regards
    Arun Joseph

  • Drawing and some layout help for a simple control: thin lines and application start

    I am trying to create a new, simple control. The control should act as a grouping marker much like that found in the Mathematica notebook interface. It is designed to sit to the right of a node and draw a simple bracket. The look of the bracket changes depending on whether the node is logically marked open or closed.
    After looking at some blogs and searching, I tried setting the snapToPixels to true in the container holding the marker control as well as the strokewidth but I am still finding that the bracket line is too thick. I am trying to draw a thin line. Also, I am unable to get the layout to work when the test application is first opened. One of the outer brackets is cut-off. I hardcoded some numbers into the skin just to get something to work.
    Is there a better way to implement this control?
    How can I get the fine line drawn as well as the layout correct at application start?
    package org.notebook;
    import javafx.beans.property.BooleanProperty;
    import javafx.beans.property.IntegerProperty;
    import javafx.beans.property.SimpleBooleanProperty;
    import javafx.beans.property.SimpleIntegerProperty;
    import javafx.scene.control.Control;
    * Provide a simple and thin bracket that changes
    * it appearance based on whether its closed or open.
    public class GroupingMarker extends Control {
      private final static String DEFAULT_STYLE_CLASS = "grouping-marker";
      private BooleanProperty open;
      private IntegerProperty depth;
      public BooleanProperty openProperty() { return open; }
      public IntegerProperty depthProperty() { return depth; }
      public GroupingMarker(boolean open) {
      this();
      setOpen(open);
      public GroupingMarker() {
      open = new SimpleBooleanProperty(true);
      depth = new SimpleIntegerProperty(0);
      getStyleClass().add(DEFAULT_STYLE_CLASS);
      // TODO: Change to use CSS directly
      setSkin(new GroupingMarkerSkin(this));
      public boolean isOpen() {
      return open.get();
      public void setOpen(boolean flag) {
      open.set(flag);
      public int getDepth() {
      return depth.get();
      public void setDepth(int depth) {
      this.depth.set(depth);
    package org.notebook;
    import javafx.scene.Group;
    import javafx.scene.paint.Color;
    import javafx.scene.shape.FillRule;
    import javafx.scene.shape.LineTo;
    import javafx.scene.shape.MoveTo;
    import javafx.scene.shape.Path;
    import com.sun.javafx.scene.control.skin.SkinBase;
    * The skin draws some simple lines on the right hand side of
    * the control. The lines reflect whether the control is considered
    * open or closed. Since there is no content, there is no
    * content handling code needed.
    public class GroupingMarkerSkin extends SkinBase<GroupingMarker, GroupingMarkerBehavior> {
      GroupingMarker control;
      Color lineColor;
      double shelfLength;
      double thickness;
      private Group lines;
      public GroupingMarkerSkin(GroupingMarker control) {
      super(control, new GroupingMarkerBehavior(control));
      this.control = control;
      lineColor = Color.BLUE;
      shelfLength = 5.0;
      thickness = 1.0;
      init();
      * Attached listeners to the properties in the control.
      protected void init() {
      registerChangeListener(control.openProperty(), "OPEN");
      registerChangeListener(control.depthProperty(), "DEPTH");
      lines = new Group();
      repaint();
      @Override
      protected void handleControlPropertyChanged(String arg0) {
      super.handleControlPropertyChanged(arg0);
        @Override public final GroupingMarker getSkinnable() {
            return control;
        @Override public final void dispose() {
        super.dispose();
            control = null;
        @Override
        protected double computePrefHeight(double arg0) {
        System.out.println("ph: " + arg0);
        return super.computePrefHeight(arg0);
        @Override
        protected double computePrefWidth(double arg0) {
        System.out.println("pw: " + arg0);
        return super.computePrefWidth(40.0);
         * Call this if a property changes that affects the visible
         * control.
        public void repaint() {
        requestLayout();
        @Override
        protected void layoutChildren() {
        if(control.getScene() != null) {
        drawLines();
        getChildren().setAll(lines);
        super.layoutChildren();
        protected void drawLines() {
        lines.getChildren().clear();
        System.out.println("bounds local: " + control.getBoundsInLocal());
        System.out.println("bounds parent: " + control.getBoundsInParent());
        System.out.println("bounds layout: " + control.getLayoutBounds());
        System.out.println("pref wxh: " + control.getPrefWidth() + "x" + control.getPrefHeight());
        double width = Math.max(0, 20.0 - 2 * 2.0);
        double height = control.getPrefHeight() - 4.0;
        height = Math.max(0, control.getBoundsInLocal().getHeight()-4.0);
        System.out.println("w: " + width + ", h: " + height);
        double margin = 4.0;
        final Path VERTICAL = new Path();
        VERTICAL.setFillRule(FillRule.EVEN_ODD);
        VERTICAL.getElements().add(new MoveTo(margin, margin)); // start
        VERTICAL.getElements().add(new LineTo(margin + shelfLength, margin)); // top horz line
        VERTICAL.getElements().add(new LineTo(margin + shelfLength, height - margin)); // vert line
        if(control.isOpen()) {
        VERTICAL.getElements().add(new LineTo(margin, height - margin)); // bottom horz line
        } else {
        VERTICAL.getElements().add(new LineTo(margin, height-margin-4.0));
        //VERTICAL.getElements().add(new ClosePath());
        VERTICAL.setStrokeWidth(thickness);
        VERTICAL.setStroke(lineColor);
        lines.getChildren().addAll(VERTICAL);
        lines.setCache(true);
    package org.notebook;
    import com.sun.javafx.scene.control.behavior.BehaviorBase;
    public class GroupingMarkerBehavior extends BehaviorBase<GroupingMarker> {
      public GroupingMarkerBehavior(final GroupingMarker control) {
      super(control);
    package org.notebook;
    import javafx.application.Application;
    import javafx.scene.Node;
    import javafx.scene.Scene;
    import javafx.scene.control.Label;
    import javafx.scene.control.TextArea;
    import javafx.scene.layout.BorderPane;
    import javafx.scene.layout.VBox;
    import javafx.stage.Stage;
    public class TestGroupingMarker extends Application {
      public static void main(String args[]) {
      launch(TestGroupingMarker.class, args);
      @Override
      public void start(Stage stage) throws Exception {
      VBox vbox = new VBox();
      BorderPane p = new BorderPane();
      VBox first = new VBox();
      first.getChildren().add(makeEntry("In[1]=", "my label", 200.0, true));
      first.getChildren().add(makeEntry("Out[1]=", "the output!", 200.0, true));
      p.setCenter(first);
      p.setRight(new GroupingMarker(true));
      vbox.getChildren().add(p);
      vbox.getChildren().add(makeEntry("In[2]=", "my label 2", 100.0, false));
      Scene scene = new Scene(vbox,500,700);
      scene.getStylesheets().add(TestGroupingMarker.class.getResource("main.css").toExternalForm());
      stage.setScene(scene);
      stage.setTitle("GroupingMarker test");
      stage.show();
      protected Node makeEntry(String io, String text, double height, boolean open) {
      BorderPane pane2 = new BorderPane();
      pane2.setSnapToPixel(true);
      Label label2 = new Label(io);
      label2.getStyleClass().add("io-label");
      pane2.setLeft(label2);
      TextArea area2 = new TextArea(text);
      area2.getStyleClass().add("io-content");
      area2.setPrefHeight(height);
      pane2.setCenter(area2);
      GroupingMarker marker2 = new GroupingMarker();
      marker2.setOpen(open);
      pane2.setRight(marker2);
      return pane2;

    The test interfaces are already defined for you - the 3rd party session bean remote/local interfaces.
    It is pretty trivial to create implementations of those interfaces to return the test data from your XML files.
    There are a number of ways to handle the switching, if you have used the service locator pattern, then I would personally slot the logic in to the service locator, to either look up the 3rd party bean or return a POJO test implementation of the interface according to configuration.
    Without the service locator, you are forced to do a little more work, you will have to implement your own test session beans to the same interfaces as the 3rd party session beans.
    You can then either deploy them instead of the 3rd party beans or you can deploy both the test and the 3rd party beans under different JNDI names,and use ejb-ref tags and allow you to switch between test and real versions by changing the ejb-link value.
    Hope this helps.
    Bob B.

  • Newbie Layout Help Needed

    I am normally an After Effects and Premiere Pro user but have been forced to volunteer for help on a Dreamweaver project. 
    The site is built on the template: HTML, 1 column fixed, centered, header and footer.  I want to be able to insert a photo the width of the main column, 960 px I think.  Then, under that photo, I want to insert 4 photos with different widths, between 150 and 200 pixels wide.  I will need to update this from time to time and the quantity and sizes of the photos will be different each time.  If "Draw AP Div" worked like I expected it to, it would be simple: draw boxes and insert images.  However, as you know, it's not going to be that easy.  I have read the formatting101 page and searched the forum but I guess I don't know enough to know what to search for.
    Is there a way to place images in the way I want to?  Do I need a plug-in?   I need to where to start. 

    You don't need APDivs for this.  If you want the secondary images to be evenly spaced on the page, use CSS floats & margins.
    http://alt-web.com/DEMOS/3-CSS-boxes.shtml
    If you don't need them evenly spaced, simply insert optimized images into your layout.  Be sure to resize images beforehand in your graphics editor so that their combined widths will fit inside the layout.
    <p style="text-align"center">
    <img src="top-image.jpg" width="xx" height="xx" alt="description">
    </p>
    <p style="text-align:center">
    <img src="image1.jpg" width="xx" height="xx" alt="description">  
    <img src="image2.jpg" width="xx" height="xx" alt="description">  
    <img src="image3.jpg" width="xx" height="xx" alt="description">  
    <img src="image4.jpg" width="xx" height="xx" alt="description">
    </p>
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/

  • Report Layout Help

    Version 2.0
    I have a report that I'm having difficulities in getting a layout for. This report is a sales analysis that can be fiscal or calendar year. The look I'm after is:
    Account  Nov-05    Dec-05    Jan-06    Feb-06    Mar-06    Apr-06    May-06    Jun-06    Jul-06    Aug-06    2006 Total    2005 Total    Difference    Percent Inc/Dec
    Acct1    $9999.99  $9999.99  $9999.99  $9999.99  $9999.99  $9999.99  $9999.99  $9999.99  $9999.99  $9999.99  $99999.99     $99999.99     $9999.99      99.9Any help is greatly appreciated.
    Thanks,
    Joe

    John,
    1. Well, he is an extreme "joy" to work with. I'll admit that. Been in the managers office a few times.
    2. In the mark up that I provided above, August was the month that was selected from the "Select Month" drop down list. Since the "Calendar" checkbox was not selected, that meant that they wanted the beginning of the current fiscal year, Nov-05, to the selected month, in that example, Aug-06.
    I am taking care of the beginning and ending dates through date math. If you like I can provide that code too.
    I hope that was clear.
    Thanks,
    Joe

  • Simple css layout help

    Hey I know this is a piece of cake for you guys so help me
    out. I've got a simple layout going and set up at
    http://www.clark-imaging.com/ciiicomp/index.html
    and need your help. What is causing the weird white bands behind
    header and maincontent and footer and maincontent? There are no
    margin values assigned to the top and bottom of the header and
    footer, and a value of 0 won't make them go away. Also, how can I
    fix the footer div to the bottom of the window, so the main content
    area stretches with the window?
    Here's an
    image of the look I'm going for.
    Your responses are greatly appreciated.

    This will do what you want. View source code to see how it's
    built.
    http://alt-web.com/CSS2-1-column-fixed-width-centered.html
    Nancy O.
    Alt-Web Design & Publishing
    www.alt-web.com

  • Flow layout help please

    I am trying to position 3 buttons with 3 text fields underneath. I am using flowlayout but it puts it all on one line. I have tried grid layout too but this doesn't help.
    Is there anything I can do to split the buttons and text fields onto 2 separate lines?
    thanks

    I have tried grid layout too but this
    doesn't help.Yeah? hmm... it should work:
    setLayout(new GridLayout(2,3));
    getContentPane.add(button1);
    getContentPane.add(button2);
    getContentPane.add(button3);
    getContentPane.add(text1);
    getContentPane.add(text2);
    getContentPane.add(text3);

  • Box layout help

    i know how to use a box layout on panels but i am having a problem applying box layout on jframe,
    what i do basicaly is extends jframe first and then in the constructor i put setLayout(new BoxLayout(this,BoxLayout.X_AXIS));
    it gives an error that box layout cant be shared...this method works with all other layouts...
    please help me and please dont tell me to go read the sun online tutorials...

    To speak truely. All the j2se default layout manager will be replaced by the default layoutmanager in NetBeans ---group layout manager.
    I suggest you download a NetBeans IDE and start working with the new layout manager.

  • Scrolling, and Adaptive Layout help

    Hi guys, I am new to edge animate,
    I would like to know, like when a person scrolls its scrolls to a cirtain point seemlessly, not like when you are using a mouse, like blobk by block.
    also I would like to know more about adaptive layout, if anyone can help me more thorught skype,
    I would me really pleased, thank you
    my skype is Kevin2019170
    Thank you

    Well, only can help you with the background image...  put this code on document.compositionReady and window.resize events:
    var imageRatio = 1.7777; // Aspect 16:9, you can use any proportion depends of your image dimensions
    var sWidth = $(window).width()
    var sHeight = $(window).height()
    if ((sWidth / sHeight) > imageRatio) {
      sym.$("imgBackground").css("width", sWidth +"px");
      sym.$("imgBackground").css("height", sWidth/imageRatio +"px");
    else {
      sym.$("imgBackground").css("width", sHeight*imageRatio +"px");
      sym.$("imgBackground").css("height", sHeight +"px");

  • Dreamweaver CS5.5 Fluid Grid Layout Help!!!

    Needing help with What a fluid grid layout is, I hear that itll help my webpage be responsive and it will adjust for screen sizes depending on if your on a computer, phone or tablet. Can anyone link me to an Adobe TV tutorial for CS5.5? All I found was CC stuff and upgraded versions.

    Sorry but FluidGrids are not part of CS5 or CS5.5.  They didn't come on the scene until CS6 (12) & CC (13).
    If you're still interested in building responsive web sites without upgrading software, read this first:
    Introduction to CSS Media Queries
    http://www.adobe.com/devnet/dreamweaver/articles/introducing-media-queries.html
    To jump start your responsive web project, you can use one of the freely available Responsive Frameworks below:  Some people feel these are actually better than FluidGrid Layouts.
    Foundation Zurb
    http://foundation.zurb.com/templates.php
    Skeleton Boilerplate
    http://www.getskeleton.com/
    Initializr (HTML5 Boilerplate, Responsive or Bootstrap)
    http://www.initializr.com/
    DMX Zone's Bootstrap * free extension for DW *
    http://www.dmxzone.com/go/21759/dmxzone-bootstrap/
    Nancy O.

  • Need Planning Layout help...,?

    Hi all,
    In planning layout what is the procedure to make proper settings. and also what is the conditions in there. can anyone explain it plz. if any doc's having any one on this, plz. send it [email protected] waiting for yours valuable reply.
    Thanks in advance.
    Regards,
    Kiran.

    Hi Kiran,
    here are the conditions / settings that determines the planning layout definition / design.
    http://help.sap.com/saphelp_sem40bw/helpdata/en/d6/b13ed98b8211d3b7360000e82debc6/content.htm
    for more, go here
    http://help.sap.com/saphelp_sem320bw/helpdata/en/09/078a4b016311d393850000e8a597a0/content.htm
    hope it helps

  • Adjustments needed in Event detail/list layout, help!

    Hi there,
    I could really need your help on this:
    I'd like to make these changes to the event module template:
    - be able to hide the booking form for certain events
    - make sure the event list layout only shows the upcoming events for the selected month. And not ALL upcoming events (otherwise this list is way too long).
    - add a specific field for 1. time, 2. location and 3.costs in the event detail layout (just as the 'date' is setup).
    Can anyone tell me if this is possible? And if so, how I can do this or who can do this for me? (I'm a beginner in ABC...).
    Thank you very much!!
    Kind regards,
    Yfke

    Hi Liam,
    Thank you very much for your reply! I have absolutely no skills in Javascript, especially when it it so much work.
    Is there an easy way to at least make sure you can choose to hide the booking form per event? Because there are certain events that need to be booked elsewhere.
    Hope that is fairly easy, then I can ask my developer.
    Or would it even be smarter, and maybe even easier, to build an event feature like this module in e.g. web apps?
    Thnx!

  • Dreamweaver CC layout help please (using floats)

    Hi All,
    I'd appreciate any help with this problem creating my ideal Dreamweaver CC layout!
    Please see the screen shot below. Everything is perfect except I can't get the div labeled "div-right" at the bottom to sit on the right just like the one that sits on the left of middle divs that I have already aligned nicely.
    I have my coding the way I understand most, so I can attach that in another post if needed.
    Thanks!!!!

    sorry Nancy, work is very busy!
    For now, here is my code
    I hope its of some use at least for now..
    Thanks!
    <!doctype html> 
    <html> 
    <head> 
    <meta charset="utf-8"> 
    <title>HTML5 2-Col Layout</title> 
    <meta name="viewport" content="width=device-width, initial-scale=1"> 
    <!--[if IE]> 
    <meta http-equiv="X-UA-Compatible" content="IE=edge"> 
    <![endif]--> 
    <!--[if lt IE 9]> 
    <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> 
    <![endif]--> 
    <style> 
    /**CSS Reset**/ 
        padding: 0; 
    /**fixes the CSS box model in responsive layouts**/ 
        -webkit-box-sizing: border-box; 
        -moz-box-sizing: border-box; 
        box-sizing: border-box; 
    img { 
        max-width: 100%; 
        vertical-align: baseline; 
    body { 
        padding: 0; 
        width: 90%; /**adjust width in px or % as required**/ 
        margin: 0 auto; /**this is centered**/ 
        background: #F5DD83; 
        color: #505050; 
        font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif; 
        font-size: 100%; 
        box-shadow: 2px 2px 4px #333; 
    header { 
        margin: 0; 
        padding: 0 1%; 
        width: 100%; 
        background: #B00202; 
        color: #FFF; 
    header h1, header h2 { 
        display: inline; 
        color: #F5DD83; 
        padding: 0 1%; 
    /**top menu**/ 
    nav { 
        background: #69C; 
        font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif; 
        font-size: 14px; 
        font-weight: bold 
    nav ul { 
        margin: 0; 
        padding: 0; 
    nav li { 
        list-style: none; 
        display: inline-block; 
        margin: 0 3% 0 5%; 
    /**menu link styles**/ 
    nav li a { 
        color: #FFF; 
        text-decoration: none; 
        line-height: 2.5em; 
        padding: 6px; 
        border: 1px solid #CCC; 
    /**on select or mouseover**/ 
    nav li a:hover, nav li a:active, nav li a:focus { 
        background: #CCC; 
        color: #505050; 
    #wrapper { 
        background: #DDD; 
        overflow: hidden; /**float contaiment**/ 
    /**left sidebar**/ 
    aside { 
        padding: 0 2%; 
        float: left; 
        width: 30%; 
    /**main content**/ 
    article { 
        padding: 0 2%; 
        background: #FFF; 
        float: left; 
        width: 70%; 
    figure {  
    width: 80%;  
    margin: 4% auto 4% auto;  
    text-align:center; 
    figcaption { 
        text-align: center; 
        font-style: oblique; 
        font-size: small; 
        color: #2294AE; 
    footer { 
        clear: both; 
        background: #B00202; 
        color: #FFF; 
        text-align: center; 
        margin: 0; 
    /**text styles**/ 
    h3 { 
        color: #2294AE; 
        margin-bottom: 0 
    p { margin: 0 0 1em 0 } 
    #left-div {
      background-color: #D3D3D3;
      height: 100px;
      width: 650px;
    </style> 
    <link rel="stylesheet" href="ajxmenu3.css" type="text/css">
    <link rel="stylesheet" href="ajxmenu4.css" type="text/css">
    <link rel="stylesheet" href="ajxmenu6.css" type="text/css">
    </head> 
    <body> 
    <!--begin header--> 
    <header> <h1>Hassengate Pharmacy</h1> 
    </header> 
    <!--begin navigation--> 
    <nav> 
    <ul> 
    <div class="AJXCSSMenuUGYETAC"><!-- AJXFILE:ajxmenu4.css -->
    <div class="ajxmw">
      <div class="ajxmw2">
    <div class="ajxtbg">
    <ul>
    <li class="tfirst"><a href="#">Home</a></li>
    <li class="tsub"><a class="ajxsub" href="www.google.com">Pharmacy</a>
      <ul>
       <li class="sfirst slast"><a href="#">News</a></li>
      </ul>
    </li>
    <li class="tsub"><a class="ajxsub" href="#">Shop</a>
      <ul>
       <li class="sfirst slast"><a href="#">Offers</a></li>
      </ul>
    </li>
    <li class="tsub"><a class="ajxsub" href="#">NHS Services</a>
      <ul>
       <li class="sfirst"><a href="#">MUR</a></li>
       <li class="slast"><a href="#">NMS</a></li>
      </ul>
    </li>
    <li class="tsub"><a class="ajxsub" href="#">Blah</a>
      <ul>
       <li class="sfirst slast"><a href="#">1</a></li>
      </ul>
    </li>
    <li class="tsub"><a class="ajxsub" href="#">Blah</a>
      <ul>
       <li class="sfirst slast"><a href="#">2</a></li>
      </ul>
    </li>
    <li class="tsub"><a class="ajxsub" href="#">Blah</a>
      <ul>
       <li class="sfirst slast"><a href="#">3</a></li>
      </ul>
    </li>
    <li class="tlast tsub"><a class="ajxsub" href="#">Blah</a>
      <ul>
       <li class="sfirst slast"><a href="#">4</a></li>
      </ul>
    </li>
    <li class="tlast tsub"></li>
    </ul>
    </div>
      </div>
    </div>
    <br >
    </div>
    </ul> 
    </nav> 
    <div id="wrapper">  
    <!--begin left sidebar--> 
    <aside>
      <p align="center"> 
      <p align="center">Conditions
      <div class="AJXCSSMenuWOENVAC">
        <div align="left">
          <!-- AJXFILE:ajxmenu6.css -->
        </div>
        <div class="ajxmw">
          <div class="ajxmw2">
            <div class="ajxtbg">
              <div align="left">
                <ul>
                  <li class="tfirst tsub"><a class="ajxsub" href="#">Condition 1</a>
                    <ul>
                      <li class="sfirst slast"><a class="ajxsub" href="#">1-1</a>
                        <ul>
                          <li class="sfirst slast"><a href="#">1-1-1</a></li>
                        </ul>
                      </li>
                    </ul>
                  </li>
                  <li class="tsub"><a class="ajxsub" href="#">Condition 2</a>
                    <ul>
                      <li class="sfirst slast"><a class="ajxsub" href="#">2-2</a>
                        <ul>
                          <li class="sfirst slast"><a href="#">2-2-2</a></li>
                        </ul>
                      </li>
                    </ul>
                  </li>
                  <li class="tlast tsub"><a class="ajxsub" href="#">Condition 3</a>
                    <ul>
                      <li class="sfirst slast"><a class="ajxsub" href="#">3-3</a>
                        <ul>
                          <li class="sfirst slast"><a href="#">3-3-3</a></li>
                        </ul>
                      </li>
                    </ul>
                  </li>
                </ul>
              </div>
              </div>
            </div>
        </div>
        <div align="left"><br >
        </div>
      </div> </p>
      <p> </p>
      </p> 
    </aside> 
    <!--begin main content--> 
    <article> <h3>Article</h3> 
    <p> </p> 
    <figure></figure>
    <figure>
      <figcaption></figcaption> 
    </figure> 
    </article> 
    <!--end wrapper--></div> 
    <!--begin footer--> 
    <footer>  
    <small>© Hassengate Pharmacy 2014 All rights reserved</small>  
    </footer> 
    </body> 
    </html> 

  • Programme layout help

    Hi,
    I've been asked to help with the layout and design of a soccer team's match programme. TBH, I've not done anything like this before but I'm up for the challenge.
    Naturally, at first, I thought Pages would do the job for me but I now wonder if it can. So far, all I've got of the original programme is a scanned PDF version. I don't think I can edit that can I? They then sent me a .doc version but as far as I can see, it's still just a scan of the original pages. So, at the moment, I don't have any files that I can edit (not with my current skills anyway).
    I may therefore need to create the programme from scratch which may be a lot of work to start with but after that it's just content. Is Pages up to this or can you recommend any other software? Can you do that here? I've had a look at Swift Publisher by BeLight software which looks very nice.
    One more question; the programme is printed on A4 sized paper, with each sheet containing 4 pages, 2 on each side (in A5 size I think?). So, the first sheet has page 1 next to the back page, and on the reverse side it has page 2 and the penultimate page. How do I achieve that kind of layout? Would I construct each page in full size A4, then....well, I just don't know.
    Any help much appreciated.
    Thanks
    Lee

    iLee wrote:
    Naturally, at first, I thought Pages would do the job for me but I now wonder if it can. So far, all I've got of the original programme is a scanned PDF version. I don't think I can edit that can I? They then sent me a .doc version but as far as I can see, it's still just a scan of the original pages. So, at the moment, I don't have any files that I can edit (not with my current skills anyway).
    You may insert the PDF in a Pages Document then create floating text blocks for every text item.
    One more question; the programme is printed on A4 sized paper, with each sheet containing 4 pages, 2 on each side (in A5 size I think?). So, the first sheet has page 1 next to the back page, and on the reverse side it has page 2 and the penultimate page. How do I achieve that kind of layout? Would I construct each page in full size A4, then....well, I just don't know.
    This question was asked and responded several times.
    Print as PDF then use Cocoa Booklet to organize the pages as required.
    +-+-+-+-+-+-+-+-+
    +4. Discussions+
    +Apple Discussions, launched in August, 2000, have grown rapidly in usage and features. The main features include personalization, subscription capabilities and email capabilities. _For information on how to use Discussions, please visit the Discussions Help Page_. Cookies should be enabled and an Apple ID account is required if you would like to contribute to the discussions.+
    +Entering the Help and Terms of Use area you will read:+
    +*What is Apple Discussions and how can it help me?*+
    +
    Apple Discussions is a user-to-user support forum where experts and other Apple product users get together to discuss Apple products. … You can participate in discussions about various products and topics, find solutions to help you resolve issues, ask questions, get tips and advice, and more.+
    +_If you have a technical question about an Apple product, be sure to check out Apple's support resources first by consulting the application Help menu on your computer and visiting our Support site to view articles and more on our product support pages._+
    +*I have a question or issue*—+
    +how do I search for answers? _
    It's possible that your question or issue has already been answered by other members so do a search before posting a question._ On most Apple Discussions pages, you'll find a Search Discussions box in the upper right corner. Enter a search term (or terms) in the field and press Return. Your results will appear as a list of links to posts below the Search Discussions Content pane.+
    +Search tips are available here:+
    +http://discussions.apple.com/help/search-tips.html+
    +-+-+-+-+-+-+-+-+
    Yvan KOENIG (from FRANCE vendredi 1 aoqt 2008 10:34:45)

  • Splitter, Facet stretching in run time, layout help

    Hi, Im using jdeveloper 11g. I've got vertical panel splitter which divides my page into two facets, all in a panelStretchLayout. I put a table in a panel collection in the first facet where there is a panel layout (scroll) in it and a form in the second facet.
    like this...
    <f:facet name="first">
    <af:panelGroupLayout binding="#{backingBeanScope.backing_name.pgl1}"
    id="pgl1" layout="scroll"
    partialTriggers="ps1">
    <af:panelCollection binding="#{backingBeanScope.backing_name.pc1}"
    id="pc1"
    inlineStyle="width:inherit; height:436px;">
    <af:table inlineStyle="width:inherit; height:inherit; id = "t1">
    </af:table>
    </af:panelCollection>
    </af:panelGroupLayout>
    </f:facet>
    Now here's what they want to happen. When I adjust the screen split in run time, the table (the panel collection, of course) will adjust too depending on the splitter. Like it will fill up the whole first facet.
    Can anyone help me on this? Any help and idea would be greatly appreciated. Thanks!

    First remove the panelGroupLayout ( thouh it is set to scroll and should not be a problem ).
    also remove the inline style of the panelCollection and see if it stretches as you want. Then you can add the panelgroup again.
    You can also replace the panelCollection with a panelBox just to see that everything streteches as it is expected.

  • JPanel and Layout help

    Hi all.
    I need some help with JPanel. I am trying to attach diffrent components using different Layout managers but when I try to attach two different gridLayout Panels it ignores the first one and only shows the last one attached. I am not sure why. I using a different form of GridLayout because I want to show check boxes and radioButtons. I am trying to get a certain look.
    Any help would be appreciated. Thanks for your help and time in advance.
    // FileName: WindowsClass.java
    import javax.swing.*;
    import java.awt.*;
    import java.util.*;
    public class WindowsClass extends JFrame
         //initialize combo radio button vars
         private JPanel selectPanel1;
         private JTextField enterName;
         private JLabel nameLabel;
         private JPanel selectPanel2;
         private JLabel processorLabel;
         private JComboBox processorCB;
         private String pCB[] = { "Pentium 4", "Celeron", "AMD", "Intel Centrino"};
         private JLabel hardDiskLabel;
         private JComboBox hardDiskCB;
         private String hdCB[] = { "30 GB", "40 GB", "60 GB" };
         private JLabel pSpeedLabel;
         private JComboBox pSpeedCB;
         private String psCB[] = { "1.8 GHz", "2.2 GHz", "2.8 GHz" };
         private JPanel selectPanel3;
         private JRadioButton ramRB256;
         private JRadioButton ramRB512;
         private JCheckBox addAccessory;
         // constructor          
         public WindowsClass()
              super( "Computer Configuration Window" );
              selectPanel1 = new JPanel();
              selectPanel1.setLayout( new FlowLayout() );
              nameLabel = new JLabel( "Please enter your name: " );
              enterName = new JTextField(10);     
              selectPanel1.add( nameLabel );
              selectPanel1.add( enterName );
              add( selectPanel1, BorderLayout.NORTH );
              selectPanel2 = new JPanel();
              selectPanel2.setLayout( new GridLayout( 3, 2, 5, 5 ) );
              processorLabel = new JLabel( " Processor" );
              // setup Processor JComboBox and display 4 rows
              processorCB = new JComboBox( pCB );
              processorCB.setMaximumRowCount( 4 );
              selectPanel2.add( processorLabel );
              selectPanel2.add( processorCB );
              hardDiskLabel = new JLabel( " Hard Disk" );
              // setup Hard Disk JComboBox and display 3 rows
              hardDiskCB = new JComboBox( hdCB );
              hardDiskCB.setMaximumRowCount( 4 );
              selectPanel2.add( hardDiskLabel );
              selectPanel2.add( hardDiskCB );
              // setup Processor Speed JComboBox and display 3 rows
              pSpeedCB = new JComboBox( psCB );
              pSpeedCB.setMaximumRowCount( 3 );
              pSpeedLabel = new JLabel( " Processor Speed " );
              selectPanel2.add( pSpeedLabel );
              selectPanel2.add( pSpeedCB );          
              selectPanel3 = new JPanel();
              selectPanel3.setLayout( new FlowLayout() );
              // setup RAM RadioButtons
              ramRB256 = new JRadioButton( "256 MB", false );
              ramRB512 = new JRadioButton( "512 MB", false );
              selectPanel3.add( ramRB256 );     
                 selectPanel3.add( ramRB512 );
         //This is where the prob is. the last added panel shows up ignoring the previously added panel
              //add( selectPanel3 );
              add( selectPanel2 );
              add( selectPanel3 );
         } // end of contructor WindowsClass()
    } // end of WindowsClass
    // FileName: WindowsClassMain.java
    // Compile: javac WindowsClassMain.java WindowsClass.java
    import javax.swing.JFrame;
    public class WindowsClassMain extends JFrame
         public static void main( String args[] )
              WindowsClass window = new WindowsClass();
              window.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
              window.setSize( 450, 250 );
              window.setVisible( true );
         } //end of main()
    } // end of WindowsClassMain class

    Thanks a lot. It did work but now I am running into another problem.
    I am trying to attach more stuff to my selectPanel3 but it just adds stuff right after another and runs out the window. I want Additional Accessories checkBoxes to go on the next page but it shows right next to the RAM radioButtons.
    Please help.
    Thanks a bunch for your time.
    // FileName: WindowsClass.java
    import javax.swing.*;
    import java.awt.*;
    import java.util.*;
    public class WindowsClass extends JFrame
         //initialize combo radio button vars
         private JPanel selectPanel1;
         private JTextField enterName;
         private JLabel nameLabel;
         private JPanel selectPanel2;
         private JLabel processorLabel;
         private JComboBox processorCB;
         private String pCB[] = { "Pentium 4", "Celeron", "AMD", "Intel Centrino"};
         private JLabel hardDiskLabel;
         private JComboBox hardDiskCB;
         private String hdCB[] = { "30 GB", "40 GB", "60 GB" };
         private JLabel pSpeedLabel;
         private JComboBox pSpeedCB;
         private String psCB[] = { "1.8 GHz", "2.2 GHz", "2.8 GHz" };
         private JPanel selectPanel3;
         private JLabel ramLabel;
         private JRadioButton ramRB256;
         private JRadioButton ramRB512;
         private JLabel addAccessory;
         private JCheckBox inkJetPrinter;
         private JCheckBox iWLAN;
         // constructor          
         public WindowsClass()
              super( "Computer Configuration Window" );
              selectPanel1 = new JPanel();
              selectPanel1.setLayout( new FlowLayout() );
              nameLabel = new JLabel( "Please enter your name: " );
              enterName = new JTextField(10);     
              selectPanel1.add( nameLabel );
              selectPanel1.add( enterName );
              add( selectPanel1, BorderLayout.NORTH );
              selectPanel2 = new JPanel();
              selectPanel2.setLayout( new GridLayout( 3, 2, 5, 5 ) );
              processorLabel = new JLabel( " Processor" );
              // setup Processor JComboBox and display 4 rows
              processorCB = new JComboBox( pCB );
              processorCB.setMaximumRowCount( 4 );
              selectPanel2.add( processorLabel );
              selectPanel2.add( processorCB );
              hardDiskLabel = new JLabel( " Hard Disk" );
              // setup Hard Disk JComboBox and display 3 rows
              hardDiskCB = new JComboBox( hdCB );
              hardDiskCB.setMaximumRowCount( 4 );
              selectPanel2.add( hardDiskLabel );
              selectPanel2.add( hardDiskCB );
              // setup Processor Speed JComboBox and display 3 rows
              pSpeedCB = new JComboBox( psCB );
              pSpeedCB.setMaximumRowCount( 3 );
              pSpeedLabel = new JLabel( " Processor Speed " );
              selectPanel2.add( pSpeedLabel );
              selectPanel2.add( pSpeedCB );          
              selectPanel3 = new JPanel();
              selectPanel3.setLayout( new FlowLayout() );
              // setup RAM RadioButtons
              ramLabel = new JLabel( " RAM " );
              ramRB256 = new JRadioButton( "256 MB", false );
              ramRB512 = new JRadioButton( "512 MB", false );
              selectPanel3.add( ramLabel );
              selectPanel3.add( ramRB256 );     
                 selectPanel3.add( ramRB512 );
              addAccessory = new JLabel( "Additional Accessories" );
              inkJetPrinter = new JCheckBox( "Ink Jet Printer" );
              iWLAN = new JCheckBox( "Inbuilt Wireless LAN" );
              selectPanel3.add( addAccessory );
              selectPanel3.add( inkJetPrinter );
              selectPanel3.add( iWLAN );
              //add( selectPanel3 );
              //add( selectPanel2 );
              //add( selectPanel3 );
              getContentPane().add( selectPanel2,BorderLayout.WEST);
              getContentPane().add( selectPanel3,BorderLayout.EAST);
         } // end of contructor WindowsClass()
    } // end of WindowsClass

Maybe you are looking for

  • Lifecam 3000 - Can't use Dashboard

    Does anyone know if the Dashboard on my camera is compatible with Skype?  I thought it would be fun to use the different effects when I make a video call but I can't get them to work during a video chat.

  • Go from Premiere Pro cc to cs6?

    Hello.  I am currently using cs 5, but I may upgrade to cc soon, and a potential client would like to be able to finish videos in cs6.  Can a project created in cc be opened in cs6?

  • Third party mouse/keyboard combos

    first post here. i am going to buy a bluetooth mouse plus keyboard combo. i am quite interested in logitech mx5000 (http://www.logitech.com/index.cfm/products/details/US/EN,CRID=2158,CONTENTID=107 76&ad=hpb_mx5000) would this thing work with the inte

  • Sharing photos through iCloud as "Public Website"

    Is there a way to password protect photo albums that you have shared through iCloud as a "Public Website"? Is obscurity the only protection for the photos (i.e., that no one else knows the link to the album website)?

  • I really want to use Firefox 4.0 in Mongolian language(cyrillic). What should i do?

    i want to update my firefox but i'm still can't use my language , i'm using Firefox 3.5 version in my language now, ok that's it... if you help me how to add language i'll work on that .