Sizing a JPanel on its contents

Hi everybody,
Does anyone know of a way to resize a JPanel around its contents? I have a panel that will be filled with 3, 5, or 7 lines of text, depending on a button click, and I'd like the panel to size appropriately on the button click. Is there a way to do this? I already have working code, working buttons, working lines, everything, but I just don't know how to do the resizing on demand. If anyone could point me in the right direction, I'd appreciate it.
Thanks,
Jezzica85

Thanks Darryl,
It looks like you posted just ahead of me, I was whipping up a SSCCE. For some reason, revalidate() isn't doing the job; it's probably something weird I'm doing, maybe this will help :
import java.awt.BorderLayout;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
public class ResizeTest extends JPanel {
    private int entries;
    private static final long serialVersionUID = 5290537936355330083L;
    public ResizeTest( int number ) {
        entries = number;
        create();
    public void changeEntries( int entries ) {
        this.entries = entries;
        removeAll();
        create();
        revalidate();
        repaint();
    private void create() {
        setLayout( new GridLayout( entries, 1 ) );
        for( int i = 0; i < entries; i++ ) { add( new JLabel( "Line" ) ); }
        revalidate();
    // testing
    public static void main( String args[] ) {
        final ResizeTest panel = new ResizeTest(5);
        JPanel buttonPanel = new JPanel( new GridLayout( 1, 7 ) );
        for( int i = 3; i <= 15; i+=2 ) {
            JButton button = new JButton( "Change to " + i );
            final int blah = i;
            button.addActionListener( new ActionListener() {
                public void actionPerformed( ActionEvent e ) {
                    panel.changeEntries( blah );
            buttonPanel.add( button );
        JFrame frame = new JFrame();
        frame.setLayout( new BorderLayout() );
        frame.add( panel );
        frame.add( buttonPanel, BorderLayout.SOUTH );
        frame.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
        frame.pack();
        frame.setLocationRelativeTo( null );
        frame.setVisible( true );
}Thanks,
Jezzica85

Similar Messages

  • Sizing a TextView to fit its contents (e.g., tooltip, chat bubble, etc.)

    In Flex 3, with a Text component, I can make the component fit its contents (use case: multi-line tooltip, chat-bubble) so that I restrict the max width and the height grows as necessary.<br /><br />To do this in Flex 3, you need to patch the Text component, e.g.<br /><br /><?xml version="1.0" encoding="utf-8"?><br /><mx:Text xmlns:mx="http://www.adobe.com/2006/mxml"><br />     <!--<br />          Text fields do not wrap correctly as reported in this bug:<br />          https://bugs.adobe.com/jira/browse/SDK-12826<br />          <br />          This fix, suggested by Mike Schiff, fixes the issue, so that we can set a minWidth of 0, <br />          maxWidth, and width=100% and have speech bubbles correctly size themselves.<br />          https://bugs.adobe.com/jira/browse/SDK-12826#action_157090<br />     --><br />     <mx:Script><br />          <br />               override protected function updateDisplayList(unscaledWidth:Number, unscaledHeight:Number):void {<br />                    super.updateDisplayList(unscaledWidth, unscaledHeight);<br />                    textField.wordWrap = textField.wordWrap || (Math.floor(measuredWidth) != Math.floor(width)); <br />               }<br />          <br />     </mx:Script><br /></mx:Text><br /><br />Then you can:<br /><br /><naklab:TextWithWrap<br />    htmlText="{someText}"<br />    width="100%"<br />    maxWidth="220"<br />    minWidth="0"<br />    fontWeight="normal"<br />    fontSize="12"<br />    color="#000000"<br />/><br /><br />I cannot find a way to do this with the TextView component in Gumbo. How would you recommend making a TextView component fit its contents and should I file an ECR on this or am I missing something? (Otherwise, how would you handle the use cases above in Gumbo?)<br /><br />Thanks,<br />Aral

    OK, the forum ate my code :(
    Not sure how to get it to display. Feel free to close the topic as it doesn't make sense. I'll ask elsewhere.
    Thanks,
    Aral

  • Fitting JPanel perfectly inside content pane of JFrame

    Say I have a JPanel with size W x H that I want to add to a JFrame such that the JFrame will be sized as small as possible while still fitting the panel inside its content pane. Is there a method in JPanel that I can overwrite or a specific method of adding to a JFrame that I can use to accomplish this, or do I need to calculate the JFrame's size with getInsets()?
    Thanks.

    If I do this...
    JFrame frame = new JFrame("Pack Test");
    JPanel panel = new JPanel();
    panel.setSize(300, 300);
    frame.add(panel);
    frame.pack();
    frame.setVisible(true);...the resulting content pane is most definitely not 300x300 pixels. What am I doing wrong?

  • Autoresize JPanel to fit contents

    Hello!
    How can i make a JPanel set its dimensions so that it adapts to its contents?
    If I don't set its max, min or preferred size, it's so little it doesn't show the components it has inside..
    Thank you

    Here is the example!
    import java.awt.*;
    import javax.swing.*;
    public class Example extends JFrame
         private JPanel p;
         private JLabel label1;
         private JTextField text;
         private JLabel label2;
         public Example()
              super("Example");
              p = new JPanel();
              SpringLayout layout = new SpringLayout();
              p.setLayout(layout);
              p.setBorder(BorderFactory.createTitledBorder("Panel 1"));
              text = new JTextField("Textfield", 20);
              label1 = new JLabel("Label 1");
              label2 = new JLabel("Label 2");
              p.add(label1);
              p.add(text);
              p.add(label2);
              layout.putConstraint(SpringLayout.NORTH, label1, 10, SpringLayout.NORTH, p);
              layout.putConstraint(SpringLayout.WEST, label1, 10, SpringLayout.WEST, p);
              layout.putConstraint(SpringLayout.WEST, text, 10, SpringLayout.EAST, label1);
              layout.putConstraint(SpringLayout.NORTH, text, 10, SpringLayout.NORTH, p);
              layout.putConstraint(SpringLayout.WEST, label2, 10, SpringLayout.WEST, p);
              layout.putConstraint(SpringLayout.NORTH, label2, 10, SpringLayout.SOUTH, text);
              Container content_pane = getContentPane();
              content_pane.add(p);
              pack();
              setVisible(true);
         public static void main(String[] args)
              new Example();
    }What happens is that the size of panel p is too small to show the components inside of it. It's something related to SpringLayout. If I use FlowLayout instead (or if I set the panel's preferred size) the panel's dimensions grow enough to let its content be visible.
    Does anybody know how to solve this problem?
    Thanks to everyone!

  • I used to have an application in my iPhone 4 and 4s that captures business card and creates its content to my contacts. Its no longer working with my i5. Can you recommend me a new apps for this same function

    I used to have an application in my iPhone 4 and 4s that captures business card and creates its content to my contacts. Its no longer working with my i5. Can you recommend me a new apps for this same function

    Try CardMunch it works well for me

  • [ADF] stetching/shrinking PanelBox to match its content weird

    On my page I have two panel boxes.
    Altrough thay has similar content (tree) - for some reason top is much bigger then the bottom one and do not change its height according to its content.
    Second panel is working good, but it stretching to some limit.
    I need both Panels to have minimal height, stretching according to its content.
    How to?
    Screens to discribe:
    [pic1|http://imageshack.us/a/img233/2465/pic1yfc.jpg]
    [pic2|http://imageshack.us/a/img692/8352/pic2bk.jpg]
    Page code is:
    <f:facet name="first">
    <af:panelStretchLayout id="psl2" endWidth="300px">
    <f:facet name="center">
    <af:panelFormLayout id="pfl1">
    *....read-only form here*
    </af:panelFormLayout>
    </f:facet>
    <f:facet name="end">
    <af:panelStretchLayout id="psl3">
    <f:facet name="center">
    <af:panelGroupLayout layout="scroll" id="pgl2">
    <af:panelBox text="PanelBox2" id="pb2">
    <f:facet name="toolbar"/>
    <af:tree ... styleClass="AFStretchWidth">
    *...tree code here*
    </af:tree>
    </af:panelBox>
    <af:panelBox text="PanelBox1" id="pb3">
    <f:facet name="toolbar"/>
    <af:tree ... styleClass="AFStretchWidth">
    *...tree code here*
    </af:tree>
    </af:panelBox>
    </af:panelGroupLayout>
    </f:facet>
    </af:panelStretchLayout>
    </f:facet>
    </af:panelStretchLayout>
    </f:facet>

    Thank you for pointing. My bad.
    The problem was solved by setting PartialTriggers of panelBox to its content tree
    but now I have anoter trouble, its not connected I think, but...
    If no data in TreeModel of tree, I get doubeling of "No data to display". So my tree is looks like
    No data to display
    No data to display
    On refresh it writing "No data to display" and then for a half of second i get hint like "Gethering data" and then second "No data to display" appears.
    What it could be coused by?

  • I backed up my old core 2 duo imac and and was trying to transfer files to my new 2011 imac and when i go to oppen a folder from what i transferred it says "The folder "Music" can't be opened because you don't have permission to see its contents."?

    I backed up my old core 2 duo imac and and was trying to transfer files to my new 2011 imac and when i go to oppen a folder from what i transferred it says "The folder “Music” can’t be opened because you don’t have permission to see its contents".  Why cant i access the files from my old mac?  I tried the time machine and that isnt working either.  I have files that I need to use on my new mac, all my old programs and such.  I thought they said it was easy to get your files from one mac to another.  Please help.

    Your account names are probably different on the two Macs. If you know the UNIX command line, open a terminal window and run:
    $ id 
    You should see a line that starts with something like this:
    uid=501(your_user_id_here)
    now check the owner of the folder you copied over:
    $ ls -ld Music
    drwx------+ 8 some_user_id_here  staff  272 May 14 16:08 Music
    Do the IDs match? If not, you could change the ownership. Say your id is "johnsmith"
    $ chown -R johnsmith Music
    Now try and access it with iTunes.

  • Document Creation error - "We're sorry. We can't open document name because we found a problem with its contents"

    Morning Friends,
    I have created a SharePoint 2010 "Site Workflow" that is designed to take information from a form and create a Word doc with the gathered information and store this Word doc in a document library.
    I am using Sharepoint 2013 with Office 2013 
    I understand there are a lot of steps (19) outlined below and I can provide more information as needed but the bottom line is this, workflow successfully takes info from an initiation form, uses the info to create a Word doc. Places this Word doc in a library.
    When attempting to open / edit doc, receive error
    "We're sorry. We can't open <document name> because we found a problem with its contents"
    Details - No error detail available.
    Any info or advice would be greatly appreciated. 
    Very high level view of what I have done:
    1 - Created content type called "Letters"
    2 - Added site columns " First Name" and "Last Name"
    3 -  Created and saved to my desktop a very basic Word document (Letter.docx) that says "Hello, my name is XXXX XXXX"
    4 - In the advanced settings of the "Letters" content type I uploaded this "Letter.docx" file as the new document template.
    5 - Created a new document library called "Letters"
    6 - In Library Settings - Advanced Settings, clicked "Yes" to enable the management of content types.
    7 - Then I clicked "Add from existing content types" and added the "Letters" content type
    8 - Back in the advanced settings of the "Letters" content type I selected "Edit Template" and replaced the first XXXX with the Quick Part "First Name" and the second XXXX with the Quick part "Last Name"
    9 - Created a new 2010 Site workflow called "Create a Letter"
    10 - To the workflow I added the action "Create List Item"
    11 - Configured the action to create Content Type ID "Letters" in the document library "Letter" 
    12 - For the "Path and Name" I gave it a basic name of "Letter to"
    13 - The next step was to create the Initiation Form Parameters and added to form entries "First Name" and "Last Name"
    14 - I then linked the initiation form fields to the data source "Workflow Variables and Parameters" to their respective Field from Source parameters
    15 - Went back to the "Path and Name" and modified the basic name of "Letter to" to include the first and last name parameters.
    16 - Saved - published and ran the work flow.
    17 - As expected, Initiation Form prompts for First and Last Name. ("John Doe") Then click "start
    18 - Go to document library "Letters" and see a new Word document created titles "Letter to John Doe" 
    19 - Go to open / edit the Word document and receive the following error
    thoughts? Any info or advice would be greatly appreciated. 

    See this MS support article for SP2010 workflows and generating Word docs:
    https://support.microsoft.com/kb/2889634/en-us?wa=wsignin1.0
    "This behavior is by design. The Create
    List Item action in the SharePoint
    2010 Workflow platform can't convert Word content type file templates to the correct .docx format."
    I've had success in using SP 2013, Word 2013 (saving a .docx as the template instead of .dotx for the document library content type), and an SP 2010 workflow using SP Designer 2013.

  • How can I  sync without losing content of my ipod and transfer its contents to itunes library

    How can I sync my ipod classic w/o losing content and therefore able to transfer its content to the itunes library?

    See this older post from another forum member Zevoneer covering the different methods available for copying content from your iPod back to your computer and into iTunes.
    https://discussions.apple.com/thread/2452022?start=0&tstart=0
    B-rock

  • HT201250 i'm getting message: can't be opened because you don't have permission to see its contents. and he operation can't be completed because an unexpected error occurred (error code -8003).

    I took my computer in to have the Backup restored onto my computer after having a new harddrive put onto my 1year 1/2 old MacBook Pro. When i got it home there was a new User that i had to logout of to getting into my normal user. Don't know why this was, just figured the Mac guys that installed my backup did this for some odd reason. Today i could not open any of my files in the backup on the time machine. All the folder had line going thought them and when i clicked on them I revieved this message: can’t be opened because you don’t have permission to see its contents. After talking with that same mac store. I decided to just delete all the files out of the time machine as it was just put back on my computer and i have everything i need. Hours later when i tried to empty the trash i got this messsage: the operation can’t be completed because an unexpected error occurred (error code -8003).
    Any advise how to fix my problem?
    thanks in advance

    While you see a single trash can, in reality there are trash folders on each mounted volume.  I don't use TM but what you are describing implies that a TM drive is no different with the way trash is treated.  So when the TM is unmounted the trash folder on there is gone and thus the trash looks empty.  Remount the drive, the trash folder on it now causes the trashcan to look like something is in it.
    If TrashIt! could not remove the file, I'm sorry, you will need to use the terminal.  We can do this one step at a time so you only have to copy/paste the lines into terminal (except the first time).  So launch Terminal (in utilities).  You might want to make the window that is shown a bit larger with the grow box since it's pretty small.
    This first line is the only exception to the copy/pasting since you have to enter some information.
    sudo ls -laR /Volumes/your-TM-volume-name/.Trashes
    where your-TM-volume-name is the name of your TM volume.  That's the part you have to fill in since I don't know it.
    When you hit return the sudo in that command will cause a prompt for your admin password.  Enter it and hit return again.  Note the password will not be shown as you type it.  Post the results so I can tell you what to do next.
    Note this ls command is not doing anything but listing the files in the TM's .Trashes folder.  Remember I said each drive has it's own trash folder.  .Trashes is it.

  • How to copy a page( webpart page) with its content using client side.

    How to copy a page(in my case  webpart page) with its content(it may contain webparts) using client code (i mean using SPservices or ECMA script).
    What i am planning is ,to give end user a page where it will contain text box to specify  name of page and a button with the help of  content editor webpart.
    where on click of button we need to write client side code such that it should create a new page from a existing page in a library with given name by user.
    Any suggestion would be helpful. For your information we can do it through UI with the help Site Actions / Manage Content and Structure.But i want to automate it using client side code.Server side code is restricted.
    or can we create a template of an existing page with content without the help of sharepoint designer.
    Thanks in advance
    with regards Ravichandra

    This is good example
    http://balajiindia.wordpress.com/2011/05/27/using-jquery-with-custom-web-services-in-sharepoint/
    Create web service
    http://balajiindia.wordpress.com/2011/05/27/using-jquery-with-custom-web-services-in-sharepoint/. Create method "Create Page" http://www.learningsharepoint.com/2010/09/17/create-publishing-pages-sharepoint-2010-programmatically/
    Build your Java Script. You can use Content Editor Web Part if you want to avoid custom web part development http://www.codeproject.com/Articles/544538/JQuery-with-SharePoint
    Oleg

  • This item cannot be displayed in the Reading Pane. Open the item to read its contents Outlook 2013

    One of Outlook 2013 of Office Home and Business in Windows 7 Pro 64bit who is connecting to a local Exchange 2010 server is having the following error:
    This item cannot be displayed in the Reading Pane. Open the item to read its contents.
    When launching Outlook, it seems work fine. If user click other folders and click Inbox again. The error comes out. It only happens on Inbox folder.
    I have tried the followings with no luck.
    1. Rebuilt new Outlook profile.
    2. Rebuilt new Windows profile + Outlook profile.
    3. Disabled all add-ins.
    There are 2 ways I can make it work.
    1. I disabled "Cache Mode", then it starts working well. 
    2. Start Outlook with outlook.com /safe.
    So the question is why in Cache mode, Outlook 2013 cannot display the item in reading pane. 
    Any hint will be appreciated.
    CliffZ

    CliffZ,
    One hint: Do an offline virus scan on the affected computer:
    1. Check if your computer has a 32- or a 64-bit system. Right-click on Computer icon, choose Properties. System type reveals the bitness.
    2. Download the appropriate virus scanning version from http://windows.microsoft.com/en-US/windows/what-is-windows-defender-offline
    Note: If you're on Windows 8.1: http://windows.microsoft.com/en-us/windows/what-is-windows-defender-offline-beta
    3. Insert a USB stick with nothing important on. Observe the drive letter (F:, G: etc ...) assigned to it.
    4. Start the downloaded program and follow the instructions. Note: Choose the correct drive letter from 3 above.
    5. Restart your computer so it will boot from the USB stick. Depending on computer brand you can often press F12 to get a boot menu.
    Sometimes you have to enter BIOS to tell the computer to boot from USB if present.
    The quick scan starts. Abort it and select Full Scan.
    Let it run overnight.
    Regards Pete

  • As a new MacBook user I plug in my USB Flash Drive but don't know how to access its contents. Please help. Thanks.

    as a new MacBook user, when inserting my USB Flash Drive, I do not know how to access its contents. Please help. Thanks.

    Open a new Finder window, Finder > File > New Finder Window, and it should appear on the left under Devices.
    If you don't see it there, or to get it to show up on the Desktop: Finder > Preferences... General tab, check External disks to have it show on the Desktop,  Or Sidebar tab, check External disks under DEVICES.

  • Can no longer access folders on my network. The folder can't be opened because you don't have permission to see its contents.

    Every since I nstalled maverick I have not been able to open folders through my home network. A dialoge box says
    The folder  can’t be opened because you don’t have permission to see its contents. I have always used an open network and never had issues. Now the strange part is I can open files if I use photoshop or illustrator to access them but I need to access all files not just select ones using a program.I have many shared folders on my network for everyone to access work files, none of them are working. I am running a dual system network with PC's and Macs.The files are, and always have been, located on an external drive attached to the primary PC as a shared drive.  PLEASE HELP

    https://discussions.apple.com/message/20971272#20971272

  • Mac OS 10.5 /  I deleted the " Private" folder ... and emptied the trash. So the folder and its contents no longer exists on my computer at all !!!  I do have the OS dvd that i purchased years ago...  But my computer will not start from it on its own. My

    Mac OS 10.5 /
    I deleted the " Private" folder ... and emptied the trash. So the folder and its contents no longer exists on my computer at all !!!
    I do have the OS 10.5 dvd that i purchased years ago...
    But my computer will not start from it on its own.
    My question is what is the open source or terminal language code used to tell my mac to look in the DVD rom drive for startup info?  I know that im not the only person in this world who has deleted the "PRIVATE" folder and emptied the trash so it no longer exists on their machine...
    That said theres gotta be a common fix for a Power PC G4 that has the OS X dvd in the rom drive but wont look to it to reinstall the vital contents of the PRIVATE folder.
    Once again there is not a copy of this file or its contents in the recycle bin...
    Also rebooting the machine , pressing and holding the letter C does not prompt the machine to look to the dvd rom drive.
    I was reinstalling pro tools and figured I would make some room by cleaning my computers HD...
    Lol It was a bad choice to delete this file ...
    Thanks guys

    Okay sorry it took forever to respond... But for a while there I gave up on this computer!!!!
    Money's been tight lately , so taking it in to a professional was not yet an option... though I did consider it eventhough.
    Anyway long story short im glad I didnt spend any money because I already had all the tools necessary to fix this issue but was going about it in the wrong way. Okay so here is my scenario and the breakdown... Though this may not fix the issue for everyone :( which *****... But I know we all will have different circumstances.
    Anyway here we go...
    Okay so first things first....  Years ago I purchased the OS 10.5.1 disk ... So that has always been in my possession!!!!
    I realize that some may not have a disk to reflash your OS to your hard drive... but if you do your in luck.
    2ndly ... I had an external harddrive with all of my itunes downloaded music so it was more than okay with me to delete my primary HD because all the important stuff could either be copied over or repathed to be located.
    -------If you dont want to read through the whole story the fix is summed up in the bottom section-------
    Okay so now the SOLUTION!!!!
    By trial and error , and pure boredom I opened up my computer to clean the inside...
    AND
    "Disconnected the primary HD"
    and just because ....... REBOOTED my computer. Just to see what it would do.
    Upon restart and though it looked like it would repeat its usual cycle...
    About 1 minute in to that process my computer froze for about 2 seconds and flashed to the OS installation screen.
    Mind you I havent seen this screen yet... Probably hasnt been since I installed the OS years ago.
    After a bit of trial and error...
    I decided to tell my computer to startup from the OS 10.5 disk located in my dvd rom drive and restarted once again...
    this setting is under
    Utilities / startup disk
    After a little more trial and error ... I realized that I could reconnect the primary HD , restart the machine and return to the OS installation menu.
    So upon this discovery
    I went to the Disk Utility located under Utilities
    Highlighted my primary HD located in the left hand column
    Once highlighted ...
    In the heading section on the right I selected the option
    Erase
    in which I erased My current OS on my primary HD ...
    I used the first option in the list under security... Because it seemed like the least invasive and would take the least amount of time to see if this process would actually work.
    I FORGOT to add something... 
    Another reason why I deleted my primary HD!!!!!
    I forgot to say that it WOULD NOT!!!!! Show up in the STARTUP list as an option...Even After multiple reboots....
    But like clockwork... Once I deleted its name IT SHOWED UP as an option!!!!
    So back to the next step...
    I returned to the STARTUP option under utilities ... And was then able to see MY primary HD now as a startup option...
    But ofcourse it had no name because it we previously erased it.
    So when Clicking my newly erased HD ... I was almost immediately prompted to REINSTALL the OS ...
    Which said it would take about 57 minutes ... But I believe was alot less...
    My issue was resolved ... My computer then stated the install was SUCCESSFUL!!!!!!! :))))))))))) lol ;)
    It was like I was setting up for the first time ;) asking for my registration info...
    The dilemma of deleting the private folder and emptying the trash is finally over resolved. Done ... and no extra money spent!!!!!!!!! 
    Its really crazy that the information for such a simple thing is not readily available. Especially being such a simple fix.
    I know im not the only person who's had this issue , because i've seen numerous posts with similar wording.
    I also know I wont be the last person to have this issue... So I hope this synopsis makes sense.
    -------One more time the fix------
    *Insert your OS dvd into your dvd rom drive.
    *Unplug your primary HD or corrupted startup disk
    *Reboot your machine...
    Upon restart your primary HD will not be recognized...
    * you will then be prompted to select your language.
    Once selected
    *Click Utilities/startup... Highlight the the selection that refers to the OS dvd located in the dvd rom drive.
    * Click restart...
    !!!!!!!!!!Be sure to reconnect your Primary HD Before your computer restarts and you hear the chime!!!!!!!!
    If you do not replug your HD before the chime it will not be recognized.
    In that case restart again.
    Upon restart once again
    *Choose your language...
    *Click Utilities / disk utility
    In the left column select and
    *Highlight your HD ...
    Then towards the top portion / center of the page
    *Click the heading Erase
    Then on the page toward the bottom
    *Click security options
    This will then provide erase options.
    I USED THE FIRST OPTION
    "Dont erase data"...
    *click OK
    * click erase...
    Once erased which should take a few seconds
    *Cancel the disk utility...
    * Click Utilities / startup
    And your newly erased HD should now appear in the list.
    * Select your drive from the list by highlighting
    It should no longer have a name.
    *Once selected, you will then be prompted to restart and install the OS to your newly erased HD...
    Thats it!!!!
    Once everything reinstalls re-add your personal info or registration info and you are up and running.
    Goodluck ;)

Maybe you are looking for

  • Tags in Elements 11

    The names of  tags imported into Elements 11 from 4 show on the right of the screen. However they only show the taggged files when I click on one when I am in the Albums view on the left of the screen not when I am in the folder view? Am very new to

  • While posting Asset acquisition.........

    Hi Gurus, I am posting document (F-90). It is giving following Error "SYST: Abnormal termination (T_ANLB not equal to T_ANLC) Asset AUDL 000000040254-00" Please clarify this.  This is very urgent Thanks Krishna

  • Printing on both side of the form page front and back

    Hi experts,              while developing a purchase order i have come across a requirement to print on both sides of the page on the front side i wont to print the normal calculation and on the back side i have to print the terms and condition of th

  • How to change the screen resolution in Sparc workstation.

    I am using the CDE screen to login. I need to set the screen resolution to 1100*864. How to set? solaris 10 current setting is 1280*1024.

  • SAP GRC Access Control 5.3 .TXT - where to upload it

    Hi Experts, can anyone please tell me, I have to deploy/upload the patch: SAP GRC Access Control 5.3 .TXT SP04 As I am new to GRC, can somebody please tell me where I upload/deploy this file. Is it on the server at operating system level, or through