Numbers toolbar size issue

Hi there, im new to macs, can someone please tell me how to increase the size of the toolbar at the top of the page (contains all the font adjustments)
Id rather not have to increase the size of the screen in the system preferences as i want a large screen its just this one bar is particularly small.
Any help would be appreciated
Regards,
Gary

All options except for the font are available in the Inspector which is far easier to read.
Menu bar > Format is an alternative as are other menu bar options, There are usually several ways to do the same thing with a Mac
User Guide is available under Numbers on the Menu Bar.
Quick keys help too. Note Many windows shortcuts work if you change the control key for the command key.
Change font size ~ command + or -
Left, Centre and Right alignment ~ command shift *{ | }*
Bold or italic ~ command b or i
Couple of sites to help you with your new Mac.
http://www.apple.com/support/switch101/
http://www.apple.com/support/mac101/work/
S.

Similar Messages

  • Paper Size issues with CreatePDF Desktop Printer

    Are there any known paper size issues with PDFs created using Acrobat.com's CreatePDF Desktop Printer?
    I've performed limited testing with a trial subscription, in preparation for a rollout to several clients.
    Standard paper size in this country is A4, not Letter.  The desktop printer was created manually on a Windows XP system following the instructions in document cpsid_86984.  MS Word was then used to print a Word document to the virtual printer.  Paper Size in Word's Page Setup was correctly set to A4.  However the resultant PDF file was Letter size, causing the top of each page to be truncated.
    I then looked at the Properties of the printer, and found that it was using an "HP Color LaserJet PS" driver (self-chosen by the printer install procedure).  Its Paper Size was also set to A4.  Word does override some printer driver settings, but in this case both the application and the printer were set to A4, so there should have been no issue.
    On a hunch, I then changed the CreatePDF printer driver to a Xerox Phaser, as suggested in the above Adobe document for other versions of Windows.  (Couldn't find the recommended "Xerox Phaser 6120 PS", so chose the 1235 PS model instead.)  After confirming that it too was set for A4, I repeated the test using the same Word document.  This time the result was fine.
    While I seem to have solved the issue on this occasion, I have not been able to do sufficient testing with a 5-PDF trial, and wish to avoid similar problems with the future live users, all of which use Word and A4 paper.  Any information or recommendations would be appreciated.  Also, is there any information available on the service's sensitivity to different printer drivers used with the CreatePDF's printer definition?  And can we assume that the alternative "Upload and Convert" procedure correctly selects output paper size from the settings of an uploaded document?
    PS - The newly-revised doc cpsid_86984 still seems to need further revising.  Vista and Windows 7 instructions have now been split.  I tried the new Vista instructions on a Vista SP2 PC and found that step 6 appears to be out of place - there was no provision to enter Adobe ID and password at this stage.  It appears that, as with XP and Win7, one must configure the printer after it is installed (and not just if changing the ID or password, as stated in the document).

    Thank you, Rebecca.
    The plot thickens a little, given that it was the same unaltered Word document that first created a letter-size PDF, but correctly created an A4-size PDF after the driver was changed from the HP Color Laser PS to a Xerox Phaser.  I thought that the answer may lie in your comment that "it'll get complicated if there is a particular driver selected in the process of manually installing the PDF desktop printer".  But that HP driver was not (consciously) selected - it became part of the printer definition when the manual install instructions were followed.
    However I haven't yet had a chance to try a different XP system, and given that you haven't been able to reproduce the issue (thank you for trying), I will assume for the time being that it might have been a spurious problem that won't recur.  I'll take your point about using the installer, though when the opportunity arises I might try to satisfy my cursed curiosity by experimenting further with the manual install.  If I come up with anything of interest, I'll post again.

  • Smartcardio ResponseAPDU buffer size issue?

    Greetings All,
    I’ve been using the javax.smartcardio API to interface with smart cards for around a year now but I’ve recently come across an issue that may be beyond me. My issue is that I whenever I’m trying to extract a large data object from a smart card, I get a “javax.smartcardio.CardException: Could not obtain response” error.
    The data object I’m trying to extract from the card is around 12KB. I have noticed that if I send a GETRESPONSE APDU after this error occurs I get the last 5 KB of the object but the first 7 KB are gone. I do know that the GETRESPONSE dialogue is supposed to be sent by Java in the background where the responses are concatenated before being sent as a ResponseAPDU.
    At the same time, I am able to extract this data object from the card whenever I use other APDU tools or APIs, where I have oversight of the GETRESPONSE APDU interactions.
    Is it possible that the ResponseAPDU runs into buffer size issues? Is there a known workaround for this? Or am I doing something wrong?
    Any help would be greatly appreciated! Here is some code that will demonstrate this behavior:
    * test program
    import java.io.*;
    import java.util.*;
    import javax.smartcardio.*;
    import java.lang.String;
    public class GetDataTest{
        public void GetDataTest(){}
        public static void main(String[] args){
            try{
                byte[] aid = {(byte)0xA0, 0x00, 0x00, 0x03, 0x08, 0x00, 0x00};
                byte[] biometricDataID1 = {(byte)0x5C, (byte)0x03, (byte)0x5F, (byte)0xC1, (byte)0x08};
                byte[] biometricDataID2 = {(byte)0x5C, (byte)0x03, (byte)0x5F, (byte)0xC1, (byte)0x03};
                //get the first terminal
                TerminalFactory factory = TerminalFactory.getDefault();
                List<CardTerminal> terminals = factory.terminals().list();
                CardTerminal terminal = terminals.get(0);
                //establish a connection with the card
                Card card = terminal.connect("*");
                CardChannel channel = card.getBasicChannel();
                //select the card app
                select(channel, aid);
                //verify pin
                verify(channel);
                 * trouble occurs here
                 * error occurs only when extracting a large data object (~12KB) from card.
                 * works fine when used on other data objects, e.g. works with biometricDataID2
                 * (data object ~1Kb) and not biometricDataID1 (data object ~12Kb in size)
                //send a "GetData" command
                System.out.println("GETDATA Command");
                ResponseAPDU response = channel.transmit(new CommandAPDU(0x00, 0xCB, 0x3F, 0xFF, biometricDataID1));
                System.out.println(response);
                card.disconnect(false);
                return;
            }catch(Exception e){
                System.out.println(e);
            }finally{
                card.disconnect(false)
        }  

    Hello Tapatio,
    i was looking for a solution for my problem and i found your post, first i hope your answer
    so i am a begginer in card developpement, now am using javax.smartcardio, i can select the file i like to use,
    but the problem is : i can't read from it, i don't now exactly how to use hexa code
    i'm working with CCID Smart Card Reader as card reader and PayFlex as smart card,
              try {
                          TerminalFactory factory = TerminalFactory.getDefault();
                      List<CardTerminal> terminals = factory.terminals().list();
                      System.out.println("Terminals: " + terminals);
                      CardTerminal terminal = terminals.get(0);
                      if(terminal.isCardPresent())
                           System.out.println("carte presente");
                      else
                           System.out.println("carte absente");
                      Card card = terminal.connect("*");
                     CardChannel channel = card.getBasicChannel();
                     ResponseAPDU resp;
                     // this part select the DF
                     byte[] b = new byte[]{(byte)0x11, (byte)0x00} ;
                     CommandAPDU com = new CommandAPDU((byte)0x00, (byte)0xA4, (byte)0x00, (byte)0x00, b);
                     resp = channel.transmit(com);
                     System.out.println("Result: " + getHexString(resp.getBytes()));
                        //this part select the Data File
                     b = new byte[]{(byte)0x11, (byte)0x05} ;
                     com = new CommandAPDU((byte)0x00, (byte)0xA4, (byte)0x00, (byte)0x00, b);
                     System.out.println("CommandAPDU: " + getHexString(com.getBytes()));
                     resp = channel.transmit(com);
                     System.out.println("Result: " + getHexString(resp.getBytes()));
                     byte[] b1 = new byte[]{(byte)0x11, (byte)0x05} ;
                     com = new CommandAPDU((byte)0x00, (byte)0xB2, (byte)0x00, (byte)0x04, b1, (byte)0x0E); */
                        // the problem is that i don't now how to built a CommandAPDU to read from the file
                     System.out.println("CommandAPDU: " + getHexString(com.getBytes()));
                     resp = channel.transmit(com);
                     System.out.println("Result: " + getHexString(resp.getBytes()));
                      card.disconnect(false);
              } catch (Exception e) {
                   System.out.println("error " + e.getMessage());
              }read record : 00 A4 ....
    if you know how to do , i'm waiting for your answer

  • Recording File Size issue CS 5.5

    I am using CS 5.5, a Balckmagic Ultra Studio Pro through USB 3.0 being fed by a Roland HD Video switcher. Everything is set for 720P 60fps (59.94) and the Black Magic is using the Motion JPEG compression. I am trying to record our sermons live onto a Windows 7 machine with an Nvidia Ge-Force GTX 570, 16 GB of Ram and a 3TB internal raid array (3 drives). It usually works great but more often now when I push the stop button in the capture window, the video is not proceesed and becomes unusable. Is it a file size issue or what. I get nervous when my recording goes longer than 50 Minutes. Help

    Jim thank you for the response. I have been away and busy but getting
    caught up now.
    I do have all drives formatted as NTFS. My problem is so sporadic that I
    can not get a pattern down. This last Sunday recorded fine so we will see
    how long it last. Thanks again.

  • Swap size issues-Unable to install DB!!

    Unable to install DB. End part i am getting failed due to swap size issue .. FYI...
    [root@usr~]# df -h
    Filesystem            Size  Used Avail Use% Mounted on
    /dev/hda2             5.9G  5.9G     0 100% /
    /dev/hda3             3.0G  848M  2.0G  31% /tmp
    /dev/hda5              34G   12G   21G  37% /refresh
    /dev/hda1              99M   12M   83M  12% /boot
    tmpfs                 3.9G     0  3.9G   0% /dev/shm
    [root@usr~]#
    Please help me...Thanks

    You can increase your swap space.. I have also faced same issue
    Just try: http://www.thegeekstuff.com/2010/08/how-to-add-swap-space/
    ~J

  • Unable to install DB(swap size issues)

    Unable to install DB. End part i am getting failed due to swap size issue .. FYI...
    [root@usr~]# df -h
    Filesystem            Size  Used Avail Use% Mounted on
    /dev/hda2             5.9G  5.9G     0 100% /
    /dev/hda3             3.0G  848M  2.0G  31% /tmp
    /dev/hda5              34G   12G   21G  37% /refresh
    /dev/hda1              99M   12M   83M  12% /boot
    tmpfs                 3.9G     0  3.9G   0% /dev/shm
    [root@usr~]#
    Please help me...Thanks

    I tried with dd if=/dev/hda3 of=/dev/hda5 count=1024 bs=3097152
    Now the o/p is below ...
    [root@user/]# df -h
    Filesystem            Size  Used Avail Use% Mounted on
    /dev/hda2             5.9G  5.9G     0 100% /
    /dev/hda3              35G   33G  345M  99% /tmp
    /dev/hda5              34G   12G   21G  37% /refresh
    /dev/hda1              99M   12M   83M  12% /boot
    tmpfs                 3.9G     0  3.9G   0% /dev/shm
    [root@user/]# cd /tmp/

  • Windows Update Helps with File Size Issues?

    I'm just wondering if anybody has recently noticed an
    improvement related to the file size issue variously reported
    throughout the forums?
    I ask because our IT folks distributed a Windows update on 2
    days last week and since the application of those updates I have
    not experienced the freakishly large file sizes and the related
    performance issues in Captivate. Unfortunately I don't have any of
    the details of what patch(es) were installed, as it was part of our
    boot script one morning and I didn't even realize it was updating
    until I received the Reboot Now or Later alert.
    Anyway, I was curious because I have experienced significant
    performance improvement since then.
    Rory

    If you are using a remote workflow ... designers are sending off-site editors InCopy Assignment packages (ICAPs) .... then they need to create assignments in order to package them for the remote InCopy user. So there's no need to split up a layout into smaller files or anything.  An assignment is a subset of the INDD file; multiple assignments -- each encompassing different pages or sections -- are created from the same INDD file.
    When the designer creates the assignment, have them turn off "Include original images in packages"; that should keep the file size down.
    Or -- like Bob said -- you can avoid the whole remote workflow/assignment package rigamarole all together by just keeping the file in a project folder in the Dropbox folder on teh designer's local hard drive, and have them share the project folder with the editors. In that workflow, editors open the INDD file on their local computer and check out stories, just as though they were opening them from a networked file server.
    I cover how the InCopy Dropbox workflow works in a tutorial video (within the Remote Workflows chapter) on Lynda.com here:
    http://www.lynda.com/tutorial/62220
    AM

  • What am I doing wrong - size issue

    Need some advice...as usual!
    I designed a site on my 17" monitor and set the margins to 0
    and table to 100%. However when I look at it on different screens
    it looks rubbish...big gap at the bottom of the page with the
    design cramp at the top. I wonder if someone would mind looking at
    my code and see what's wrong with it. The site was designed using
    various techniques including css for nav bars, tables, and
    fireworks elements. the site can be viewed at:
    www.shelleyhadler.co.uk/nerja.html
    thanks for your help. Shell

    >Re: What ams I doing wrong - size issue.
    Several things...
    First, your 17" monitor has noting to do with web page
    layout. What
    resolution is your monitor set to? it could be 800 pixels
    wide or 1280
    pixels... wouldn't that make a difference? That aside, screen
    resolution and
    size are irrelevant anyway. What counts it eh size that your
    viewers have
    their web browser window set at.
    I have a pretty large monitor, set to a very high resolution,
    so I open
    several windows at once and size them so I can see the
    content in all.
    Sometimes my browser is full screen and sometimes its shrunk
    down to less
    than 600 x 800. Your web site needs to accommodate that.
    Every web viewer
    out there is different and likes the way they have their
    screens set up. So
    you need to be flexible and your site needs to be flexible.
    Next, Don't design in Fireworks and import to Dreamweaver.
    Fireworks is a
    superb web ready graphics and imaging processing program. The
    authors
    (mistakenly) threw in some web authoring stuff that works
    very poorly.
    Design your pages using Dreamweaver. Learn html markup and
    css styling to
    arrange it, then use Fireworks to create graphics to support
    your content.
    Along the way, be aware of the diffferant browsers in use.
    Internet
    Explorer is the most popular (or at least most in use) simply
    by virtue of
    the Microsoft market share, but it is also the least web
    complient (by virue
    of the Microsoft arrogance) so some things that work there,
    (like your green
    bands) won't on other browsers and vice versa.
    That said... graphically, your site looks great. You have a
    good eye for
    composition and simple clean design. You just need to learn
    to use html to
    your best advantage to create some realy nice looking and
    nicely working
    sites.
    "shelleyfish" <[email protected]> wrote in
    message
    news:[email protected]...
    > Need some advice...as usual!
    >
    > I designed a site on my 17" monitor and set the margins
    to 0 and table to
    > 100%. However when I look at it on different screens it
    looks
    > rubbish...big
    > gap at the bottom of the page with the design cramp at
    the top. I wonder
    > if
    > someone would mind looking at my code and see what's
    wrong with it. The
    > site
    > was designed using various techniques including css for
    nav bars, tables,
    > and
    > fireworks elements. the site can be viewed at:
    >
    > www.shelleyhadler.co.uk/nerja.html
    >
    > thanks for your help. Shell
    >

  • WMV and Disk Size issues

    So I am a pretty avid Encore user and I have come into some issues lately and could use some help.
    Background-
    I filmed a 14 hour conference on SD 16:9 mini dv
    I captured 14 hours with Premiere as .AVI - I edited the segments and exported as .AVI
    I used Media Encoder to convert the files to NTSC Progressive Widescreen High Quality (.m2v)   - Reduced the file size drastically
    I then used Media Encoder to convert the .m2v files to .wmv files - Reducing the conference size to 5.65 GB in total.
    I then imported the .wmv into Encore - my issues begin
    At first, Encore CS4 imported the .wmv files without a problem however the disk size (of 5.65 GB) registered in Encore as around 13 gigs???  Why is that?  The .wmv files only consume 5.65 gb on my harddrive.  Where is this file size issues coming from?
    So then Encore CS4 gets upset that I have exceeded the 8.5 DL Disk size and crashes...
    I reopen the program and try to import my .wmv files again (forgot to save like an idiot).  3 of 8 .wmv files import and then Encore starts giving me decoder errors saying I cannot import the rest of the .wmv files... 
    Can anyone help me with this issue?  Im quite confused by all of this.  Things seemed to work fine (sorta) at first and now Encore is pissed.
    I want to get this 14 hour conference on 1 DL DVD and I thought it would be as simple as getting the files reduced to a size sutable for a 8.5 gb disk.  Why is my way of thinking incorrect?
    Thanks for any help,
    Sam

    ssavery wrote:
    Thanks everyone for your help.
    Im still not giving up....  It's become an obsession at this point.  My uncle does this with kids movies for his children.   He'll download and compress entire seasons of children shows and put them all on one dvd which he then plays in a dvd player for them to watch.  Im currently trying to get ahold of him....
    Thanks for the help
    Sam
    i've done this as well for shows that are never to be seen again for the light of day from the 80s and such... i use VSO Software's "ConvertXtoDVD v4" i ONLY use this for archival purposes of xvid or wmv or stuff that encore would throw fits over. the menus are all mainly default stock stuff. but for these projects i'm not concerned about menus or specific navigation, i just need to get the job done. i can squeeze around 15 hrs of 720x480 on one DL (it compresses the ever living dayligths out of the video... but for most of the source footage... it really doesnt matter at that point, its mostly all VHS archives i use for this program anyway) if you just absolutely HAVE to have a 1 disker, you could check that app out, burn it an see how it looks.
    edited to add: that to really squeeze crap in, you can also use a DVDFab program (any ersion should do... Older ones are cheaper) make a disc image with ConvertX, if yiu have alot f footage it may push it beyond the normal boundary of a dvd-dl and fail the burn. So then you can just import the disc image into DVDFab, and choose it to burn to a DVD-DL, and it may compress it by about 3-7% more to fit it. I would NEVER use this method EVER for a client... But if you are just hell-bent on doing 1 disk. Tries these 2 apps out. It may work out if you can live with the compression.
    if you do try this, I recommend trying this workflow. Open premiere with your first gem captured AVI. set up your chapters how you want them or whatever, then save each chapter or lecture or segment or whatever as it's own AVI. the. Import all those separately into ConvertX and set it up to play one after the other when each segment ends. [i can't confirm this 100%, because i usually drop in already compressed  files... but if for some reason it don't wanna work out... then i would  suggest dropping in the mts files instead] (if say you want a new "movie" for each lecture instead, and have chapters per movie that can be done too... But it's more work, but I can expound later if need be)  To save time on encoding, set up the menu to be the "minimalist" menu. It's strictly text. Then just create sn ISO. if you donthe full thing, I can almost guarantee you'll have to use DVDFab to burn to disc, because it'll probably be about 5-8% overburn.

  • How to resize the menu,address and bookmark toolbars. Not the font but the toolbar sizes

    I'm trying to reduce the overall space of the top of the firefox page.
    I have the menu and the the bookmarks tool bars checked and between those 2 and the address and site header it takes up way to much real estate.
    My font size is good but the wasted area is way to much and I can't seem to find the simple answer to looking for addons and themes to just resize the height of the space.
    This is the new 33.1 and up to this point all custom has been a breeze.
    Thanks much.

    Hello,
    Have you considered running Firefox in [[How to make Firefox and websites go full screen|Full Screen mode]]? There is also an extension that hides the toolbars until you hover your mouse over the top of the screen:
    * https://addons.mozilla.org/en-US/firefox/addon/fullscreen-toolbar-hover/
    You can change the size of your toolbars by using the userChrome.css file, or by installing [https://addons.mozilla.org/en-US/firefox/addon/stylish/ Stylish] and using one of these styles:
    * https://userstyles.org/styles/9349/navigation-location-bar-minimal-height
    * https://userstyles.org/styles/9350/menu-and-searchbar-minimal-height-dm
    * You can edit the code of the style to suit your needs better. I don't know how it will affect the current interface, so if you find that Firefox becomes unusable after using this style, load Firefox in [[Troubleshoot Firefox issues using Safe Mode|Safe Mode]] and uninstall Stylish to remove it
    ** Alternatively, if the address bar still works, type in '''about:addons''' in your address bar, and go to the User Styles tab, then disable/remove the style
    For more information on userChrome.css:
    * http://kb.mozillazine.org/index.php?title=UserChrome.css

  • ADF: Font size issue using JDEVADF_MAIN_GENERIC_070112.1145.4385

    Hi,
    Even I have the exact same issue with my jspx pages.
    I am on the EMAIGC_MAIN_LINUX label using JDEVADF_MAIN_GENERIC_070112.1145.4385
    I have a tableLayout in my template code, that I use to layout the contents of my jspx page. After I remove the <afh:tableLayout>, the following fonts are affected and work fine -
    1. The font of the top File menu that Ravi mentions below.
    2. The Navigation tree that we have on the left side of the page.
    3. The 'emptyText' of the <af:table> component.
    4. The 'help' facet of the <af:panelLabelAndMessage> component.
    If I put the tableLayout back again, the large size (16px) fonts in the above areas reappear.
    Coming back to the problem -
    Now, the Navigation tree, that I have mentioned above, helps me to navigate to a different page.
    Once, I click on the navigation tree's node to navigate to the second page, and the page loads, I find that the fonts in the above four afore-mentioned areas go back to the larger size (16px), thus making the removal of the tableLayout useless. Both the initial page and the second page use the same hierarchy of templates and styles.
    When I try loading the first/initial page again, the fonts are all fine and proper (11px).
    Can someone please help resolve this issue as this is quite a deterrent to achieving a proper looking UI.
    Please let me know if anyone needs access to my working env and jspx files.
    Thanks,
    Arya.
    Please let us know the
    ravishankar.belavadi wrote:
    Hello All,
    I have a small issue with the fonts in the presentation of my jspx pages
    The File menu on the Top turns into a larger font size when my jspx
    pages are invoked.
    So I was getting to the most basics to ensure the font size remains
    same. Removed all the components of my JSPX page came to bare minimum
    where I had a
    Just the PanelGroupLayout and TableLayout.
    In the TableLayout what I have used , If I remove the table Layout the
    fonts come correctly and If I put the tableLayout back the fonts becomes
    larger.
    1. I am not understanding if ther is any relation in using tableLayout
    inside panelGroupLayout ?? 2. How can I ensure the fonts are consistent
    with the framework. ?
    <af:panelGroupLayout id="selectPlugin_manualSelect" visible="true"
    inlineStyle="width:80%; height:100px;">
    * <trh:tableLayout borderWidth="0" inlineStyle="width:80%;
    height:100px;">
    <!-- some thing here -->
    </trh:tableLayout>*
    </af:panelGroupLayout>
    I have attached the selectPlugin.jspx where the font size is going to be
    bigger and if you remove the tableLayout in the above highlighted code
    the fonts come correctly.
    Please kindly reply.
    Thanks
    Ravi
    <?xml version='1.0' encoding='utf-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:trh="http://xmlns.oracle.com/trinidad/html"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich" version="1.2"
    xmlns:bib="http://xmlns.oracle.com/dss/adf/faces">
    <jsp:directive.page contentType="text/html;charset=utf-8"/>
    <f:view>
    <f:loadBundle basename="oracle.sysman.core.pagemodel.emxplugin.PluginMsg"
    var="PluginMsg"/>
    <f:loadBundle basename="oracle.sysman.core.pagemodel.emxplugin.PluginToolTipMsg"
    var="PluginToolTipMsg"/>
    <f:loadBundle basename="oracle.sysman.resources.CommonResourceBundle"
    var="commonbundle"/>
    <af:document maximized="true" title="#{sdk_pagetemplate_model.pageTitle}">
    <af:form>
    <f:verbatim>
    <![CDATA[
    <script>
    * Shows the popup dialog
    function showValidatePopup()
    var component = AdfPage.PAGE.findComponent("deployPlugin_validatePopup");
    component.show();
    function hideValidatePopup()
    var component = AdfPage.PAGE.findComponent("deployPlugin_validatePopup");
    component.hide();
    function showTablePopulationPopup()
    var component = AdfPage.PAGE.findComponent("deployPlugin_tablePopulationPopup");
    component.show();
    function hideTablePopulationPopup()
    var component = AdfPage.PAGE.findComponent("deployPlugin_tablePopulationPopup");
    component.hide();
    </script>
    ]]>
    </f:verbatim>
    <af:pageTemplate id="emTemplate" viewId="/sdk/templateDefNoForm.jspx">
    <f:facet name="emContent">
    <!-- BEGIN MAIN CONTENT -->
    <af:panelGroupLayout id="selectPlugin_grp_layout1" layout="scroll" inlineStyle="width:100%">
    <af:panelGroupLayout id="selectPlugin_grp_layout2" layout="horizontal" inlineStyle="vertical-align:top;width:100%">
    <!--<af:panelGroupLayout layout="horizontal" > -->
    <af:panelHeader id="selectPlugin_panelHeader" text="#{PluginMsg.DEPLOY_SELECT_PLUGIN}"/>
    <!--</af:panelGroupLayout>-->
    <af:panelGroupLayout id="selectPlugin_grp_layout3" layout="horizontal" halign="end">
    <af:commandButton id="selectPlugin_button1" text="#{PluginMsg.CONTINUE}" action="#{pageFlowScope.emxplugin_model_deploy.handleContinue}" disabled="true" shortDesc = "#{PluginToolTipMsg.CONTINUE}"/>
    <af:spacer width="10"/>
    </af:panelGroupLayout>
    </af:panelGroupLayout>
    <af:spacer height="10" />
    <af:outputText id="selectPlugin_output_text1" value="#{PluginMsg.SELECT_PLUGIN_NOTE}" />
    <af:spacer height="10"/>
    <af:selectOneRadio autoSubmit="true" id="selectPlugin_picker" value="metalink"
    valueChangeListener="#{pageFlowScope.emxplugin_view_deploy.radioValueChange}"
    layout="horizontal" immediate="true">
    <af:selectItem value="metalink" id="selectPlugin_selectItem_picker1"
                        shortDesc = "#{PluginToolTipMsg.DOWNLOAD_METALINK}"
    label="#{PluginMsg.METALINK_DOWNLOAD}"/>
    <af:selectItem value="manual" id="selectPlugin_selectItem_picker2"
                        shortDesc = "#{PluginToolTipMsg.MANUAL_ARCHIVE}"
                        label="#{PluginMsg.MANUAL_SELECT}"/>
    </af:selectOneRadio>
    <af:spacer height="10"/>
    <!--Top Panel -->
    <!--This is the top panel which will only be displayed when
    plugin archive is to be naually provided by the customer.-->
    <af:panelGroupLayout id="selectPlugin_manualSelect" visible="true" inlineStyle="width:80%; height:100px;">
    <trh:tableLayout borderWidth="0" inlineStyle="width:80%; height:100px;">
    <!--
    <trh:rowLayout id="selectPlugin_row_layout1">
    <trh:cellFormat id="selectPlugin_cellformat1">
              <af:panelLabelAndMessage id="selectPlugin_lbl_msg1" label="#{PluginMsg.TYPE}">
         <af:selectOneChoice id="selectPlugin_selectChoice1" value="Test" unselectedLabel="Monitoring">
         <f:selectItems id="selectPlugin_selectItems1" value="#{pageFlowScope.emxplugin_model_deploy.manualPluginTypes}"/>
         </af:selectOneChoice>
              </af:panelLabelAndMessage>
         </trh:cellFormat>
    </trh:rowLayout>
    <af:spacer height="10"/>
    -->
    <!--
    <trh:rowLayout id="selectPlugin_row_layout2">
    <trh:cellFormat id="selectPlugin_cellformat2">
    <af:panelLabelAndMessage id="selectPlugin_lbl_msg2" label="#{PluginMsg.ARCHIVE}" >
    <af:inputFile id="selectPlugin_list1" value="#{pageFlowScope.emxplugin_model_deploy.archive}"/>
    <af:spacer height="20" width="40" />
    <af:commandButton id="selectPlugin_button2" text="#{PluginMsg.LIST_ARCHIVE}"
                   shortDesc = "#{PluginToolTipMsg.LIST_ARCHIVE}"
                   action="#{pageFlowScope.emxplugin_model_deploy.handleListArchive}" />
    </af:panelLabelAndMessage>
    </trh:cellFormat>
    </trh:rowLayout>
    -->
    </trh:tableLayout>
    </af:panelGroupLayout>
    <!-- This panel will be displayed when plugin is to be downloaded from metalink -->
    <af:panelGroupLayout id="selectPlugin_metalinkSelect" partialTriggers="selectPlugin_picker"
    visible="true">
    <af:panelGroupLayout id="selectPlugin_grp_layout4" layout="horizontal" halign="right" inlineStyle="width:800px" >
    <af:outputText id="selectPlugin_output_text2" value="#{PluginMsg.METALINK_SETUP_SUCCESS}" inlineStyle="white-space:nowrap;" />
    <af:spacer width="10"/>
    <af:commandButton id="selectPlugin_button3" text="#{PluginMsg.METALINK_SETUP}"
                        shortDesc = "#{PluginToolTipMsg.METALINK_SETUP}" partialSubmit="true"/>
    </af:panelGroupLayout>
    </af:panelGroupLayout>
    <af:spacer height="20" />
    <!--End of Top Panel -->
    <!-- Start of Table Display -->
    <!--
    <af:panelGroupLayout id="selectPlugin_plugintable"
    layout="vertical"
    inlineStyle="width:100%;"
    partialTriggers="selectPlugin_picker">
    <trh:tableLayout id="selectPlugin_table_layout2" width="800px" >
    <trh:rowLayout id="selectPlugin_row_layout3">
    <trh:cellFormat id="selectPlugin_cellformat3">
    <af:toolbar id="selectPlugin_toolbar1" visible="true" inlineStyle="width:800px">
    <af:selectOneChoice id="selectPlugin_selectChoice2" label="#{PluginMsg.SHOW}"
                   value="all_plugins"
    autoSubmit="true"
    valueChangeListener="#{pageFlowScope.emxplugin_view_deploy.dropDownValueChange}">
    <af:selectItem id="selectPlugin_selectItems2" value="management_plugins" label="#{PluginMsg.MANAGEMENT_SERVICE_PLUGINS}"/>
    <af:selectItem id="selectPlugin_selectItems3" value="agent_plugins" label="#{PluginMsg.AGENT_PLUGINS}"/>
    <af:selectItem id="selectPlugin_selectItems4" value="all_plugins" label="#{PluginMsg.ALL_PLUGINS}"/>
    </af:selectOneChoice>
    <af:spacer width="200"/>
    <af:outputText id="selectPlugin_output_text3" value="#{PluginMsg.LAST_UPDATE_METALINK}"
    inlineStyle="color:rgb(148,107,0); text-align:right;"/>
    <af:spacer width="3"/>
    <af:outputText id="selectPlugin_output_text4" value="29-Sep-2006 11:20(IST)" />
    <af:spacer width="3"/>
    <af:commandToolbarButton id="selectPlugin_toolbar_button1"
                             shortDesc = "#{PluginToolTipMsg.METALINK_REFRESH}" icon="/images/refresh.gif"/>
    </af:toolbar>
    </trh:cellFormat>
    </trh:rowLayout>
    <trh:rowLayout id="selectPlugin_row_layout4">
    <trh:cellFormat id="selectPlugin_cellformat4">
    <af:toolbar id="selectPlugin_toolbar2" visible="true" inlineStyle="width:800px">
    <af:spacer width="250"/>
    <af:outputText id="selectPlugin_output_text5" value="#{PluginMsg.SEARCH}" inlineStyle="color:rgb(148,107,0);"/>
    <af:outputText id="selectPlugin_output_text6" value=" "/>
    <af:inputText id="selectPlugin_input_text1"/>
    <af:commandToolbarButton id="selectPlugin_toolbar_button2"
                        shortDesc = "#{PluginToolTipMsg.PLUGIN_SEARCH}" icon="/images/gotopage.gif"/>
    <af:commandButton id="selectPlugin_button4" shortDesc = "#{PluginToolTipMsg.ADVANCED_PLUGIN_SEARCH}" text="#{PluginMsg.ADVANCED}"/>
    </af:toolbar>
         <af:toolbar id="selectPlugin_toolbar3" visible="true" inlineStyle="width:800px">
    <af:query id="pluginquery" disclosed="true"
    headerText="Test Query" inlineStyle="width:500px"
    resultComponentId="resultTextId"
    value="#{pageFlowScope.emxplugin_plugin_query.descriptor}"
    model="#{pageFlowScope.emxplugin_plugin_query.queryModel}"
    queryListener="#{pageFlowScope.emxplugin_plugin_query.processQuery}">
    <f:facet name="help">
    <af:outputText value="Please search based on search criterias"/>
    </f:facet>
    <f:facet name="info">
    <af:outputText value="* Required fields"/>
    </f:facet>
    <f:facet name="footer">
    <af:selectOneChoice simple="true" autoSubmit="true"
    rendered="#{pageFlowScope.emxplugin_plugin_query.advancedMode}"
    shortDesc="Add More" id="addMoreId"
    valueChangeListener="#{pageFlowScope.emxplugin_plugin_query.addCriterion}">
    <f:selectItems value="#{pageFlowScope.emxplugin_plugin_query.queriableItems}"/>
    </af:selectOneChoice>
    </f:facet>
    <af:queryCriteria id="queryCriteria"
    partialTriggers="addMoreId"
    value="#{pageFlowScope.emxplugin_plugin_query.descriptor}"
    conjunction="#{pageFlowScope.emxplugin_plugin_query.descriptor.conjunction}"
    model="#{pageFlowScope.emxplugin_plugin_query.queryModel}" var="row"
    maxColumns="2" rows="3">
    <f:facet name="labelStamp">
    <af:outputLabel showRequired="#{row.required}"
    value="#{row.label}"/>
    </f:facet>
    <f:facet name="operatorStamp">
    <af:selectOneChoice simple="true" shortDesc="Operators"
    value="#{row.operator}">
    <f:selectItems value="#{row.operators}"/>
    </af:selectOneChoice>
    </f:facet>
    <f:facet name="valueStamp">
    <af:inputText id="selectPlugin_input_text2"
    simple="true" value="#{row.value}"
    shortDesc="value"/>
    </f:facet>
    </af:queryCriteria>
    </af:query>
    <af:outputText id="resultTextId" value="Query statement is as folows: #{pageFlowScope.emxplugin_plugin_query.sqlState}" visible="false"/>
         </af:toolbar>
    </trh:cellFormat>
    </trh:rowLayout>
    <trh:rowLayout id="selectPlugin_row_layout5">
    <trh:cellFormat id="selectPlugin_cellformat5">
    <af:table value="#{pageFlowScope.emxplugin_model_deploy.pluginTableInfo}" var="row"
    rows="10" columnBandingInterval="1"
    rowSelection="single" id="selectPlugin_table1"
    selectionListener="#{pageFlowScope.emxplugin_view_deploy.processSelection}"
    inlineStyle="width:800.0px; height:100px;">
    <af:column id="selectPlugin_table1_column1" rowHeader="true" sortable="false" headerText="" width="20"/>
    <af:column id="selectPlugin_table1_column2" sortable="true" sortProperty="pluginName" headerText="#{PluginMsg.PLUGIN_NAME}"
    align="start" width="210">
    <af:outputText id="selectPlugin_output_text7" value="#{row.pluginName}"/>
    </af:column>
    <af:column id="selectPlugin_table1_column3" sortable="true" sortProperty="pluginVersion"
                        headerText="#{PluginMsg.PLUGIN_VERSION}" align="start" noWrap="false">
    <af:outputText id="selectPlugin_output_text8" value="#{row.pluginVersion}"/>
    </af:column>
    <af:column id="selectPlugin_table1_column4" sortable="true" sortProperty="pluginType"
                        headerText="#{PluginMsg.PLUGIN_TYPE}" width="150">
    <af:outputText id="selectPlugin_output_text9" value="#{row.pluginType}"/>
    </af:column>
    <af:column id="selectPlugin_table1_column5" sortable="true" sortProperty="pluginSource"
                        headerText="#{PluginMsg.PLUGIN_SOURCE}" width="150">
    <af:outputText id="selectPlugin_output_text10" value="#{row.pluginSource}"/>
    </af:column>
    <af:column id="selectPlugin_table1_column6" sortable="false" headerText="#{PluginMsg.PLUGIN_CURRENTLY_DEPLOYED}">
    <af:image id="selectPlugin_image1" source="#{row.deployImage}" inlineStyle="text-align:center;" />
    </af:column>
    </af:table>
    </trh:cellFormat>
    </trh:rowLayout>
    </trh:tableLayout>
    </af:panelGroupLayout>
    -->
    <!-- End of Table Display Panel -->
    <!-- Start of Bottom Panel -->
    <!--
    <af:spacer height="20"/>
    <af:panelGroupLayout id="selectPlugin_selectionDetails" rendered="true"
                        partialTriggers="selectPlugin_picker selectPlugin_plugintable selectPlugin_table1"
              visible="false" >
    <af:outputText id="selectPlugin_output_text11" value="#{pageFlowScope.emxplugin_model_deploy.selectedPlugin.pluginName} "
    inlineStyle="font-size:large;"/>
    <af:outputText id="selectPlugin_output_text12" value="#{PluginMsg.DETAILS}" inlineStyle="font-size:large;"/>
    <af:spacer height="10"/>
    <af:panelGroupLayout id="selectPlugin_grp_layout5" layout="horizontal" inlineStyle="width:80%;">
         <af:panelGroupLayout id="selectPlugin_grp_layout6" inlineStyle="width:50%;">
              <af:outputText id="selectPlugin_output_text13" value="#{PluginMsg.PLUGIN_DESCRIPTION}"
                   inlineStyle="font-size:medium;font-weight:bold;"/>
                   <af:spacer height="7"/>
                   <af:outputText id="selectPlugin_output_text14" value="#{pageFlowScope.emxplugin_model_deploy.selectedPlugin.description}"/>
    <af:spacer height="20"/>
    <af:panelGroupLayout>
    <af:outputText id="selectPlugin_output_text15" value="#{PluginMsg.ARCHIVE}"
                        inlineStyle="font-size:medium;font-weight:bold;"/>
                   <af:spacer height="7"/>
                   <af:inputFile id="selectPlugin_list2" value="#{pageFlowScope.emxplugin_model_deploy.archive}"/>
    </af:panelGroupLayout>
    <af:spacer height="20" />
    <af:panelGroupLayout id="selectPlugin_grp_layout7">
    <af:outputText id="selectPlugin_output_text16" value="#{PluginMsg.INSTALLED_ON}"
                   inlineStyle="font-size:medium;font-weight:bold;"/>
                   <af:spacer height="7"/>
    <af:table id="selectPlugin_table2" value="#{pageFlowScope.emxplugin_model_deploy.selectedPlugin.deployedAgents}"
                   var="dest" inlineStyle="width:80%;height:100px">
                   <af:column id="selectPlugin_table2_column1" headerText="#{PluginMsg.TARGET_NAME}"
                        sortable="true" sortProperty="targetName" >
                   <af:outputText id="selectPlugin_output_text17" value="#{dest.targetName}"/>
                   </af:column>
                   <af:column id="selectPlugin_table2_column2" headerText="#{PluginMsg.TARGET_VERSION}"
                        sortable="true" sortProperty="targetVersion" width="70">
                   <af:outputText id="selectPlugin_output_text18" value="#{dest.targetVersion}"/>
                   </af:column>
                   <af:column id="selectPlugin_table2_column3" headerText="#{PluginMsg.DEPLOYED_VERSION}"
                        sortable="true" sortProperty="deployedVersion" width="90">
                   <af:outputText id="selectPlugin_output_text19" value="#{dest.deployedVersion}"/>
                   </af:column>
                   <af:column id="selectPlugin_table2_column4" headerText="#{PluginMsg.TARGET_HOST}"
                        sortable="true" sortProperty="host" >
                   <af:outputText id="selectPlugin_output_text20" value="#{dest.host}"/>
                   </af:column>
                   <af:column id="selectPlugin_table2_column5" headerText="#{PluginMsg.TARGET_PLATFORM}"
                        sortable="true" sortProperty="platform" width="80">
                   <af:outputText id="selectPlugin_output_text21" value="#{dest.platform}"/>
                   </af:column>
              </af:table>
    </af:panelGroupLayout>
         </af:panelGroupLayout>
    <af:panelGroupLayout id="selectPlugin_grp_layout8" inlineStyle="width:50%;">
              <af:outputText id="selectPlugin_output_text22" value="#{PluginMsg.PLUGIN_REQUIREMENTS}"
              inlineStyle="font-size:medium; font-weight:bold;"/>
              <af:spacer height="7"/>
              <af:outputText id="selectPlugin_output_text23" value="#{pageFlowScope.emxplugin_model_deploy.selectedPlugin.requirement}"/>
    <af:spacer height="20"/>
    <af:outputText id="selectPlugin_output_text24" value="#{PluginMsg.SUPPORT_PLATFORM}"
                             inlineStyle="font-size:medium; font-weight:bold;"/>
              <af:spacer height="7"/>
              <af:outputText id="selectPlugin_output_text25" value="#{PluginMsg.OMS_PLATFORM}" inlineStyle="font-weight:bold;"/>
    <af:spacer height="5"/>
    <af:table id="selectPlugin_table3" value="#{pageFlowScope.emxplugin_model_deploy.selectedPlugin.OMSPlatforms}"
    var="oms" inlineStyle="width:200.0px; height:100px;">
         <af:column id="selectPlugin_table3_column1" sortable="false" width="190">
              <af:outputText id="selectPlugin_output_text26" value="#{oms}"/>
         </af:column>
    </af:table>
    <af:spacer height="7"/>
                   <af:outputText id="selectPlugin_output_text27" value="#{PluginMsg.AGENT_PLATFORM}" inlineStyle="font-weight:bold;"/>
                   <af:spacer height="5"/>
                   <af:table id="selectPlugin_table4" value="#{pageFlowScope.emxplugin_model_deploy.selectedPlugin.agentPlatforms}"
    var="agent" inlineStyle="width:200.0px; height:100.0px;">
                        <af:column id="selectPlugin_table4_column1" sortable="false" width="190">
                             <af:outputText id="selectPlugin_output_text28" value="#{agent}"/>
                        </af:column>
    </af:table>
    </af:panelGroupLayout>
    </af:panelGroupLayout>
    </af:panelGroupLayout>
         -->
    <!-- EnD of Bottom Panel-->
    <af:panelGroupLayout id="selectPlugin_grp_layout9" layout="horizontal" halign="end" inlineStyle="vertical-align:bottom;">
    <af:commandButton id="selectPlugin_button5" text="#{PluginMsg.CONTINUE}"
                   shortDesc = "#{PluginToolTipMsg.CONTINUE}"
                   action="#{pageFlowScope.emxplugin_model_deploy.handleContinue}" disabled="true" />
    <af:spacer width="10"/>
    </af:panelGroupLayout>
    </af:panelGroupLayout>
    <!-- END MAIN CONTENT -->
    </f:facet>
    </af:pageTemplate>
    <af:popup id="deployPlugin_validatePopup">
    <af:dialog okVisible="true"
    cancelVisible="false"
    modal="true"
    title="#{commonbundle.ERROR}"
    id="validateDialog"
    titleIconSource="/images/critical.gif"
    dialogListener="#{pageFlowScope.emxplugin_view_deploy.handleValidatePopup_OK}">
    <af:panelGroupLayout>
    <af:panelHeader id="consiceMsg"
    inlineStyle="width:320px;height:120px">
    <af:spacer width="5"/>
    <af:outputFormatted id="detailedMsg" styleClass="AFInstructionText"
         value="#{pageFlowScope.emxplugin_model_deploy.validationError}"/>
    </af:panelHeader>
    </af:panelGroupLayout>
    </af:dialog>
    </af:popup>
    <af:popup id="deployPlugin_tablePopulationPopup">
    <af:dialog okVisible="true"
    cancelVisible="false"
    modal="true"
    title="#{commonbundle.ERROR}"
    id="tablePopulationDialog"
    titleIconSource="/images/critical.gif"
    dialogListener="#{pageFlowScope.emxplugin_view_deploy.handleTablePopulationPopup_OK}">
    <af:panelGroupLayout>
    <af:panelHeader id="consiceMsg"
    inlineStyle="width:320px;height:120px">
    <af:spacer width="5"/>
    <af:outputFormatted id="detailedMsg" styleClass="AFInstructionText"
    value="#{pageFlowScope.emxplugin_model_deploy.validationError}"/>
    </af:panelHeader>
    </af:panelGroupLayout>
    </af:dialog>
    </af:popup>
    </af:form>
    </af:document>
    </f:view>
    </jsp:root>

    Hi,
    JDEVADF_MAIN_GENERIC_070112.1145.4385 is an internal build. Please post this question to the internal forum. Also, if this turns out to be a bug, please file it.
    Frank

  • Toolbar Layout issue

    During the same session I can use the feature Customize Toolbar\ Toolbar Layout only once, then the command is grayed and only the restart will fix the issue.
    Actually I must restart every time to be able to open the Customize Toolbar dialog.
    Anybody experienced the same ? How did you managed the issue ?
    thanks in advance !
    Firefox version 9.0.1

    Many thanks for the feedback !
    Well first I resized the CustomizeToolbar window to the original size (644 x 430 px) then I disabled the add on "All In One Sidebar"
    and in the end the issue was fixed,
    thanks again !

  • JInternalFrame size issue

    I'm trying to make an IDE, and have started trying to create a nopepad type editor. My problem occurs when clicking new to create a new internal frame, the frame is created to be the same size as a maximised internal frame would be. I've tryed adding setBounds, setSize, setPreferredSize, setMaximumSize, setMinimumSize functions to the frame, but to no avail. This is the full listing of my code:
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import javax.swing.text.*;
       Java IDE (Integrated Development Environment)
       IDE.java
       Sets up constants and main viewing frame.
       Advanced 2nd Year HND Project
       @author Mark A. Standen
       @Version 0.2 18/04/2002
    //=========================================================
    //   Main (public class)
    //=========================================================
    public class IDE extends JFrame
          Application Wide Constants
       /**   The Name of the Application   */
       private static final String APPLICATION_NAME = "Java IDE";
       /**   The Application Version   */
       private static final String APPLICATION_VERSION = "0.2";
       /**   The Inset from the edges of the screen of the main viewing frame   */
       private static final int INSET = 50;
       /**   The main frame   */
       private static IDE frame;
          MAIN
       public static void main (String[] Arguments)
          //Adds Cross-Platform functionality by adapting GUI
          try
             UIManager.setLookAndFeel( UIManager.getSystemLookAndFeelClassName() );
             //Adapts to current system look and feel - e.g. windows
          catch (Exception e) {System.err.println("Can't set look and feel: " + e);}
          frame = new IDE();
          frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
          frame.setVisible(true);
          This Constructor creates an instance of Main, the main view frame.
          @param sizeX Width of the main view Frame in pixels
          @param sizeY Height of the main view Frame in pixels
       public IDE()
          super (APPLICATION_NAME + " (Version " + APPLICATION_VERSION + ")");
          Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
          this.setBounds( INSET, INSET, screenSize.width - (INSET * 2), screenSize.height - (INSET * 3) );
          JDesktopPane mainPane = new JDesktopPane();
          mainPane.setDragMode(JDesktopPane.OUTLINE_DRAG_MODE);
          this.setContentPane(mainPane);
          this.getContentPane().setLayout( new BorderLayout() );
          this.getContentPane().add("North", new ToolBar() );
    //===================================================================
    //   ToolBar (private class)
    //===================================================================
       private class ToolBar extends JToolBar implements ActionListener
          /*   Create toolbar buttons   */
          private JButton newBox;
          private JButton load;
          private JButton save;
             Creates an un-named toolbar,
             with New, Load, and Save options.
          public ToolBar () {
                Use to make toolbar look nice later on
                ImageIcon imageNew = new ImageIcon("imgNew.gif");
                JButton toolbarNew = new JButton(imageNew);  
                ImageIcon imageLoad = new ImageIcon("imgLoad.gif");
                JButton toolbarLoad = new JButton(imageLoad);  
                ImageIcon imageSave = new ImageIcon("imgSave.gif");
                JButton toolbarSave = new JButton(imageSave);
                temp toolbar buttons for now
             newBox = new JButton("New");
             load = new JButton("Load");
             save = new JButton("Save");
             this.setFloatable(false);
             this.setOrientation(JToolBar.HORIZONTAL);
             this.add(newBox);
             this.add(load);
             this.add(save);
             newBox.addActionListener(this);
             load.addActionListener(this);
             save.addActionListener(this);
             Checks for button presses, and calls the relevant functions
          public void actionPerformed (ActionEvent event)
             Object source = event.getSource();
             /*   If new has been clicked   */
             if (source == newBox)
                TextDisplayFrame textBox = new TextDisplayFrame();
                Rectangle rect = this.getParent().getBounds();
                textBox.setBounds( rect.x - INSET, rect.y - INSET, rect.width - (INSET * 2), rect.height - (INSET * 2) );
                this.getParent().add(textBox);
                textBox.setVisible(true);
             /*   If load has been clicked   */
             else if (source == load)
                TextDisplayFrame textBox = new TextDisplayFrame();
                frame.getContentPane().add(textBox);
                System.out.println(textBox + "");
                textBox.loadDoc();
             /*   If save has been clicked   */
             else if (source == save)
    //====================================================================
    //   Menu (private class)
    //====================================================================
       private class Menu extends JMenu
          public Menu()
             JMenuBar menuBar = new JMenuBar();
             JMenu menu = new JMenu("Document");
             menu.setMnemonic(KeyEvent.VK_D);
             JMenuItem menuItem = new JMenuItem("New");
             menuItem.setMnemonic(KeyEvent.VK_N);
             menuItem.addActionListener(new ActionListener()
                   public void actionPerformed(ActionEvent e)
                      TextDisplayFrame textBox = new TextDisplayFrame();
                      //this.getContentPane().add(textBox);
             menu.add(menuItem);
             menuBar.add(menu);
             menuBar.setVisible(true);
    //====================================================================
    //   TextDisplayFrame (private class)
    //====================================================================
       private class TextDisplayFrame extends JInternalFrame
          /**   The Default Title of an internal pane   */
          private static final String DEFAULT_TITLE = "untitled";
          /**   Path to the current File   */
          private File filePath = new File ("C:" + File.separatorChar + "test.txt");
          /*   Swing Components   */
          private JTextArea mainTextArea;
          private JScrollPane scrollPane;
             Creates a TextDisplayFrame with the given arguments
             @param title Title of the TextDisplayFrame
          public TextDisplayFrame(String title)
             super(title, true, true, true, true); //creates resizable, closable, maximisable, and iconafiable internal frame
             this.setContentPane( textBox() );
             this.setPreferredSize( new Dimension (150, 100) );
             this.setMaximumSize( new Dimension (300, 300) );
             this.setVisible(true);
             Creates a resizable frame with the default title
          public TextDisplayFrame()
             this(DEFAULT_TITLE);
             Creates a blank, resizable central text area, for the entering of text
             @return Returns a JPanel object
          private JPanel textBox()
             mainTextArea = new JTextArea( new PlainDocument() );
             mainTextArea.setLineWrap(false);
             mainTextArea.setFont( new Font("monospaced", Font.PLAIN, 14) );
             scrollPane = new JScrollPane( mainTextArea );
             JPanel pane = new JPanel();
             BorderLayout bord = new BorderLayout();
             pane.setLayout(bord);
             pane.add("Center", scrollPane);
             return pane;
             @return Returns a JTextComponent to be used as document object
          public JTextComponent getDoc()
             return mainTextArea;
          public void loadDoc()
             /* Create blank Document */
             Document textDoc = new PlainDocument();
             /* Attempt to load the document in the filePath into the blank Document object*/
             try
                Reader fileInput = new FileReader(filePath);
                char[] charBuffer = new char[1000];
                int numChars;
                while (( numChars = fileInput.read( charBuffer, 0, charBuffer.length )) != -1 )
                   textDoc.insertString(textDoc.getLength(), new String( charBuffer, 0, numChars ), null);
             catch (IOException error) {System.out.println(error); }
             catch (BadLocationException error) {System.out.println(error); }
             /* Set the loaded document to be the text of the JTextArea */
             this.getDoc().setDocument( textDoc );
    }I would appreciate all/any help that can be offered.

    i have tried out your source and have made some modifications and now it works fine.
    move the desktoppane to be a private variable of the class, so that you can add the InternalFrame to it directly. also the setBounds() needs to be given lil' corrections to c that the InternalFrame appear on the visible area.
    i'm posting entire source just to make sure you don't confuse abt the changes. This is a working version. Hope it serves.
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import javax.swing.text.*;
    Java IDE (Integrated Development Environment)
    IDE.java
    Sets up constants and main viewing frame.
    Advanced 2nd Year HND Project
    @author Mark A. Standen
    @Version 0.2 18/04/2002
    //=========================================================
    // Main (public class)
    //=========================================================
    public class IDE extends JFrame
    Application Wide Constants
    /** The Name of the Application */
    private static final String APPLICATION_NAME = "Java IDE";
    /** The Application Version */
    private static final String APPLICATION_VERSION = "0.2";
    /** The Inset from the edges of the screen of the main viewing frame */
    private static final int INSET = 50;
    /** The main frame */
    private static IDE frame;
    /*********** CHANGED HERE ****************/
    private JDesktopPane mainPane;
    /*********** END CHANGE ****************/
    MAIN
    public static void main (String[] Arguments)
    //Adds Cross-Platform functionality by adapting GUI
    try
    UIManager.setLookAndFeel( UIManager.getSystemLookAndFeelClassName() );
    //Adapts to current system look and feel - e.g. windows
    catch (Exception e) {System.err.println("Can't set look and feel: " + e);}
    frame = new IDE();
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setVisible(true);
    This Constructor creates an instance of Main, the main view frame.
    @param sizeX Width of the main view Frame in pixels
    @param sizeY Height of the main view Frame in pixels
    public IDE()
    super (APPLICATION_NAME + " (Version " + APPLICATION_VERSION + ")");
    Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
    this.setBounds( INSET, INSET, screenSize.width - (INSET * 2), screenSize.height - (INSET * 3) );
              /*********** CHANGED HERE ****************/
    mainPane = new JDesktopPane();
    mainPane.setDragMode(JDesktopPane.OUTLINE_DRAG_MODE);
    //this.setContentPane(mainPane);
    this.getContentPane().setLayout( new BorderLayout() );
    this.getContentPane().add(new ToolBar(), java.awt.BorderLayout.NORTH);
         this.getContentPane().add(mainPane, java.awt.BorderLayout.CENTER);
         /*********** END CHANGE ****************/
    //===================================================================
    // ToolBar (private class)
    //===================================================================
    private class ToolBar extends JToolBar implements ActionListener
    /* Create toolbar buttons */
    private JButton newBox;
    private JButton load;
    private JButton save;
    Creates an un-named toolbar,
    with New, Load, and Save options.
    public ToolBar () {
    Use to make toolbar look nice later on
    ImageIcon imageNew = new ImageIcon("imgNew.gif");
    JButton toolbarNew = new JButton(imageNew);
    ImageIcon imageLoad = new ImageIcon("imgLoad.gif");
    JButton toolbarLoad = new JButton(imageLoad);
    ImageIcon imageSave = new ImageIcon("imgSave.gif");
    JButton toolbarSave = new JButton(imageSave);
    temp toolbar buttons for now
    newBox = new JButton("New");
    load = new JButton("Load");
    save = new JButton("Save");
    this.setFloatable(false);
    this.setOrientation(JToolBar.HORIZONTAL);
    this.add(newBox);
    this.add(load);
    this.add(save);
    newBox.addActionListener(this);
    load.addActionListener(this);
    save.addActionListener(this);
    Checks for button presses, and calls the relevant functions
    public void actionPerformed (ActionEvent event)
    Object source = event.getSource();
    /* If new has been clicked */
    if (source == newBox)
    TextDisplayFrame textBox = new TextDisplayFrame();
    Rectangle rect = mainPane.getBounds();
    /*********** CHANGED HERE ****************/
    //textBox.setBounds( rect.x - INSET, rect.y - INSET, rect.width - (INSET * 2), rect.height - (INSET * 2) );
    //this.getParent().add(textBox);
    mainPane.add(textBox, javax.swing.JLayeredPane.DEFAULT_LAYER);
    textBox.setBounds(rect.x, rect.y, 500, 500);
    /*********** END CHANGE ****************/
    textBox.setVisible(true);
    /* If load has been clicked */
    else if (source == load)
    TextDisplayFrame textBox = new TextDisplayFrame();
    frame.getContentPane().add(textBox);
    System.out.println(textBox + "");
    textBox.loadDoc();
    /* If save has been clicked */
    else if (source == save)
    //====================================================================
    // Menu (private class)
    //====================================================================
    private class Menu extends JMenu
    public Menu()
    JMenuBar menuBar = new JMenuBar();
    JMenu menu = new JMenu("Document");
    menu.setMnemonic(KeyEvent.VK_D);
    JMenuItem menuItem = new JMenuItem("New");
    menuItem.setMnemonic(KeyEvent.VK_N);
    menuItem.addActionListener(new ActionListener()
    public void actionPerformed(ActionEvent e)
    TextDisplayFrame textBox = new TextDisplayFrame();
    //this.getContentPane().add(textBox);
    menu.add(menuItem);
    menuBar.add(menu);
    menuBar.setVisible(true);
    //====================================================================
    // TextDisplayFrame (private class)
    //====================================================================
    private class TextDisplayFrame extends JInternalFrame
    /** The Default Title of an internal pane */
    private static final String DEFAULT_TITLE = "untitled";
    /** Path to the current File */
    private File filePath = new File ("C:" + File.separatorChar + "test.txt");
    /* Swing Components */
    private JTextArea mainTextArea;
    private JScrollPane scrollPane;
    Creates a TextDisplayFrame with the given arguments
    @param title Title of the TextDisplayFrame
    public TextDisplayFrame(String title)
    super(title, true, true, true, true); //creates resizable, closable, maximisable, and iconafiable internal frame
    this.setContentPane( textBox() );
    this.setPreferredSize( new Dimension (150, 100) );
    /*********** CHANGED HERE ****************/
    //this.setMaximumSize( new Dimension (300, 300) );
    this.setNormalBounds(new Rectangle(300,300));
    /*********** END CHANGE ****************/
    this.setVisible(true);
    Creates a resizable frame with the default title
    public TextDisplayFrame()
    this(DEFAULT_TITLE);
    Creates a blank, resizable central text area, for the entering of text
    @return Returns a JPanel object
    private JPanel textBox()
    mainTextArea = new JTextArea( new PlainDocument() );
    mainTextArea.setLineWrap(false);
    mainTextArea.setFont( new Font("monospaced", Font.PLAIN, 14) );
    scrollPane = new JScrollPane( mainTextArea );
    JPanel pane = new JPanel();
    BorderLayout bord = new BorderLayout();
    pane.setLayout(bord);
    pane.add("Center", scrollPane);
    return pane;
    @return Returns a JTextComponent to be used as document object
    public JTextComponent getDoc()
    return mainTextArea;
    public void loadDoc()
    /* Create blank Document */
    Document textDoc = new PlainDocument();
    /* Attempt to load the document in the filePath into the blank Document object*/
    try
    Reader fileInput = new FileReader(filePath);
    char[] charBuffer = new char[1000];
    int numChars;
    while (( numChars = fileInput.read( charBuffer, 0, charBuffer.length )) != -1 )
    textDoc.insertString(textDoc.getLength(), new String( charBuffer, 0, numChars ), null);
    catch (IOException error) {System.out.println(error); }
    catch (BadLocationException error) {System.out.println(error); }
    /* Set the loaded document to be the text of the JTextArea */
    this.getDoc().setDocument( textDoc );

  • HP Office jet pro scanning size issue

    I have a HP Officejet Pro 8500
    When scanning to my computer to a .pdf it always results in an 8.5x14 document not an 8.5x11 document
    (and this happens regardless of whether I scan a book page with the scanning lid open or an 8.5x11 single page original with the scanning lid closed)
    Using the HP solution center Scan Settings - I cannot find any possible place to change the default settings to force it to scan to an 8.5x11 size
    I have looked at the Adobe help which tells me to find the place to change my scanning default settings (under File -> Create) but I do not have a Create option under my File menu in Adobe (I believe I just have the basic Adobe reader)
    And I cannot see how to change the properties of  .pdf in Adobe to change the size from 8.5x14 to 8.5x11
    I have no idea where else to look to figure out how to fix this
    Anyone have any other ideas?
    (and I am running an HP computer with Windows 8.1)
    Thanks.

    Hello there! Welcome to the forums @SKMgherkin ,
    I read about how you cannot scan in letter size and only in legal size from your Officejet 8500 model. I will certainly do my best to help you out!
    I would like to ask if you could post me back a screen shot of the scan size settings you are able to see in the Solution Center software.
    Also try running the Print and Scan Doctor tool to see if the tool will correct the settings in the software.
    Hope to hear from you!
    R a i n b o w 7000I work on behalf of HP
    Click the “Kudos Thumbs Up" at the bottom of this post to say
    “Thanks” for helping!
    Click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution!

  • Short dump-internal table size issue

    Hi,
    I get the following message in the short dump analysis for a report.
    No storage space available for extending table "IT_920".
    You attempted to extend an internal table, but the required space was not available.
    Error Analysis:
    The internal table "IT_920" could not be enlarged further.             
    To extend the internal table, 9696 bytes of storage space was          
    needed, but none was available. At this point, the table "IT_920" has  
    1008240 entries.
    Its an old report and I saw the internal table declaration using the "OCCURS" clause in the internal table declaration.
    begin of itab occurs 100.
    end of itab.
    I tried the option of changing to "OCCURS 0", still issue persists.
    Any help would be highly appretiated
    CM

    Hello CMV,
    This is basic problem with SAP internal tables. For every internal table memory is alocated ( Max..256K)...once you cross the memory size/limit of the internal table it resuls in short dump.
    Only way to overcome this problem is handle limited number of records at a time.. 
    Please refer following sample code which will help you to avoid short dump while processing large number of records....
      SORT TAB_RESULT.
      DESCRIBE TABLE TAB_RESULT LINES W_RECORDS.
      W_LOW      = 1.
      W_UP       = 1000.
    *Spliting the records from tab_result1 by pakage of 1000 at a time
    *to avoid short dump in case of more records
      WHILE W_LOW <= W_RECORDS.
        R_PKUNWE-SIGN = 'I'.
        R_PKUNWE-OPTION = 'EQ'.
        R_WERKS-SIGN = 'I'.
        R_WERKS-OPTION = 'EQ'.
        LOOP AT TAB_RESULT FROM W_LOW TO W_UP.
          MOVE TAB_RESULT-PKUNWE TO R_PKUNWE-LOW.
          MOVE TAB_RESULT-WERKS  TO  R_WERKS-LOW.
          APPEND R_PKUNWE.
          APPEND R_WERKS.
        ENDLOOP.
    *fetch sold to party
         SELECT KUNNR NAME1
           FROM KNA1
           APPENDING CORRESPONDING FIELDS OF TABLE TAB_KNA1
           WHERE KUNNR IN R_PKUNWE.
    *fetch plant
      SELECT WERKS NAME1
             FROM T001W
             APPENDING CORRESPONDING FIELDS OF TABLE TAB_T001W
             WHERE WERKS IN R_WERKS.
       REFRESH: R_PKUNWE,
                R_WERKS.
        W_LOW = W_LOW + 1000.
        W_UP  = W_UP  + 1000.
      ENDWHILE.
    Hope this will help you to solve problem.
    Cheers,
    Nilesh

Maybe you are looking for

  • My 2011 Macbook Pro OSX 10.8.4 latest update won't connect to secured Wi-fi

    2011 Macbook Pro OSX 10.8.4 latest updates Suddenly stopped connecting to any wireless network which is secured, WEP/WPA/WPA2/personal/enterprise all do NOT work. Connects to unsecured networks just fine. For example, our wireless password is: 123456

  • 'Windows cannot install required files' error while installing Vista SP1

    I'm installing Vista Client SP1 on my Macbook pro and getting the following error: Windows cannot install required files. Make sure all files required for installation are available, and restart the installation. Almost exactly as described in this K

  • Can't delete folder (or files in it) - VERY strange issue

    ok i know there's been tons of questions about how to delete/force delete a troublesome file or folder. believe me, i searched, i've tried them all, and still, i couldn't solve it. here's my problem: a) 4 files, in a folder called "as". - 06Jacksons

  • Can't drag ringtone into sidebar

    Hi all, Following previous advice on this column I have created a ringtone (.m4r file) but can't drag it into the ringtone sidebar in itunes. As a consequence, can't use it on iphone! Please help!

  • Adjustment layer as parent?

    Hi, Is it possible to make lots of layers point to one adjustment layer to dictate iwhich effects it has? I have tried using a Null layer - doesn't seem to work, Nor do adjustment layers. I am just really playing around with curves, hue sat and remov