Setting size.... goes terrible wrong

Dear mr. java,
I have some troubles of setting the size of my JPanels... I thought I just could with setsize(), but that doesn't work... If I run my code now, I have a very wide window. with very big buttons.
Also In my left panel I added GridBagLayout (I thought that would solve the problem) but It doesn't stay fixed, the buttons doesnt do wath Im telling them.
In short it doesnt do anything I tell him about placement and sizing :-s!
Some poeple have any idea?
my code:
import javax.swing.BoxLayout;
import javax.swing.DefaultComboBoxModel;
import javax.swing.DefaultListSelectionModel;
import javax.swing.JButton;
import javax.swing.JComponent;
import javax.swing.JFileChooser;
import javax.swing.JFrame;
import javax.swing.JFrame.*;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JRadioButton;
import javax.swing.JSpinner;
import javax.swing.JTabbedPane;
import javax.swing.JTextArea;
import javax.swing.JTextField;
import javax.swing.JWindow;
import javax.swing.ListModel;
import javax.swing.SpinnerListModel;
import javax.swing.JTextPane;
import javax.swing.ButtonGroup;
import javax.swing.JList;
import javax.swing.JMenuItem;
import javax.swing.JPopupMenu;
import javax.swing.JScrollPane;
import javax.swing.SwingUtilities;
import java.awt.BorderLayout;
import java.awt.Button;
import java.awt.Color;
import java.awt.Component;
import java.awt.Container;
import java.awt.FlowLayout;
import java.awt.Frame;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.GridLayout;
import java.awt.Panel;
import java.awt.PopupMenu;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.awt.Insets;
import javax.swing.WindowConstants;
import javax.swing.JFileChooser;
import java.io.*;
import java.util.*;
import javax.swing.border.TitledBorder;
import javax.swing.border.LineBorder;
public class Buttons3 extends JFrame {
     private JTextArea progress;
     private JButton Analyse;
     private JButton parameters;
     private JPanel files;
     private JTextField filename;
     private JButton browse;
     private JRadioButton SDDS;
     private String filenamepub;
     private JLabel name;
     private JPanel data;
     private JTabbedPane tab;
     private JList listraw;
     private JList listanal;
     private JPanel graph;
     private JTextArea plot;
     private JPanel info;
     private JButton test;
     public static void main (String args[]){
          new Buttons3();
     public Buttons3(){
          super("main Window");
          Container content = getContentPane();
     content.setBackground(Color.lightGray);
     JPanel analyse = new JPanel(new GridLayout(3, 1));
     GridBagConstraints gbc = new GridBagConstraints();
     gbc.fill = GridBagConstraints.BOTH;
                    Analyse = new JButton("Analyse");
                    gbc.gridy = 0; // telling where the row start
                    gbc.gridx = 0; // telling at which column
                    gbc.gridwidth = 1; // number of columns
                    gbc.gridheight = 1; // number of rows     
                    gbc.weightx = gbc.weighty = 0.0;
                    analyse.add( Analyse,gbc); // adding the button
                    Analyse.addActionListener(
                              new ActionListener()
                                   public void actionPerformed (ActionEvent event)
                                             DriveCall god_lin = new DriveCall();
                    gbc.gridy = 1; // telling where the row start
                    gbc.gridx = 0; // telling at which column
                    gbc.gridwidth = 1; // number of columns
                    gbc.gridheight = 1; // number of rows
                    gbc.weightx = gbc.weighty = 0.0;
                    parameters = new JButton("Parameters");
                    analyse.add( parameters,gbc); // adding the button
                    parameters.addActionListener(
                              new ActionListener()
                                   public void actionPerformed (ActionEvent event)
                                             Parameters para = new Parameters();
                                             para.setDefaultCloseOperation(JFrame.HIDE_ON_CLOSE);
                                             para.setSize(400,400);
                                             para.setVisible(true);
                    progress = new JTextArea();
                    gbc.gridy = 3; // telling where the row start
                    gbc.gridx = 0; // telling at which column
                    gbc.gridwidth = 1; // number of columns
                    gbc.gridheight = 1; // number of rows
                    gbc.weightx = gbc.weighty =1.0;
                    analyse.add( progress,gbc ); // adding the button
                    progress.setText("sfsfdfsdfsdfsd \n fadsfsdfsdfsdf \n safdsfasdfdfdsf \n sfafafasfafaf");
               analyse.setBorder(new TitledBorder(new LineBorder(Color.BLACK),"Analyse"));
               analyse.add(progress);
               ///// beginning of the JPanel files!
               files = new JPanel();               
               files.setLayout(new GridLayout());
               files.setSize(200,50);
               filename = new JTextField();
               filename.setColumns(40);          
                    name = new JLabel("Filename :");
                    browse = new JButton("browse");
                    SDDS = new JRadioButton("SDDS");
                    //adding actionlistener that activates the converter
               files.setBorder(new TitledBorder(new LineBorder(Color.BLACK),"Files"));
               files.add(name);files.add(filename);files.add(browse);files.add(SDDS);
          ////// This is the end of the JPanel Files
     ////// beginning of the JPanel data ....
               data= new JPanel();
                    tab = new JTabbedPane();
                    data.add(tab);
                    listraw = new JList();
                    data.add(listraw);
                    listanal = new JList();
                    data.add(listanal);
               data.setBorder(new TitledBorder(new LineBorder(Color.BLACK),"Data"));
          ///// end of the JPanel     data
          /// beginning of the JPanel graph
               graph = new JPanel();
                    plot = new JTextArea();
                    graph.add(plot);
               graph.setBorder(new TitledBorder(new LineBorder(Color.BLACK),"plotting"));
     /////// end of the JPanel graph
     ///// beginning of the JPanel info
               info = new JPanel();
                    test = new JButton("test");
                    info.add(test);
               info.setBorder(new TitledBorder(new LineBorder(Color.BLACK),"info"));
     ///// end of the JPanel info
     //// adding everything together
     content.add(analyse, BorderLayout.WEST);
     content.add(files,BorderLayout.NORTH);
     content.add(data,BorderLayout.EAST);
     content.add(graph,BorderLayout.CENTER);
     content.add(info,BorderLayout.SOUTH);
     pack();
     setVisible(true);     
}

can u explain what u want???
I observed something like u add twice this line analyse.add(progress) u delete the second time add(progress).
Set the size to the JFrame,
and use GridBagLayout, instead of GridLayout,
GridLayout will divide the space equally, that's why u'r getting Analyse
and Parameter Buttons in the Bigger and equal in size.

Similar Messages

  • ITunes/iPod set up goes to wrong drive in windows

    For various reasons I have to reload the iTunes set up. I downloaded the latest version. I deleted the old version of iTunes (version 6 something.) Now when I try to set it up it is pointing to a drive (G) that I have disabled. I am runing Windows XP on a Sony VIAO laptop with two WD 500G hard drives (H and I drives.) I tried to delete all reference to iTunes, I disabled the G drive.
    I would appreciate any thoughts on what to try next.
    Thanks

    When I run iTunes setup it points to installing it on Drive G. Even though I can see Drives C: D: H: and I: I can't select them.

  • Set size of jPanel

    Hi i've create a jForm in netbeans. To this I have added a scrollpane containing a jPanel called PrintPreview. (I have to do this rather than use the automated preview of printUtilities because of some items I need removed from the original jPanel before printing).
    I need to set the size of the PrintPreview jPanel as it's instantiated. I have the dimensions created from another class called "Gbl".
    In the constructor is the following:
    /** Creates new form PrintPreview */
    public PrintPreview() {
    PreviewPanel.setPreferredSize(new Dimension(Gbl.previewWidth,Gbl.previewHeight);
    PreviewPanel.setMaximumSize(new Dimension(Gbl.previewWidth,Gbl.previewHeight);
    PreviewPanel.setMinimumSize(new Dimension(Gbl.previewWidth,Gbl.previewHeight);
    Window.pack();
    initComponents();
    this.setLocationRelativeTo(null);
    // ADD CODE - COLLECT DRAWING FROM ARRAY
    PreviewPanel.repaint();
    I would like the jPanel set to these dimensions however I would also like the scrollPane to remain at it's standard size so I can scroll the diagram as necessary.
    Could you please tell me where I am going wrong? The three setSize lines are flagged as erroneous. The dimensions are int and have tried double.
    Any advice is good...
    Thanks

    Ok I'm going to add onto this thread because it still relates to the original problem. setting size of jPanel.
    Some details first:
    OS - Ubuntu Gutsy 7.10
    Kernel - 2.6.22-14-generic
    NB - v5.5.1
    Java version - java version "1.5.0" / gij (GNU libgcj) version 4.2.1 (Ubuntu 4.2.1-5ubuntu5)
    Research:
    I have been trawling the net for days trying to resolve this but I am struggling to find anything specific to my problem. I keep finding general methods using given NB facilities. I've also scoured a couple of my Java books but of course they're not totally relevant to NetBeans. I've practiced using the forum this afternoon to find things but with my lack of knowledge using both forums and java has left me a little bamboozled. I've been working on this problem for a couple of days now and achieved very little.
    My specific problem is this:
    I have a JFrame GUI. Inside that I have a jTabbedPane containing a jScrollPane containing a jPanel. I would like to have the jPanel display at A4 size relevant to the screen it is displayed on. e.g. I have a separate global class "Gbl" that calculates the dimensions based on current dpi and then creates the necessary measurements to feed to my preferred size function.
    I have tried implementing the preferred size method to the constructor and have also tried adding it to all four ways to enter bespoke code to NetBeans' autogenerated code. (Pre-init, Post-init, Pre-creation and Post-creation code) To no avail. Nothing changes on screen.
    The code I am trying to enter is as follows:
    // Set preferred size of user-drawing-area (jPanel1)
    jPanel1.setPreferredSize(new java.awt.Dimension(600,500));
    jPanel1.setMaximumSize(new java.awt.Dimension(600,500));
    jPanel1.setMinimumSize(new java.awt.Dimension(600,500));
    // Set preferred size of jPanel1 container (jScrollPane1)
    jScrollPane1.setPreferredSize(new java.awt.Dimension(600,500));
    jScrollPane1.setMaximumSize(new java.awt.Dimension(600,500));
    jScrollPane1.setMinimumSize(new java.awt.Dimension(600,500));
    // Set preferred size of the jScrollPane1 container (mainTabView(Tabbed pane))
    mainTabView.setPreferredSize(new java.awt.Dimension(600,500));
    mainTabView.setMaximumSize(new java.awt.Dimension(600,500));
    mainTabView.setMinimumSize(new java.awt.Dimension(600,500));
    I am using absolute values here to omit any error getting the variables from my Global class. If it works I will add them and test again.
    Ideally, I would like the jPanel to be set to an A4 size yet have the containers at a smaller more "screen-manageable" size (With scroll bars). Then if the GUI is maximized, then it only expands to the full size of the A4 sized jPanel if possible.
    Of course, this may not be possible or there may be a far better method for doing this, however I am really stumped. I've had some good advice this afternoon of whihc has opened may eyes some. Although, I have made no headway so far. I hope the above follows site-rules and gives enough information to resolve this issue. I'm losing hair rapidly!
    I'm grateful for any advice given. Thank You

  • Unable to run reports due to too large set size

    Hello guys
    I am creating a report with almost 12 columns. I know it has a lot of data. When I tried to add one more column which is day column, it gives me the following errors:
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. Essbase Error: Internal error: Set is too large to be processed. Set size exceeds 2^32 tuples. (HY000)
    SQL Issued: SELECT Brand."Brand Name" saw_0, Brand.Product saw_1, Offer."Offer Name" saw_2, "Subscription Offer_Cost"."Offer Cost" saw_3, "Continuity Cycle"."Cont Cycle" saw_4, "Acquisition Date"."Acquisition Month" saw_5, "Acquisition Date"."Acquisition Day" saw_6, "Retention Status".Status saw_7, Level."Subscription Leve" saw_8, SUM(CASE WHEN Level."Subscription Leve" = '0' THEN retntion."Count Of Orders" ELSE 0 END by "Acquisition Date"."Acquisition Month", Offer."Offer Name") saw_9, CASE WHEN Level."Subscription Leve" > '0' THEN retntion."Count Of Orders" ELSE 0 END saw_10, (CASE WHEN Level."Subscription Leve" > '0' THEN retntion."Count Of Orders" ELSE 0 END/SUM(CASE WHEN Level."Subscription Leve" = '0' THEN retntion."Count Of Orders" ELSE 0 END by "Acquisition Date"."Acquisition Month", Offer."Offer Name"))*100 saw_11 FROM retention_cube WHERE ("Acquisition Date"."Acquisition Month" BETWEEN '2009 Feb' AND '2009 Jan') ORDER BY saw_7 DESC
    It's probably because the data size is too big for querry to return. Is there a way I can fix this error and still get the report with the new columns?
    Any pointers will be greatly appreciated..

    Well of course it is. (Set too large I mean)
    SUM(CASE WHEN Level."Subscription Leve" = '0' THEN retntion."Count Of Orders" ELSE 0 END by "Acquisition Date"."Acquisition Month", Offer."Offer Name") saw_9,
    CASE WHEN Level."Subscription Leve" > '0' THEN retntion."Count Of Orders" ELSE 0 END saw_10,
    (CASE WHEN Level."Subscription Leve" > '0' THEN retntion."Count Of Orders" ELSE 0 END/SUM(CASE WHEN Level."Subscription Leve" = '0' THEN retntion."Count Of Orders" ELSE 0 END by "Acquisition Date"."Acquisition Month", Offer."Offer Name"))*100 saw_11
    THAT is the way to kill a query going against Essbase. Just check out the MDX that generates in the background (i.e. read the log!) and try to fire that through SmartView. It will work until you hit a low grain on one of the dimensions. The time dimension being a perfect example.
    Stuff like what you're trying to do should either be
    - account members in Essbase,
    - MDX EVALUATE_AGGR expressions in the RPD with the correct aggragation level set or
    - MDX EVALUATE expressions in answers.
    Push the number crunching and aggregating as far down the foodchain as you can. Everything will almost automatically result in failures.
    Cheers,
    Christi@n

  • Text messages going to wrong people

    I am new to this forum and I think I posted under the wrong forum for my problem. Please follow the link to my post. I really would appreciate some help.
    http://community.vzw.com/t5/DROID-DROID-2-by-Motorola/Droid-Bionic-text-messages-going-to-wrong-people/td-p/733318

    I have been experiencing this issue for the last few weeks and it is extremely annoying.  I've called Verizon 7 times and have gotten nothing but the run around.  What's even more annoying is hearing them say there will be a software coming out to correct the problem but they don't know when.  I'm very disappointed in Verizon.  I've been with them for many years.  They were my first and only carrier.  I will definitely not be taking this lying down.  I'm going to get a resolution, and if that means leaving Verizon, then so be it.  And if anyone from Verizon is reading this, PLEASE DO NOT offer up another apology.  I don't want another apology, I want this issue to be corrected, NOW!!

  • Essbase Error:Set is too large to be processed. Set size exceeds 2^64 tuple

    Hi,
    we are using obiee 11.1.1.6 version with essbase 9.3.3 as a data source . when I try to run a report in obiee, I am getting the below error :
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 43113] Message returned from OBIS. [nQSError: 43119] Query Failed: [nQSError: 96002] Essbase Error: Internal error: Set is too large to be processed. Set size exceeds 2^64 tuples (HY000)
    but if I run the same query in excel add in, I am just getting 20 records . wondering why I am getting this error in obiee . Does any one encountered the same issue ?
    Thanks In advance,

    Well if you want to export in I think you have to manually do it.
    The workaround it to open your aperture library by right clicking it and show contents...
    Then go into your project right click show contents...
    In here there are sub folders on dates that the pictures were added to those projects. If you open the sub folder and search for your pictures name it should be in that main folder.
    You can just copy it out as you would any normal file to any other location.
    Voila you have manually exported out your file.
    There is a very similar post that has been close but again you can't export the original file that you are working on - FYI http://discussions.apple.com/thread.jspa?threadID=2075419

  • Setting size of movie in Logic Express?

    Is it possible to change the size of the movie in Logic Express? And if so, could someone tell me what the options are, as far as the size goes?
    Thanks...

    I suspect it is the same as Logic Pro.
    In Logic Pro you simply click and hold on the QT movie screen and a popup window appears where you can choose the size.
    You did mean the actual area of the movie screen didn't you? Not the size in memory? That is determined, of course, by how you create your QT.
    Robyn Traill

  • I print 2 pages to pdf and file size is 600k, I print 1 additonal page and file size goes to 6M, what would cause this (graphics are same on all pages)

    I print 2 pages to pdf and file size is 600k, I print 1 additonal page and file size goes to 6M, what would cause this (graphics are same on all pages).
    I know the colour graphic shading in the document that causes the issue of larger file size, but it doesn't make sense that printing 1 additional page with same information as first 2 pages would cause this.

    I print 2 pages to pdf and file size is 600k, I print 1 additonal page and file size goes to 6M, what would cause this (graphics are same on all pages).
    I know the colour graphic shading in the document that causes the issue of larger file size, but it doesn't make sense that printing 1 additional page with same information as first 2 pages would cause this.

  • How i can set size of editor at runtime?

    dear all,
    How i can set size of editor at runtime?
    The size of editor is good when I run form on windowX but so small on web . why? have any body call tell me how i can do?
    thank for advance

    Hi there,
    You can use the builtin EDIT_TEXTITEM.
    You can pass x-pos, y-pos, width and height as parameters to that.
    Hope this helps

  • Circular and oval cropping at set size and resolution?

    I know how to use the M tool to create circles and ovals and i know you can set that to certain dimensions, but that doesn't do everything I need.
    How do you crop circles and ovals out of a photo, at a set size (for example, a 1 inch circle ) at a set resolution for printing?  What I need to do is crop circular and oval images out of a photo, say at 250 dpi, then paste them onto a blank white page for printing.
    So if I've got let's say a photo that's 14x10 inches at 300dpi, I want to be able to go in, crop out an oval or circle, with as much or as little of the photo that I can or want to, setting that automatically to a certain dimension and dpi, then paste it into a blank white page I've already created at that same d
    When finished I'd have maybe 20 or 30 images on a page that I can flatten all the layers and print.
    I can't find a way to set size and resolution with anything other than the regular square crop tool.

    You can make an action and use it as one step automation to achieve that on an initial selection.
    Step by step instructions:
    With the Elliptical Marquee Tool, make the desired selection on a image.
    Open the Actions panel (Window > Actions (Alt+F9), from its menu at the top right or corresponding buttons at the bottom, choose New Action, and in the dialog that appears press the Record button.
    From the Image menu, choose Crop.
    From the Selection menu, choose Inverse (Ctrl+Shift+I)
    Press the d key on your keyboard to reset the foreground/background color swatches.
    Press Ctrl + Delete keys on your keyboard to fill with white.
    From the Image menu, choose Image Size (Ctrl+Alt+I), make sure the Resample Image is checked, and in the Document Size section enter the desired dimensions and resolution and press OK.
    In the Actions Panel press the Stop Recording button.
    Now you can copy or drag the image to another image.
    For the next image make the oval selection, go to the Actions panel, select the actions you created above, and press the play button. You can also create a keyboard shortcut in the action's property accessible by double clicking the action.
    The creation of this action assumes that in the final image you will be composing oval images on white background without overlapping their rectangular bounding boxes. If you plan to overlap them then the action must be modified to make the image a transparent layer and delete outside the oval instead of filling with white.

  • Record set size in Gantt Chart

    Hi all,
    I am developing an application that has a Gantt Chart.
    The tree drawn is a 2 level tree. I have two VOs.
    The second VO (Child) has more than 20 rows. I want to show only 10 child at once.
    Record set size attribute is the one that is used to restrict the size of the number of nodes displayed. Just like in HGRID.
    But when the graph is rendered the values that I give are being ignored and the entire graph is rendered.
    Any pointers or suggestions on this will be really helpful.
    Regards,
    Santhosh.

    Hi Santosh,
    As Anand suggested to add the "rownum <= 10" condition to limit the record set.
    But this condition should be set in View Link SQL(Query where clause).
    I hope this will work.
    Thanks
    Renu

  • How programmatically set size of report element in Java

    In topic
    [How programmaticaly set size of some field?|How programmaticaly set size of some field?]
    someone changing programmatically report element, but I think this part of code
    is in .NET framework
    For example I mean something like following snippet
    BoxObject box = (BoxObject) reportClientDocument
    .getReportDefController().findObjectByName("headerBox");
    BoxObject newBoxObject=new BoxObject(box);
    Border border=new Border();
    border.setBorderColor(new Color(255,255,255));
    newBoxObject.setBorder(border);
    newBoxObject.setFillColor(new Color(255,255,255));
    reportClientDocument
    .getReportDefController().getReportObjectController().modify(box, newBoxObject);
    Why I think this is in .NET framework because java object "ReportClientDocument" don't have "getReportDefController()" method (I donu2019t know .NET).
    What I want to do, I want to take "Details" (part of report) and change size.
    If there is no way to take "Details" how can I take other report element e.g. Text Object

    Ernest,
    What enviroment are you working in? Because my ReportClientDocument object does have the getReportDefController method. How are you declaring your object?
    Try something like:
    private static com.crystaldecisions.sdk.occa.report.application.ReportClientDocument myRCD;
    BoxObject box = (BoxObject) myRCD.getReportDefController().findObjectByName("headerBox");
    Cheers
    Darren

  • Make it open at set size?

    Is it possible to make the QT player open pre-existing files at a set size?
    Thanks.

    Hi, Rick
    It's possible.
    You can either use SimpleMovieX or QuickTime Pro.
    (Note that I'm the developer of SimpleMovieX).
    If you accept to create a separate file, you resize the movie with View > Resize Movie, then save a reference movie with File > Save RefMovie.
    The new file takes only a few kilobytes and links to the original. It opens at the size that you have set.
    If you want to keep the same file as original, it has to be a QuickTime mov file.
    You do View > Resize Movie, then File > Save.
    If you cannot or don't want to overwrite the original size, then it's not possible.
    Regards, BJ

  • Set size and location of  a component

    Hello,
    Does anyone familiar with this org.netbeans.lib.awtexttra.AbsoluteConstraints(). I want to set the size and location of the component, and I know this org netbeans can provide this function.
    getContentPane().add(chkTausta, new org.netbeans.lib.awtextra.AbsoluteConstraints(10, 120, -1, -1));
    chkRakkennus.setSelected(true);
    chkRakkennus.setText("Rakennukset");
    then it comes an error that org.netbeans.lib.awtextra.AbsoluteConstraints()cannot be resolved. Does anyone know what�s the reason. Do I have to download other version of Java. I have Jre1.6.0?
    Does anybody knows is there another way to set size of component. For example, if I use borderlayout, and put a button to the west, then how can I set the location and size of the button?
    Thanks a lot for you help.
    Clare

    org.netbeans.lib.awtextra.AbsoluteConstraints isn't part of the JDK. I suggest you don't use that at all. Let a LayoutManager do the resizing.
    Have a look at the [Layout tutorial|http://java.sun.com/docs/books/tutorial/uiswing/layout/index.html] especially gridBagLayout

  • Eraser tool in Photoshop CS4 acts as if it is transparent when on brush or pencil mode. Block acts like its not transparent at all but there are no options for opacity, flow or brush size. Whats wrong and how to I make the brush and pencil eraser erase co

    Eraser tool in Photoshop CS4 acts as if it is transparent when on brush or pencil mode. Block acts like its not transparent at all but there are no options for opacity, flow or brush size. Whats wrong and how to I make the brush and pencil eraser erase completely without having to go over it multiple times?
    It started randomly about two weeks ago and I thought it was a glitch that would just go away. But now I am getting sick of using only the block eraser on one size. Help?

    The easiest thing to start with is to reset the Eraser Tool.
    Right click on the Eraser icon in the tool options bar and then click on Reset Tool.

Maybe you are looking for

  • Problem with Assign reference document.

    Hi all, I defined transaction input parameter type Xml. I used Reference Document Loader to load document (structure.xml) below. <?xml version="1.0" encoding="UTF-8"?> <SO_VALIDATION>     <L4_SO_ID/>     <L4_SOI_NO/>     <PPC_STATUS/>     <PPC_INFO/>

  • Unreadable files in iphoto

    I downloaded ilife 08 and now I can't download pics. They come up ready to import but then it says can't download unreadable files. I didn't have this problem before 08 while downloading the same pics. I did not put 08 in my laptop and the pics downl

  • How do in import google and yahoo contact to mail?

    how do in import google and yahoo contact to mail?

  • Create employees in ECC-HR by IDOcs?

    Can we create employees in ECC-HR by IDOcs? means external systems will create employees and they will be transferred to ECC- HCM ?

  • Time Capsule not doing incremental backups

    My Time Capsule has suddenly started backing up the whole hard drive every time instead of doing incremental backups. How can I fix this? I am running the latest version of Snow Leopard - I have not installed Lion yet.