Cant find suitable Layout  Manager

Hello!
I am doing a project where i allow user to drag an area on frame and then I should put a new JtextArea on that area. I have used the setBounds method of JTextArea to specify the location points but becoz of the layout manager (Flow Layout) it automatically shifts to other place in the frame.
I have tried using other layouts but none helps to keep the textarea at specified place. Plz help!!

Hi,
You need to set the layout manager to null. This will allow you to specify size/location using setBounds.
Regards,
Ahmed Saad

Similar Messages

  • Suitable layout manager for adding JToolbar?

    Hi there,
    I'm new to Java Swing. I'm looking to add a toolbar to the top of a JFrame. I've created a Grid layout with 3 rows and no columns. I've placed the JToolbar in the first row. Unfortunately, each row in the grid is of equal size so the toolbar is stretched to 1/3rd the size of the JFrame. I want to the toolbar to be standard size but I don't know how to resize the grid rows. I don't want to have to add more rows to reduce the size.
    Can anyone help me here? Or if you have a better layout manager suggestion.
    Thanks,
    Sean

    You can use the default BorderLayout of JFrame and add your JToolBar to the North.

  • JTable's suitable Layout manager

    i have a JTable in a JPanel and another JPanel with JLabels and JTextFiled in it.
    * VersionControl.java
    * @author JPQuilala
    * Created on December 22, 2006, 1:18 PM
    package qis_dreamteam;
    import java.awt.BorderLayout;
    import java.awt.GridLayout;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.beans.PropertyVetoException;
    import javax.swing.BorderFactory;
    import javax.swing.BoxLayout;
    import javax.swing.JCheckBox;
    import javax.swing.JFrame;
    import javax.swing.JInternalFrame;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.JTable;
    import javax.swing.JTextField;
    import javax.swing.ListSelectionModel;
    import javax.swing.event.ListSelectionEvent;
    import javax.swing.event.ListSelectionListener;
    import javax.swing.table.AbstractTableModel;
    import javax.swing.table.TableModel;
    import javax.swing.*;
    import java.awt.event.*;
    import java.awt.*;
    public class VersionControl extends JInternalFrame {
    JPanel pnlMain;
    JPanel pnlApp,pnlAppTblInput,pnlAppTbl,pnlAppInput,pnlAppLbl,pnlAppTxt;
    JPanel pnlHst,pnlHstTblInput,pnlHstTbl,pnlHstInput,pnlHstLbl,pnlHstTxt;
    JTable tblApp;
    JTable tblHst;
    JTextField[] txtApp=new JTextField[7];
    JTextField[] txtHst=new JTextField[7];
    JLabel[] lblApp=new JLabel[7];
    JLabel[] lblHst=new JLabel[7];
    JButton btnAppAdd,bntAppUpdate,btnAppDelete;
    JButton btnHstAdd,bntHstUpdate,btnHstDelete;
    PaoTableModel modelApp=new PaoTableModel("SELECT * FROM QIS_APPLICATION_MT");
    PaoTableModel modelHst=new PaoTableModel("SELECT * FROM QIS_APP_VERSION_HISTORY");
    public VersionControl(Dimension dSize) throws PropertyVetoException {     
    super("Version Control ",
    false, //resizable
    true, //closable
    false, //maximizable
    true); //iconifiable
    pnlMain=new JPanel();
    pnlApp=new JPanel();
    pnlAppTblInput=new JPanel();
    pnlAppTbl=new JPanel();
    pnlAppInput=new JPanel();
    pnlAppLbl=new JPanel();
    pnlAppTxt=new JPanel();
    pnlHst=new JPanel();
    pnlHstTblInput=new JPanel();
    pnlHstTbl=new JPanel();
    pnlHstInput=new JPanel();
    pnlHstLbl=new JPanel();
    pnlHstTxt=new JPanel();
    JPanel pnlHeader=new JPanel();
    tblApp=new JTable(modelApp);
    tblHst=new JTable(modelHst);
    JScrollPane scrollApp=new JScrollPane(tblApp);
    tblApp.setPreferredScrollableViewportSize(new Dimension(1000,100));
    JScrollPane scrollHst=new JScrollPane(tblHst);
    tblHst.setPreferredScrollableViewportSize(new Dimension(dSize.width,100));
    setContentPane(pnlMain);
    setSelected(true);
    tblApp.setAutoResizeMode(tblApp.AUTO_RESIZE_LAST_COLUMN);
    JLabel lblTitle=
    new JLabel("Hitachi Global Storage Technology Philippines Corp.");
    pnlHeader.setLayout(new FlowLayout());
    lblTitle.setHorizontalAlignment(javax.swing.SwingConstants.CENTER);
    lblTitle.setPreferredSize(new java.awt.Dimension (1100,25));
    lblTitle.setForeground(new java.awt.Color(255, 255, 255));
    lblTitle.setBackground(new java.awt.Color(215, 0, 0));
    lblTitle.setOpaque(true);
    pnlHeader.add(lblTitle);
    //pnlAppLbl
    pnlAppLbl.setLayout(new GridLayout(7,1,0,9));
    for(int i=0;i<7;i++) {
    pnlAppLbl.add(lblApp=new JLabel("Label "+i));
    //pnlAppTxt
    pnlAppTxt.setLayout(new GridLayout(7,1,0,5));
    for(int i=0;i<7;i++) {
    pnlAppTxt.add(txtApp[i]=new JTextField("",16));
    //pnlAppInput
    pnlAppInput.setBorder(BorderFactory.createCompoundBorder(
    BorderFactory.createTitledBorder("Input :"),
    BorderFactory.createEmptyBorder(5,5,5,5)));
    pnlAppInput.setLayout(new FlowLayout(FlowLayout.LEFT));
    pnlAppInput.add(pnlAppLbl);
    pnlAppInput.add(pnlAppTxt);
    //pnlAppInput.setVisible(false);
    //pnlAppTbl
    pnlAppTbl.setBorder(BorderFactory.createCompoundBorder(
    BorderFactory.createTitledBorder("Tbl :"),
    BorderFactory.createEmptyBorder(5,5,5,5)));
    //pnlAppTbl.setLayout(new BoxLayout(pnlAppTbl,BoxLayout.LINE_AXIS));
    //pnlAppTbl.setLayout(new GridLayout(1,0));
    pnlAppTbl.setLayout(new BorderLayout());
    pnlAppTbl.add(scrollApp);
    //pnlAppTblInput
    pnlAppTblInput.setBorder(BorderFactory.createCompoundBorder(
    BorderFactory.createTitledBorder("TblInput :"),
    BorderFactory.createEmptyBorder(5,5,5,5)));
    pnlAppTblInput.setLayout(new FlowLayout(FlowLayout.LEFT));
    pnlAppTblInput.add(pnlAppTbl);
    pnlAppTblInput.add(pnlAppInput);
    //pnlApp
    pnlApp.setLayout(new FlowLayout(FlowLayout.LEFT));
    pnlApp.setBorder(BorderFactory.createCompoundBorder(
    BorderFactory.createTitledBorder("Application :"),
    BorderFactory.createEmptyBorder(5,5,5,5)));
    //pnlApp.add(pnlAppTbl);
    pnlApp.add(pnlAppTblInput);
    //pnlHst
    pnlHst.setLayout(new FlowLayout(FlowLayout.LEFT));
    pnlHst.setBorder(BorderFactory.createCompoundBorder(
    BorderFactory.createTitledBorder("History :"),
    BorderFactory.createEmptyBorder(5,5,5,5)));
    pnlHst.add(scrollHst);
    //pnlMain
    pnlMain.setLayout(new BoxLayout(pnlMain,BoxLayout.PAGE_AXIS));
    pnlMain.setBorder(BorderFactory.createCompoundBorder(
    null,
    BorderFactory.createEmptyBorder(5,5,5,5)));
    pnlMain.add(pnlHeader);
    pnlMain.add(pnlApp);
    pnlMain.add(pnlHst);
    setSize(1015,712);
    * PaoTableModel.java
    * Created on December 15, 2006, 7:53 AM
    * To change this template, choose Tools | Template Manager
    * and open the template in the editor.
    package qis_dreamteam;
    import java.text.Format;
    import javax.swing.*;
    import java.net.URL;
    import java.util.Date;
    import java.util.Vector;
    import java.util.Timer;
    import java.util.TimerTask;
    import java.io.*;
    import java.sql.*;
    import java.lang.*;
    import java.text.*;
    import java.util.*;
    import javax.swing.table.AbstractTableModel;
    * @author JPQuilala
    public class PaoTableModel extends AbstractTableModel {
    Vector vData;
    int colCount;
    String[] headers;
    String sSQL;
    public PaoTableModel(String sSQL) {
    DbManager oDB=new DbManager();
    oDB.conQAPROD();
    ResultSet oRS=oDB.execQuery(sSQL);
    vData = new Vector();
    try {
    ResultSetMetaData metaData=oRS.getMetaData();
    colCount = metaData.getColumnCount();
    headers = new String[colCount];
    for (int i = 1; i <= colCount; i++) {
    headers[i - 1] = metaData.getColumnName(i);
    while (oRS.next()) {
    String[] sRecord = new String[colCount];
    for (int i = 0; i < colCount; i++) {
    sRecord[i] = oRS.getString(i + 1);
    vData.addElement(sRecord);
    } catch (SQLException ex) {
    vData = new Vector();
    ex.printStackTrace();
    } finally {
    oDB.disconnect();
    public String getColumnName(int i) {
    return headers[i];
    public int getColumnCount() {
    return colCount;
    public int getRowCount() {
    return vData.size();
    public Object getValueAt(int row, int col) {
    return ((String[]) vData.elementAt(row))[col];
    this is the exact code... my problem is how can i set the JTable's size to be dependent on the JFrame and it should automaticaly adjust size when i inserted another JPanel.

    Sorry, but I didn't read all the code... but if I could understand, the layout managers that you used adjust automatically with the window size. Another thing, it's not the table that you have to adjust. As the tables are in a jscrollpane, it's the size of the scrollpane that you have to adjust.
    If you wan't a tip, try to use background color to visualize the size of your components. Sometimes, the table or another component is already adjusted, but the text or other components in it, it's not.

  • I cant find the "manage devices" on my "account information"

    Can someone help me on my account information page i cant find the "Manage devices" someone help me please

    You need to enable automatic downloads on the computer or device that you would like to "manage".  As soon as this is done the manage device button will appear in your account.
    Link: http://support.apple.com/kb/HT4539?viewlocale=en_US&locale=en_US

  • NodeManager or managed server cant find admin server

    <15-05-2003 11:31:58 PDT> <Info> <[email protected]:5555> <Starting Server
    Admin server on Machine A.
    Managed server on machine B.
    using the demo ssl configuration.
    When I try to start my managed sever from the admin console I get the following
    error :
    nesDomain::ophelia ...>
    <15-05-2003 11:31:59 PDT> <Info> <[email protected]:5555> <Server nesDomain::ophelia
    started, process id = 264>
    Starting WebLogic Server...
    <15-05-2003 11:32:05 PDT> <Error> <Management> <141079> <Error encountered attempting
    to contact AdminServer at http://localhost:7001/wl_management_internal2/Bootstrap
    to obtain configuration information.      Will attempt to to start an independent
    ManagedServer. No server log avaliable, Exception was: java.net.ConnectException:
    Tried all: '1' addresses, but could not connect over HTTP to server: 'localhost',
    port: '7001'>
    <15-05-2003 11:32:09 PDT> <Notice> <Management> <140005> <Loading configuration
    C:\ophelia\user_domains\nesDomain\config.xml>
    I looks like the managed server tries to find the admin server on localhost, but
    I cant find where to change this ...

    I'm getting the same problem as posted by Sumitkhapli when I try to start a managed server either through the Admin Console or through the command line. Any ideas?
    Output and Exception Message trying to start the managed server:
    C:\WebLogicSPK3\weblogic81\common\bin>startManagedWebLogic MyServer1 http://SBREWSTER1:7777
    C:\WebLogicSPK3\weblogic81\common\bin>echo off
    CLASSPATH=C:\WEBLOG~1\JROCKI~1\lib\tools.jar;C:\WEBLOG~1\WEBLOG~1\server\lib\weblogic_sp.jar;C:\WEBLOG~1\WEBLOG~1\server\lib\weblogic.jar;C:\WEBLOG~1\WEBLOG~1\common\eval\pointbase\lib\pbserver44.jar;C:\WEBLOG~1\WEBLOG~1\common\eval\pointbase\lib\pbclient44.jar;C:\WEBLOG~1\JROCKI~1\jre\lib\rt.jar;C:\WEBLOG~1\WEBLOG~1\server\lib\webservices.jar;C:\WEBLOG~1\JROCKI~1\lib\tools.jar;C:\WEBLOG~1\WEBLOG~1\server\lib\weblogic_sp.jar;C:\WEBLOG~1\WEBLOG~1\server\lib\weblogic.jar;
    PATH=C:\WEBLOG~1\WEBLOG~1\server\bin;C:\WEBLOG~1\JROCKI~1\jre\bin;C:\WEBLOG~1\JROCKI~1\bin;C:\WEBLOG~1\WEBLOG~1\server\bin;C:\WEBLOG~1\JROCKI~1\jre\bin;C:\WEBLOG~1\JROCKI~1\bin;C:\WEBLOG~1\WEBLOG~1\server\bin;C:\WEBLOG~1\JROCKI~1\jre\bin;C:\WEBLOG~1\JROCKI~1\bin;.;C:\Java\j2re1.4.2_04\bin;C:\Java\jakarta-tomcat-3.2.4;C:\OrbixE2A\etc\bin;C:\OrbixE2A\asp\6.0\bin;C:\OrbixE2A\bin;C:\JBuilder7\jdk1.3.1\jre\bin\hotspot;C:\oracle\ora92\bin;C:\Program Files\Oracle\jre\1.3.1\bin;C:\Program Files\Oracle\jre\1.1.8\bin;C:\PROGRA~1\MKSTOO~1\bin;C:\PROGRA~1\MKSTOO~1\bin\x11;C:\PROGRA~1\MKSTOO~1\mksnt;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\MSSQL7\BINN;C:\Program Files\Hummingbird\Connectivity\9.00\Accessories\;Y:\bin;I:\Tools\Stingray\ObjectiveStudio\Lib;C:\bin;C:\WEBLOG~1\WEBLOG~1\server\bin\oci920_8;C:\WEBLOG~1\WEBLOG~1\server\bin\oci920_8;C:\WEBLOG~1\WEBLOG~1\server\bin\oci920_8
    * To start WebLogic Server, use a username and *
    * password assigned to an admin-level user. For *
    * server administration, use the WebLogic Server *
    * console at http://[hostname]:[port]/console *
    <Jan 20, 2005 11:39:04 AM EST> <Info> <Security> <BEA-090065> <Getting boot identity from user.>
    Enter username to boot WebLogic server:weblogic
    Enter password to boot WebLogic server:
    <Jan 20, 2005 11:39:09 AM EST> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with BEA WebLogic JRockit(TM) 1.4.2_04 JVM Version ari-31788-20040616-1132-win-ia32 from BEA Systems, Inc.>
    <Jan 20, 2005 11:39:09 AM EST> <Info> <Management> <BEA-141140> <The managed server is going to contact the admin server at http://SBREWSTER1:7777 to check if there exists a running admin server at this URL.>
    <Jan 20, 2005 11:39:09 AM EST> <Info> <Configuration Management> <BEA-150017> <This server is being started as a dependent managed server.>
    <Jan 20, 2005 11:39:09 AM EST> <Info> <Management> <BEA-141107> <Version: WebLogic Server 8.1 SP3 Tue Jun 29 23:11:19 PDT 2004 404973
    WebLogic XMLX Module 8.1 SP3 Tue Jun 29 23:11:19 PDT 2004 404973 >
    <Jan 20, 2005 11:39:09 AM EST> <Info> <Configuration Management> <BEA-150015> <Connecting to the administration server http://SBREWSTER1:7777 to retrieve the initial configuration.>
    <Jan 20, 2005 11:39:11 AM EST> <Error> <Configuration Management> <BEA-150001> <An error occurred while connecting to the admin server to bootstrap through URL: http://SBREWSTER1:7777/wl_management_internal2/Bootstrap, user: weblogic
    java.lang.ClassNotFoundException: weblogic.management.mbeans.custom.ApplicationConfiguration
    at java.lang.Class.forName(Ljava.lang.String;ZLjava.lang.ClassLoader;)Ljava.lang.Class;(Unknown Source)
    at java.io.ObjectInputStream.resolveClass(Ljava.io.ObjectStreamClass;)Ljava.lang.Class;(Unknown Source)
    at java.io.ObjectInputStream.readNonProxyDesc(Z)Ljava.io.ObjectStreamClass;(Unknown Source)
    at java.io.ObjectInputStream.readClassDesc(Z)Ljava.io.ObjectStreamClass;(Unknown Source)
    at java.io.ObjectInputStream.readOrdinaryObject(Z)Ljava.lang.Object;(Unknown Source)
    at java.io.ObjectInputStream.readObject0(Z)Ljava.lang.Object;(Unknown Source)
    at java.io.ObjectInputStream.readObject()Ljava.lang.Object;(Unknown Source)
    at java.util.ArrayList.readObject(Ljava.io.ObjectInputStream;)V(ArrayList.java:547)
    at java.lang.LangAccessImpl.readObject(Ljava.lang.Class;Ljava.lang.Object;Ljava.io.ObjectInputStream;)V(Unknown Source)
    at java.io.ObjectStreamClass.invokeReadObject(Ljava.lang.Object;Ljava.io.ObjectInputStream;)V(Unknown Source)
    at java.io.ObjectInputStream.readSerialData(Ljava.lang.Object;Ljava.io.ObjectStreamClass;)V(Unknown Source)
    at java.io.ObjectInputStream.readOrdinaryObject(Z)Ljava.lang.Object;(Unknown Source)
    at java.io.ObjectInputStream.readObject0(Z)Ljava.lang.Object;(Unknown Source)
    at java.io.ObjectInputStream.defaultReadFields(Ljava.lang.Object;Ljava.io.ObjectStreamClass;)V(Unknown Source)
    at java.io.ObjectInputStream.readSerialData(Ljava.lang.Object;Ljava.io.ObjectStreamClass;)V(Unknown Source)
    at java.io.ObjectInputStream.readOrdinaryObject(Z)Ljava.lang.Object;(Unknown Source)
    at java.io.ObjectInputStream.readObject0(Z)Ljava.lang.Object;(Unknown Source)
    at java.io.ObjectInputStream.readObject()Ljava.lang.Object;(Unknown Source)
    at weblogic.management.ManagedServerAdmin.retrieveMBeansFromAdminServer(Ljava.lang.String;)Ljava.util.List;(ManagedServerAdmin.java:543)
    at weblogic.management.ManagedServerAdmin.initialize()V(ManagedServerAdmin.java:150)
    at weblogic.t3.srvr.T3Srvr.initializeHere()V(T3Srvr.java:771)
    at weblogic.t3.srvr.T3Srvr.initialize()V(T3Srvr.java:670)
    at weblogic.t3.srvr.T3Srvr.run([Ljava.lang.String;)I(T3Srvr.java:344)
    at weblogic.Server.main([Ljava.lang.String;)V(Server.java:32)
    >
    The WebLogic Server did not start up properly.
    Exception raised: 'weblogic.management.configuration.ConfigurationException: [Configuration Management:150001]An error occurred while connecting to the admin server to bootstrap through URL: http://SBREWSTER1:7777/wl_management_internal2/Bo
    otstrap, user: weblogic
    java.lang.ClassNotFoundException: weblogic.management.mbeans.custom.ApplicationConfiguration
    at java.lang.Class.forName(Ljava.lang.String;ZLjava.lang.ClassLoader;)Ljava.lang.Class;(Unknown Source)
    at java.io.ObjectInputStream.resolveClass(Ljava.io.ObjectStreamClass;)Ljava.lang.Class;(Unknown Source)
    at java.io.ObjectInputStream.readNonProxyDesc(Z)Ljava.io.ObjectStreamClass;(Unknown Source)
    at java.io.ObjectInputStream.readClassDesc(Z)Ljava.io.ObjectStreamClass;(Unknown Source)
    at java.io.ObjectInputStream.readOrdinaryObject(Z)Ljava.lang.Object;(Unknown Source)
    at java.io.ObjectInputStream.readObject0(Z)Ljava.lang.Object;(Unknown Source)
    at java.io.ObjectInputStream.readObject()Ljava.lang.Object;(Unknown Source)
    at java.util.ArrayList.readObject(Ljava.io.ObjectInputStream;)V(ArrayList.java:547)
    at java.lang.LangAccessImpl.readObject(Ljava.lang.Class;Ljava.lang.Object;Ljava.io.ObjectInputStream;)V(Unknown Source)
    at java.io.ObjectStreamClass.invokeReadObject(Ljava.lang.Object;Ljava.io.ObjectInputStream;)V(Unknown Source)
    at java.io.ObjectInputStream.readSerialData(Ljava.lang.Object;Ljava.io.ObjectStreamClass;)V(Unknown Source)
    at java.io.ObjectInputStream.readOrdinaryObject(Z)Ljava.lang.Object;(Unknown Source)
    at java.io.ObjectInputStream.readObject0(Z)Ljava.lang.Object;(Unknown Source)
    at java.io.ObjectInputStream.defaultReadFields(Ljava.lang.Object;Ljava.io.ObjectStreamClass;)V(Unknown Source)
    at java.io.ObjectInputStream.readSerialData(Ljava.lang.Object;Ljava.io.ObjectStreamClass;)V(Unknown Source)
    at java.io.ObjectInputStream.readOrdinaryObject(Z)Ljava.lang.Object;(Unknown Source)
    at java.io.ObjectInputStream.readObject0(Z)Ljava.lang.Object;(Unknown Source)
    at java.io.ObjectInputStream.readObject()Ljava.lang.Object;(Unknown Source)
    at weblogic.management.ManagedServerAdmin.retrieveMBeansFromAdminServer(Ljava.lang.String;)Ljava.util.List;(ManagedServerAdmin.java:543)
    at weblogic.management.ManagedServerAdmin.initialize()V(ManagedServerAdmin.java:150)
    at weblogic.t3.srvr.T3Srvr.initializeHere()V(T3Srvr.java:771)
    at weblogic.t3.srvr.T3Srvr.initialize()V(T3Srvr.java:670)
    at weblogic.t3.srvr.T3Srvr.run([Ljava.lang.String;)I(T3Srvr.java:344)
    at weblogic.Server.main([Ljava.lang.String;)V(Server.java:32)
    Reason: weblogic.management.configuration.ConfigurationException: [Configuration Management:150001]An error occurred while connecting to the admin server to bootstrap through URL: http://SBREWSTER1:7777/wl_management_internal2/Bootstrap, us
    er: weblogic
    java.lang.ClassNotFoundException: weblogic.management.mbeans.custom.ApplicationConfiguration
    at java.lang.Class.forName(Ljava.lang.String;ZLjava.lang.ClassLoader;)Ljava.lang.Class;(Unknown Source)
    at java.io.ObjectInputStream.resolveClass(Ljava.io.ObjectStreamClass;)Ljava.lang.Class;(Unknown Source)
    at java.io.ObjectInputStream.readNonProxyDesc(Z)Ljava.io.ObjectStreamClass;(Unknown Source)
    at java.io.ObjectInputStream.readClassDesc(Z)Ljava.io.ObjectStreamClass;(Unknown Source)
    at java.io.ObjectInputStream.readOrdinaryObject(Z)Ljava.lang.Object;(Unknown Source)
    at java.io.ObjectInputStream.readObject0(Z)Ljava.lang.Object;(Unknown Source)
    at java.io.ObjectInputStream.readObject()Ljava.lang.Object;(Unknown Source)
    at java.util.ArrayList.readObject(Ljava.io.ObjectInputStream;)V(ArrayList.java:547)
    at java.lang.LangAccessImpl.readObject(Ljava.lang.Class;Ljava.lang.Object;Ljava.io.ObjectInputStream;)V(Unknown Source)
    at java.io.ObjectStreamClass.invokeReadObject(Ljava.lang.Object;Ljava.io.ObjectInputStream;)V(Unknown Source)
    at java.io.ObjectInputStream.readSerialData(Ljava.lang.Object;Ljava.io.ObjectStreamClass;)V(Unknown Source)
    at java.io.ObjectInputStream.readOrdinaryObject(Z)Ljava.lang.Object;(Unknown Source)
    at java.io.ObjectInputStream.readObject0(Z)Ljava.lang.Object;(Unknown Source)
    at java.io.ObjectInputStream.defaultReadFields(Ljava.lang.Object;Ljava.io.ObjectStreamClass;)V(Unknown Source)
    at java.io.ObjectInputStream.readSerialData(Ljava.lang.Object;Ljava.io.ObjectStreamClass;)V(Unknown Source)
    at java.io.ObjectInputStream.readOrdinaryObject(Z)Ljava.lang.Object;(Unknown Source)
    at java.io.ObjectInputStream.readObject0(Z)Ljava.lang.Object;(Unknown Source)
    at java.io.ObjectInputStream.readObject()Ljava.lang.Object;(Unknown Source)
    at weblogic.management.ManagedServerAdmin.retrieveMBeansFromAdminServer(Ljava.lang.String;)Ljava.util.List;(ManagedServerAdmin.java:543)
    at weblogic.management.ManagedServerAdmin.initialize()V(ManagedServerAdmin.java:150)
    at weblogic.t3.srvr.T3Srvr.initializeHere()V(T3Srvr.java:771)
    at weblogic.t3.srvr.T3Srvr.initialize()V(T3Srvr.java:670)
    at weblogic.t3.srvr.T3Srvr.run([Ljava.lang.String;)I(T3Srvr.java:344)
    at weblogic.Server.main([Ljava.lang.String;)V(Server.java:32)
    C:\WebLogicSPK3\weblogic81\common\bin>

  • Cant find the tool in the Extension Manager to convert .MXP to .ZXP.

    Hello there,
    Im trying to install the Scaleform plugin from the UDK into Adobe Flash Professional CC.
    But in the Extension Managers Tools tab I cant find the convert MXP to ZXP.
    My system is win7 home professional and im using test-versions only.
    Ive already tried to fix it myself using the search, so i hope u can help me.
    thanks in advance.
    a1mless

    You have to use Extension Manager CS6 to convert .MXP to .ZXP, which is available at http://www.adobe.com/exchange/em_download/em6_download.html.

  • Cant find "Manage features" i am trying to set up ...

    cant find "Manage features" i am trying to set up an answer message for when im away

    Make sure you sign in on your personal account page via www.skype.com/go/myaccount as you can't set up voice messages using Skype Manager.
    Once you've signed in to your Skype web account page you will find the "Manage features" link in the "Account details" here:
    Follow the latest Skype Community News
    ↓ Did my reply answer your question? Accept it as a solution to help others, Thanks. ↓

  • Report & Layout Manager

    Hi,
    I have created User defined form. Now i have to display report when click on Preview button (Same as Standard document).
    Can we use report & layout manager to display report.
    Regards,
    Pravin

    Hello
    possible with development, and it is pending from the B1 version.
    Easy solutions are:
    - 8.81 you can use Crystal Reports and PLD
    - 2007 you can use PLD only or CR integration addon
    in Crystal:
    - You can create your layout and you can import into the system as report (not layout) into a specific folder
    - When you press the print or print preview button (eg menu action is indicated, menu id "520", "519"), then you can find the crystal report in the OCMN table with the following query
    select MenuUID from OCMN where Name = N'YOUR_REPORT_NAME'
    - next step is call the report with ActivateMenuItem and fill the parameters.
    Complete code for crystal
                Dim oRs As SAPbobsCOM.Recordset = oCompany.GetBusinessObject(BoObjectTypes.BoRecordset)
                Dim sQuery As String
                Dim sMenuID As String
                sQuery = "select MenuUID from OCMN where Name = N'YOUR_REPORT_NAME"
                oRs.DoQuery(sQuery)
                If oRs.Fields.Count > 0 Then
                    sMenuID = oRs.Fields.Item("MenuUID").Value.ToString
                    m_SBO_Application.ActivateMenuItem(sMenuID)
                    Dim oForm As SAPbouiCOM.Form = SBO_Application.Forms.ActiveForm
                    oForm.Items.Item("1000003").Specific.String = docentry
                    m_CrystalCriteriaFormID = oForm.UniqueID
                    oForm.Items.Item("1").Click(BoCellClickType.ct_Regular)
                Else : m_SBO_Application.MessageBox("NO PRINTING LAYOUT EXISTS!")
                End If
    In PLD, the logic is the same, but you must activate the User Queries print layout, and locate the report in the matrix.
    Regards
    János

  • I am English but live in Spain, When I got my new Macbook Pro I set the language to English, so far so good. Then I stupidly set the keyboard to British when it is obviously a Spanish keyboard. How can I reset it to Spanish. Sorry cant find question mark

    I am English but live in Spain, When I got my new Macbook Pro I set the language to English, so far so good. Then I stupidly set the keyboard to British when it is obviously a Spanish keyboard. How can I reset it to Spanish. Sorry cant find question mark

    LizMaddock,
    you can reset the input source to Spanish by selecting the Keyboard pane of System Preferences, selecting the Input Sources tab, and pressing the “+” button in the lower-left corner to select one of the Spanish input sources. The “Spanish – ISO” input source is most similar to the physical Spanish keyboard layout.

  • How do i resend the confirmation email for icloud? I sent it months ago without knowing and cant find it now. I aksi tryed deleating the account and making a new one, but the same one keeps comming up...

    OK, so im trying to use my icloud account, but months ago when i got my iphone, i sent myself the confirmation email, and i cant find it now. Is there a way to send another one? I also tryed deleating the account and starting over, but it keeps on pulling the same account up? what should i do?

    Welcome to the Apple Community.
    Put in a request for another verification e-mail to be sent to you.
    Start here, change your country if necessary and go to manage your account.

  • Cant find PS Extended CS6 in Download assistant?

    I cant find it anywhere in the download assistant and don't know why not. I am not to savvy with tech specs and dont know what is preventing me from downloading it. Pleas help me. I have an ACER ASPIRE 3830TG TIMELINE X 13.3".  Here are some specs:
    Windows 7 Home Premium 64bit
    Intel Core i3-2310M CPU
    3MB Intel Smart Cache, 2.10 GHz, 35 W
    13.3” CineCrystal HD LED TFT LCD (1366 x 768)
    4 GB DDR3 RAM
    750 GB HD @ 5400 RPM
    1GB NVIDIA GeForce GT 540M
    HDMI, VGA
    Gigabit Ethernet LAN and Wireless LAN 802.11b/g/n
    Two Acer 3DSonic Stereo Speakers
    1 x USB 3.0
    2 x USB 2.0
    Card Reader (SDHC, MMC, MS, MS PRO, xD)
    Ports: Headphone, Microphone, RJ-45
    No DVD-ROM drive

    Please follow the steps below to download Photoshop Extended CS6 directly without the download manager :
    1. Navigate to photoshop Extended CS6 Downloads page : http://www.adobe.com/cfusion/tdrc/index.cfm?product=photoshop
    2. Sign in with your Adobe ID
    3. Copy and paste the following links on the address bar one at a time and hit enter :
    Adobe Photoshop CS6 Extended English Windows
    http://trials2.adobe.com/AdobeProducts/PHSP/13/win32/Photoshop_13_LS16.7z
    http://trials2.adobe.com/AdobeProducts/PHSP/13/win32/Photoshop_13_LS16.exe
    4. Save both the files.
    5. Run the .exe file to start the installation.

  • I cant find reset the security questions answer ? how i would be able to reset it then !

    when i go to manage your account then password and question i cant find resert security question !! the one they send it by email !!

    Forgotten Security Questions / Answers...
    See Here > Apple ID: Contacting Apple for help with Apple ID account security
              Ask to speak with the Account Security Team...
    Or Email Here  >  Apple  Support  iTunes Store  Contact
    More Info >  Apple ID: All about Apple ID security questions
    Note:
    You can only set up and/or change a Rescue Email Before you forget the questions/answers

  • How to find HR Line manager of a PERNR present in PA0000

    Dear All,
    I am new to HR module. Can anyone tell me how to find the line manager of any user Id fetched from PA01005 against the pernr from PA0000 table

    This example find line manager for non-manager.
    REPORT ZDYN_SELECTIONS.
    DATA: user_pernr type pa0105-pernr,
           user_orgid type pa0001-orgeh,
           user_manager type pa0105-pernr,
           managers type table of OBJEC WITH HEADER LINE.
      PARAMETERS: usrid type pa0105-usrid.
      end-of-SELECTION.
      SELECT SINGLE pernr INTO user_pernr from PA0105
        WHERE usrid = usrid
          AND  begda <= sy-datum
          AND  endda >= sy-datum .
      SELECT SINGLE orgeh INTO user_orgid FROM pa0001
        WHERE pernr = user_pernr
          AND  begda <= sy-datum
          AND  endda >= sy-datum .
        CALL FUNCTION 'HRCM_ORGUNIT_MANAGER_GET'
          EXPORTING
            PLVAR                    = '01'
            OTYPE                    = 'O'
            OBJID                    = user_orgid
            BEGDA                    = sy-datum
            ENDDA                    = sy-datum
    *      PATH_ID                  = ' '
         TABLES
           MANAGER_INFO_TABLE       = managers
    *    EXCEPTIONS
    *      PATH_ERROR               = 1
    *      ROOT_ERROR               = 2
    *      NOTHING_FOUND            = 3
    *      OTHERS                   = 4
        IF SY-SUBRC <> 0.
    * Implement suitable error handling here
        ENDIF.
    LOOP AT managers.
      write managers-objid.
    ENDLOOP.

  • Have downloaded a song (Skyfall) and cant find it in the Artists or Album view.

    Have downloaded a song (Skyfall) from the iTunes store and cant find it in the iTunes11 Artists or Album view. I find it when I search and can play it. I have tried adding the file manually to my library. Still no show. The song also doesn't show in my smart playlist - 'recently added'. Any help greatly appreciated.

    Actual its not Photoshop  menu (File > Edit > Presets > Preset Manager > Load)
    It is menu Edit>Presets>Preset Manager...  That should open the Preset manager dialog.  You then need to use the pull-down menu and select tools.  Then Click on Load. That should Open a Load file selection dialog. Where you should be able to select a *.TPL file and click Load.

  • JAVAFX have FANTASTIC LAYOUT MANAGER!

    NEW version 2.2!!! is new from 2.1
    I find a fantastic layout for javafx, it is static and dynamc with Scene. You can create special indipendent rows and set all cols and rows size. Is better than java layout. You can create span cols. You can set grow in vertical and horizontal. You can set alignment and other. It is user friendly and simple to use for all. Is easy create form and panel with this layout.
    He's name is DigLayout. For tutorial and samples:
    See articles in jfxstudio web site: http://jfxstudio.wordpress.com/2009/03/05/new-advanced-javafx-layout-manager-diglayout-from-jdlayout-library/
    See official project webpage: http://code.google.com/p/diglayout/
    simple to use:
    import Window.JDLayout.;
    import javafx.stage.Stage;
    import javafx.scene.Scene;
    import javafx.scene.text.Text;
    import javafx.scene.text.Font;
    import javafx.scene.effect.;
    /   @author Diego Benna [email protected]
    var panel = DigLayout?{
            // All setting
           // Rows and Items
            digrows:[
                    Row{
                            items:[
                                    Item{
                                            valign:"middle"
                                            halign:"center"
                                            item:
                                                    javafx.ext.swing.SwingLabel? {
                                                            text: "Item 1"
                                    Item{
                                            valign:"middle"
                                            halign:"center"
                                            item:
                                                    javafx.ext.swing.SwingLabel? {
                                                            text: "Item 2"
                    Row{
                            items:[
                                    Item{
                                            valign:"middle"
                                            halign:"center"
                                            item:
                                                    javafx.ext.swing.SwingLabel? {
                                                            text: "Item 3"
                                    Item{
                                            valign:"middle"
                                            halign:"center"
                                            item:
                                                    javafx.ext.swing.SwingLabel? {
                                                            text: "Item 4"
    Stage{
            title : "UnitTest? Simple Panel"                                       
            scene : Scene{
                width: 540
                 height: 370
                content: [
                    panel
    What do you think??

    DiegoBenna wrote:
    NEW version 2.2!!! is new from 2.1
    I find a fantastic layout for javafx
    What do you think??I think you are doing a bit too much advertisements for your product, and pretending to "find" it when you made it is on the limit of honesty.
    I think I dislike CRYING OUT loud with capitals in forums and mailing lists.
    I think you are right to present your product, and you probably made a good product, but such marketing ploys don't make me feeling like trying it.
    Just my opinion, perhaps too arrogant, and certainly more looking upset than I am actually, but I felt I had to let you know, in case you wonder why you have so little reactions to your messages... :-) I don't mean to be offensive, somehow I try to help (otherwise I would just shut up and go my way).
    Have a good day and I sincerely wish your product will become as popular as it deserves.

Maybe you are looking for