Problem with Dynamic GUI in NB

Hi all!
i'm a noob in GUI programming, BTW i created a stand alone class (read app) that can draw a Line Graph.
Let's name this class Drawer.
Drawer extends JPanel, anyway when in my NB project i try to add the Drawer to a JPanel doing
// i added the following code in the initComponents()
Drawer d = new Drawer();
jPanel2.add(d); // jPanel2 is created by Drag & Drop in the IDEit doesn't happen anything, nothing is displayed, neither if i call the methods:
pack();
repaint();
updateUI();
suggestions?
thanks everyone!
Gio-Kun

Here i post the full example code:
this is the main class of the project:
Frame.java
package drawer;
import java.awt.Point;
public class Frame extends javax.swing.JFrame {
    /** Creates new form Frame */
    public Frame() {
        drawer = new Drawer();
        init();
    /*this is the init component modified by me to add the drawer object to the panel*/
    private void init(){
        panel = new javax.swing.JPanel();
        addButton = new javax.swing.JButton();
        jLabel1 = new javax.swing.JLabel();
        jLabel2 = new javax.swing.JLabel();
        yField = new javax.swing.JTextField();
        xField = new javax.swing.JTextField();
        setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
        panel.setBorder(new javax.swing.border.LineBorder(new java.awt.Color(0, 0, 0), 1, true));
        panel.setPreferredSize(new java.awt.Dimension(300, 200));
        org.jdesktop.layout.GroupLayout panelLayout = new org.jdesktop.layout.GroupLayout(panel);
        panel.setLayout(panelLayout);
        panelLayout.setHorizontalGroup(
            panelLayout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
            .add(0, 298, Short.MAX_VALUE)
        panelLayout.setVerticalGroup(
            panelLayout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
            .add(0, 198, Short.MAX_VALUE)
        addButton.setText("Add");
        addButton.addMouseListener(new java.awt.event.MouseAdapter() {
            public void mouseClicked(java.awt.event.MouseEvent evt) {
                addButtonMouseClicked(evt);
        jLabel1.setText("X");
        jLabel2.setText("Y");
        yField.setText("int y");
        yField.setPreferredSize(new java.awt.Dimension(75, 22));
        xField.setText("int x");
        xField.setPreferredSize(new java.awt.Dimension(75, 22));
        org.jdesktop.layout.GroupLayout layout = new org.jdesktop.layout.GroupLayout(getContentPane());
        getContentPane().setLayout(layout);
        layout.setHorizontalGroup(
            layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
            .add(layout.createSequentialGroup()
                .addContainerGap()
                .add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
                    .add(layout.createSequentialGroup()
                        .add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
                            .add(panel, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
                            .add(layout.createSequentialGroup()
                                .add(35, 35, 35)
                                .add(jLabel1)
                                .add(96, 96, 96)
                                .add(jLabel2)))
                        .add(20, 20, 20))
                    .add(org.jdesktop.layout.GroupLayout.TRAILING, layout.createSequentialGroup()
                        .add(xField, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
                        .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED, 30, Short.MAX_VALUE)
                        .add(yField, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
                        .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
                        .add(addButton)
                        .add(95, 95, 95))))
        layout.setVerticalGroup(
            layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
            .add(layout.createSequentialGroup()
                .addContainerGap()
                .add(panel, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
                .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED, 24, Short.MAX_VALUE)
                .add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.BASELINE)
                    .add(jLabel1)
                    .add(jLabel2))
                .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
                .add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.BASELINE)
                    .add(addButton)
                    .add(yField, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
                    .add(xField, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE))
                .add(12, 12, 12))
        /*Here i add the drawer object to the panel*/
        panel.add(drawer);
        /*i revalidate and repaint the panel*/
        panel.revalidate();
        panel.repaint();
        /*validation of the frame*/
        this.validate();
        this.pack();
    /*This method handles the insertion of new points on the Graph*/
    private void addButtonMouseClicked(java.awt.event.MouseEvent evt) {                                      
        Point p;
        int x = 0,y = 0;
        x = Integer.parseInt(xField.getText());
        y = Integer.parseInt(yField.getText());
        p = new Point(x,y);
        System.out.println(p.toString());
        drawer.addPoint(p);
     * @param args the command line arguments
    public static void main(String args[]) {
        java.awt.EventQueue.invokeLater(new Runnable() {
            public void run() {
                Frame frame;
                frame = new Frame();
                frame.setResizable(false);
                frame.setVisible(true);
    // Variables declaration - do not modify                    
    private javax.swing.JButton addButton;
    private javax.swing.JLabel jLabel1;
    private javax.swing.JLabel jLabel2;
    private javax.swing.JPanel panel;
    private javax.swing.JTextField xField;
    private javax.swing.JTextField yField;
    // End of variables declaration                  
    private Drawer drawer;
}here there's the other class of the project:
the task of this class is painting the graph.
you can try separately by uncommenting the main.
Drawer.java
package drawer;
import java.util.*;
import java.awt.*;
import javax.swing.*;
import java.lang.Thread;
public class Drawer extends JPanel{
     LinkedList<Point> pointList;
     Graphics g;
     public Drawer(){
          pointList = new LinkedList<Point>();
          setPreferredSize(new Dimension(290,190));
          setBackground(Color.WHITE);
                /*to be used if this class is used as a stand alone application*/
                //pointList.add(new Point(0,0));
          //pointList.add(new Point(30,50));
          //pointList.add(new Point(50,150));
     public void paintComponent(Graphics g){
          super.paintComponent(g);
          g.setColor(Color.BLACK);
          Point start, end;
          //System.out.println(pointList.size());
          start = (Point)pointList.get(0);
          for(int i=1;i<pointList.size();i++){
               end = (Point)pointList.get(i);
               //System.out.println("Start: "+start.toString()+"\tEnd: "+end.toString());
               g.drawLine(start.x,290-start.y,end.x,190-end.y);
               start = end;
        /*this method is called only if you use this class as stand alone application*/
     public void addItems(){
          pointList.add(new Point(70,255));
                pointList.add(new Point(70,352));
                pointList.add(new Point(80,255));
                pointList.add(new Point(110,255));
                repaint();
        public void addPoint(Point p){
            pointList.add(p);
            System.out.println("Successfully added point:"+p.toString()+"to the pointList");
            repaint();
     public static void main(String[] args){
          JFrame frame = new JFrame("Line drawer");
          frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
          Drawer d= new Drawer();
          frame.getContentPane().add(d);
          frame.setResizable(false);
          frame.pack();
          frame.setVisible(true);
          Thread t = new Thread();
          try{
               t.sleep(3000);
          catch(Exception e){}
          d.addItems();
}hope this clarify the problem.
thanks in advance.
sorry camickr, i clicked on the wrong forum but i hope this will be the last question on this problem.
thanks everyone!

Similar Messages

  • After Effects won't close/Problems with dynamic links

    When I quit After Effects the icon still shows up and it says that it is still open, even force quit will not work. Also having problems with dynamically linked files between after effects and Premiere pro. Rendering in Premiere doesn't work unless I go to AE, save the project, then go back to Premiere. I have OSX Mavericks 10.9.2, a late 2012 mac pro, and AE CC 12.2.1.5

    Kevin: would appreciate further thoughts on this.
    I am using Pr2014, version 8.0.0 I am using AE2014, version 13.0.2.3. When I was on earlier versions of each, I had no problem importing AE comps into Pr. I'd choose import in Pr, then select the AE project, then select the comp. But with my new and improved versions of AE and Pr, I keep getting "importer reported a generic error."
    I also tried to go the other way. I selected in Pr the clips I wanted to work on in AE, and then tried "replace with AE comp" but got the "generic error" message again..
    Finally, I attempted to create a Dynamic Link from Pr via the File menu, but with each of the options from there, I got "failed to connect to AE Dynamic Link"
    Any advice you can share, would be most welcome.

  • Problem with dynamic LOV and function

    Hello all!
    I'm having a problem with a dynamic lov in APEX 3.0.1.00.08. Hope you can help me!
    I have Report and Form application. On the Form page i have a Page Item (Popup Key LOV (Displays description, returns key value)).
    When i submit the sql code in the 'List of vaules defention' box. I get the following message;
    1 error has occurred
    LOV query is invalid, a display and a return value are needed, the column names need to be different. If your query contains an in-line query, the first FROM clause in the SQL statement must not belong to the in-line query.
    When i excecute the code below in TOAD or in the SQL Workshop it returns the values i want to see. But somehow APEX doesn't like the sql....
    SELECT REC_OMSCHRIJVING d, REC_DNS_ID r FROM
    TABLE(CAST(return_dns_lov_fn(:P2_DNS_ID) AS dns_table_type)) order by 1
    returns_dns_lov_fn is a function, code is below;
    CREATE OR REPLACE FUNCTION DRSSYS.return_dns_lov_fn (p2_dns_id number)
    RETURN dns_table_type
    AS
    v_data dns_table_type := dns_table_type ();
    BEGIN
    IF p2_dns_id = 2
    THEN
    FOR c IN (SELECT dns_id dns, omschrijving oms
    FROM d_status dst
    WHERE dst.dns_id IN (8, 10))
    LOOP
    v_data.EXTEND;
    v_data (v_data.COUNT) := dns_rectype (c.dns, c.oms);
    END LOOP;
    RETURN v_data;
    END IF;
    END;
    and the types;
    CREATE OR REPLACE TYPE DRSSYS.dns_rectype AS OBJECT (rec_dns_id NUMBER, rec_omschrijving VARCHAR2(255));
    CREATE OR REPLACE TYPE DRSSYS.dns_table_type AS TABLE OF dns_rectype;
    I tried some things i found on this forum, but they didn't work as well;
    SELECT REC_OMSCHRIJVING display_value, REC_DNS_ID result_display FROM
    TABLE(CAST(return_dns_lov_fn(:P2_DNS_ID) AS dns_table_type)) order by 1
    SELECT REC_OMSCHRIJVING display_value d, REC_DNS_ID result_display r FROM
    TABLE(CAST(return_dns_lov_fn(:P2_DNS_ID) AS dns_table_type)) order by 1
    SELECT a.REC_OMSCHRIJVING display_value, a.REC_DNS_ID result_display FROM
    TABLE(CAST(return_dns_lov_fn(:P2_DNS_ID) AS dns_table_type)) a order by 1
    Edited by: rajan.arkenbout on 8-mei-2009 14:41
    Edited by: rajan.arkenbout on 8-mei-2009 14:51

    I just had the same problem when I used a function in a where clause.
    I have a function that checks if the current user has acces or not (returning varchar 'Y' or 'N').
    In where clause I have this:
    where myFunction(:user, somePK) = 'Y'
    It seems that when APEX checked if my query was valid, my function triggered and exception.
    As Varad pointed out, check for exception that could be triggered by a null 'p2_dns_id'
    Hope that helped you out.
    Max

  • Performance problems with SAP GUI 7.10 and BEx 3.5 Patch 400?

    Hi everybody,
    we installed SAP GUI 7.10 and BEx 3.5 Patch 400 and detected hugh performance problems with this version in comparison to the SAP GUI 6.40 and BEx 3.5 or BEx 7.0 Patch 800.
    Does anybody detect the same problems?
    Best regards,
    Ulli

    Most important question when you are talking about performance-issues:
    which OC are you working on and which excel version?
    ciao
    Joke

  • In case of problems with SAP GUI for Java  ...

    Hello all,
    in case of having problems (errors, ABAP dumps etc.) with SAP GUI for Java, please create an OSS message on component BC-FES-JAV with information described in OSS note 326558
    http://www.service.sap.com/~form/sapnet?_FRAME=CONTAINER&_OBJECT=011000358700010521522001.
    This makes sure our official support channels get aware of your problem.
    Thanks and best regards
    Rolf-Martin

    Hello Rolf-Martin,
    i don't have access to this website to view the note.
    The version of the Suse libc is:
    GNU C Library stable release version 2.3.2, by Roland McGrath et al.
    Copyright (C) 2003 Free Software Foundation, Inc.
    This is free software; see the source for copying conditions.
    There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
    PARTICULAR PURPOSE.
    Compiled by GNU CC version 3.3 20030226 (prerelease) (SuSE Linux).
    Compiled on a Linux 2.4.20 system on 2003-03-13.
    Best Regards,
    Piotr Brostovski

  • Problem with SAP GUI for HTML

    Hi SDN
    I am creating a SAP transaction iView with SAP GUI for HTML. I have give the Transaction code VA01 but when i execute the the iView it is displaying the  SAP Easy Access screen in html. Can any one suggest me how to rectify this error and display the required transaction in html.
    Thanks in advance.
    Regards
    Basha

    Hi Basha,
    Try this in the browser:
    http://<host>:<port>/sap/bc/gui/sap/its/va01?sap-client=100(XXX)
    1) It will ask for the username and password
    2) Enter the credentials and it should directly take you to the VA01 transaction
    If it fails again, try this:
    http://<host>:<port>/sap/bc/gui/sap/its/vl31w?sap-client=100(XXX)
    This should display the "Create Inbound Delivery NotificationTitle Create Inbound Delivery Notification " sreen."
    If it faisl again, there is some problem with the way the ITS has set up. Check with your basis.
    Thanks,
    Sathya

  • CS3 - Problem with dynamic text -

    Hello,
    I have a problems with my text, when i write a few ligne inside a dynamic text box, if i selec the text and by the way drag it down the first line goes up and disapear. Is there any way to solve this?

    This is the Flash Player forum; please post your question in the appropriate product forum.

  • Oracle 9i, Rel.2 - Problems with dynam statement and cursor

    Hello,
    I have the following problem with Oracle 9i, Release 2:
    I have a SQL-statement, which I create with the help of a configuration table. That means I don’t know how this statement looks at runtime. It could be look like this:
    SELECT Att1, Att2, Att3
    FROM Tab1
    or this…
    SELECT Att1, Att2
    FROM Tab1
    or this…
    SELECT Att1
    FROM Tab1
    etc.
    That means I don’t know in advance how many columns will be in the select-clause.
    Here my code snippet until here:
    v_query_str := 'SELECT ' || v_select_clause_str
    || ' FROM cb.' || v_table;
    ,,v_select_clause_str" willl be created dynamically
    ,,v_table" is as well from the config-table
    Now I want to iterate through the result of the query and do further processing.
    For this reason I wanted to use a cursor, iterate through the rows and save every value of each row in an own variable (but I don’t know the number of columns!!!).
    But how can I open a cursor and iterate through it without knowing the number of columns???
    The following code is NOT working:
    TYPE t_dataColumnComp IS TABLE OF VARCHAR2(200);
    a_dataColumnComp t_dataColumnComp;
    --here I create the query…
    v_query_str := 'SELECT ' || v_select_clause_str
    || ' FROM cb.' || v_table;
    OPEN c_tempAtt FOR v_query_str;
    LOOP
    FETCH c_tempAtt INTO a_dataColumnComp; --THIS DON’T WORK
    EXIT WHEN c_tempAtt%NOTFOUND;
    FOR i IN 1..a_dataColumnComp.COUNT
    LOOP
    DBMS_OUTPUT.PUT_LINE(a_dataColumnComp(i));
    END LOOP;
    END LOOP;
    CLOSE c_tempAtt; --close cursor variable
    Regards
    Homer

    You will need to use DBMS_SQL to handle this since the number of columns in the result set is not known until runtime.
    See here for an example of using DBMS_SQL:
    http://asktom.oracle.com/pls/ask/f?p=4950:8:::::F4950_P8_DISPLAYID:235814350980

  • DB2 problems with Dynamic SQL

    Does anyone out there use dynamic SQL with DB2? If so, are the sql statements causing a PreparedStatement to be executed on DB2. I posted this question similarly before, but never resolved it, and it is killing me. I have to resolve this ASAP!
    Here is the problem: My DB2 Admin says that EVERY TIME I access the database, my Java app is causing the database to create a PreparedStatement. However, I'm using Statement objects exclusively, with dynamic SQL. He says that DB2 needs an "access path" for the client, and that it converts the Statement to a PreparedStatement, as this is the only way to get this "access path". He says the only solution is either stored procedures or SQLJ, which will do the binding in advance, and increase performance tremendously. However, I am STRONGLY opposed to using SQLJ, and if we do stored procedures, we'd have to write one for every possible SQL statment! I KNOW there is a better solution.
    Is anyone out there having these problems with JDBC and DB2? Surely someone out there uses DB2 and JDBC and either has these problems or can confirm that something is incorrectly configured on the database side.
    Any help would be great. Thanks, Will

    Now I'm wondering if maybe the PreparedStatements are ONLY being called on the database when I call getConnection(), and not when I call executeQuery() or executeUpdate() from the Statement object. I just can't see why the database would have to make an access path for every SQL statement executed, but I could see it creating an access path for every connection requested. Any thoughts on that theory?

  • [SOLVED] Problem with running GUI apps as root

    Hi,
    I have a serious problem with running any kind of software having GUI as root, which is indispensable for editing system files. For example I want to edit /etc/pacman.conf file with KWrite, and here's what I get
    [zbyszek@barca ~]$ xhost +
    access control disabled, clients can connect from any host
    [root@barca zbyszek]# kwrite /etc/pacman.conf
    kwrite(11282): Session bus not found
    KCrash: Application 'kwrite' crashing...
    KCrash: Attempting to start /usr/lib/kde4/libexec/drkonqi from kdeinit
    sock_file=/root/.kde4/socket-barca/kdeinit4__0
    Warning: connect() failed: : Nie ma takiego pliku ani katalogu
    KCrash: Attempting to start /usr/lib/kde4/libexec/drkonqi directly
    drkonqi(11284): Session bus not found
    Can anyone help me with this? Can anyone tell me how to login as root?
    Thank you in advance.
    Last edited by Zibi1981 (2010-10-05 19:30:20)

    O.K., but how to run KWrite as root on my account??? That was my main question
    karol wrote:
    Try running 'xhost +' as root.
    https://bbs.archlinux.org/viewtopic.php?pid=817674
    Maybe vim is in edit mode when you press 'i' but it doesn't show '-- INSERT --' at the bottom of the screen.
    Here you are
    [root@barca zbyszek]# xhost +
    access control disabled, clients can connect from any host
    [root@barca zbyszek]# kwrite /etc/pacman.conf
    kwrite(12941): Session bus not found
    KCrash: Application 'kwrite' crashing...
    KCrash: Attempting to start /usr/lib/kde4/libexec/drkonqi from kdeinit
    sock_file=/root/.kde4/socket-barca/kdeinit4__0
    Warning: connect() failed: : Nie ma takiego pliku ani katalogu
    KCrash: Attempting to start /usr/lib/kde4/libexec/drkonqi directly
    drkonqi(12942): Session bus not found
    Last edited by Zibi1981 (2010-09-25 10:19:50)

  • Help with Dynamic GUI

    I am trying to create a dynamic gui for a program that when given three names, it will make a list of matches ( wrestling ) against each other.. I got it so when you click foward once.. it brings up the specified amount of text fields.. but when i click previous, it does not pack it fully, and the buttonPanel does not go back to the minimal size, and keeps the whole frame long.
    [code="face.java"]import java.awt.*;
    import java.awt.Component.*;
    import java.awt.event.*;
    public class face extends GUIFrame implements WindowListener, ActionListener {
    static TextField[] nameFields;
    List howMany;
    TextArea finish;
    Button forward, back, startOver, print;
    Panel mainPanel, buttonPanel, numberPanel, namePanel, matchesPanel;
    GridBagLayout gbl;
    GridBagConstraints gbc;
    BorderLayout bpl, mpl;
    CardLayout cl;
    Choice numbers;
    public face() {
    super("Wrestling Order");
    gbl = new GridBagLayout();
    gbc = new GridBagConstraints();
    setLayout(gbl);
    mainPanel = new Panel();
    buttonPanel = new Panel();
    bpl = new BorderLayout();
    back = new Button("Previous");
    back.setEnabled(false);
    back.addActionListener(this);
    back.setActionCommand("numOf");
    buttonPanel.setLayout(bpl);
    buttonPanel.add(back, BorderLayout.WEST);
    forward = new Button("Forward");
    forward.addActionListener(this);
    forward.setActionCommand("names");
    buttonPanel.add(forward, BorderLayout.EAST);
    startOver = new Button("Start Over");
    buttonPanel.add(startOver, BorderLayout.SOUTH);
    //mainPanel
    numberPanel = new Panel();
    numbers = new Choice();
    numbers.add("3");
    numbers.add("4");
    numbers.add("5");
    numberPanel.setLayout(bpl);
    numberPanel.add(numbers, BorderLayout.CENTER);
    cl = new CardLayout();
    mainPanel.setLayout(cl);
    mainPanel.add("numbers", numberPanel);
    gbc.gridx = 0;
    gbc.gridy = 0;
    gbc.gridwidth = GridBagConstraints.REMAINDER;
    gbl.setConstraints(mainPanel, gbc);
    add(mainPanel);
    gbc.gridx = 0;
    gbc.gridy = 5;
    gbl.setConstraints(buttonPanel, gbc);
    add(buttonPanel);
    addWindowListener(this);
    pack();
    setVisible(true);
    public Panel makeNamePanel(int numOfNames) {
    gbl = new GridBagLayout();
    gbc = new GridBagConstraints();
    gbc.gridx = 1;
    gbc.gridy = GridBagConstraints.RELATIVE;
    nameFields = new TextField[numOfNames];
    Panel makePanel = new Panel();
    for (int x=0; x < nameFields.length; x++) {
    nameFields[x] = new TextField(20);
    makePanel.add(nameFields[x]);
    return makePanel;
    public void windowClosing(WindowEvent e) {
    dispose();
    System.exit(0);
    public void windowOpened(WindowEvent e) {}
    public void windowActivated(WindowEvent e) {}
    public void windowDeactivated(WindowEvent e) {}
    public void windowIconified(WindowEvent e) {}
    public void windowDeiconified(WindowEvent e) {}
    public void windowClosed(WindowEvent e) {}
    public void actionPerformed(ActionEvent e) {
    if (e.getActionCommand() == "names") {
    namePanel = makeNamePanel(Integer.parseInt(numbers.getItem(numbers.getSelectedIndex())));
    mainPanel.add("name", namePanel);
    cl.next(mainPanel);
    forward.setActionCommand("final");
    pack();
    back.setEnabled(true);
    if (e.getActionCommand() == "numOf") {
    cl.previous(mainPanel);
    pack();
    forward.setActionCommand("names");
    back.setEnabled(false);
    that is the face.java .. it extends GUIFrame.. which is as follows..
    * GUIFrame
    * An extension of Frame that uses a WindowAdapter to
    * handle the WindowEvents and is centered.
    import java.awt.*;
    import java.awt.event.*;
    public class GUIFrame extends Frame {
      public GUIFrame(String title) {
        super(title);
        setBackground(SystemColor.control);
        addWindowListener(new WindowAdapter() {
          //only need to override the method needed
          public void windowClosing(WindowEvent e) {
            dispose();
            System.exit(0);
      /* Centers the Frame when setVisible(true) is called */
      public void setVisible(boolean visible) {
        if (visible) {
          Dimension d = Toolkit.getDefaultToolkit().getScreenSize();
          setLocation((d.width - getWidth())/2,
                      (d.height - getHeight())/2);
        super.setVisible(visible);
    }If you could help me out.. Thanks..

    Have you tried using some other layouts... GridBagLayout is a complicated thing to figure out... Might be easier to use some nested panels with different layouts... Particularly, look at SpringLayout.

  • Problem with Dynamic Node & UI Elements

    Hi,
                                            The scenario is to create an Questioaire.Since the number questions which I get from R/3 may vary, I have created the Dynamic Node which is mapped with Dynamic set of Radio button Group by index for options & Dynamic text view for displaying Questions..  A New Dynamic Node will be created for each set of Questions .The Number of questions displayed per page is controlled by the Static Counter Variable....
                                              Now the issue is ,if i click back button the count will be initialized so again it needs to trigger the DoModifyView(). at that time It is arising an exception "Duplicate ID for view & Radio button ..." because while creating Dynamic node i used to have "i" value along the Creation of node name...
    for(i=Count;i<i<wdContext.nodeQuestions().size();i++)
                   customnod=<b>nodeinfo.getChild("Questionaire"+i);</b>
                        if(customnod==null)
    Its not possible to create a new node whenever i click the Back button.
    At the same time i am not able to fetch the elements which had already created Dynamically...
    How do i make the Next & back button work?
    If anyone  bring me the solution It would be more helpful to me.
    Thanks in advance..
    Regards,
    Malar

    Hi,
          We can Loop through the Node Elements but how can we do Option Button Creation for each set of question Options?. At design time we can not have the radio buttons,because we do not know how many set of questions are available at the Backend.

  • Problem with Dynamically accessing EJB Class objects in WL 7.0 SP1

    I am trying to build a component which has the ability to instantiate and execute
    an known EJB method on the fly.
    I have managed to build the component but when I try and execute it I get a ClassNotFoundException.
    I know that the EJB I am trying to invoke is deployed and available on the server,
    as I can see it in the console, I also seen to have been able to get the remote
    interface of the object, my problem occurs when I try and access the class object
    so I can perform a create on the object and then execute my method
    The code I have written is below:
    private Object getRemoteObject(Context pCtx, String pJNDIName, String pHomeBean)
    throws Exception {
         String homeCreate = "create";
         Class []homeCreateParam = { };
         Object []homeCreateParamValues = {};           
    try {  
    //This call seems to work and doesn't throw an exception     
    Object home = pCtx.lookup(pJNDIName);
    //However this call throws a java.lang.ClassNotFoundException
    Class homeBean = Class.forName(pHomeBean);
    Method homeCreateMethod = homeBean.getMethod(homeCreate,homeCreateParam);
    return homeCreateMethod.invoke(home, homeCreateParamValues);
    } catch (NamingException ne) {             
    logStandardErrorMessage("The client was unable to lookup the EJBHome.
    Please make sure ");
    logStandardErrorMessage("that you have deployed the ejb with the JNDI
    name "+pJNDIName+" on the WebLogic server ");
    throw ne;
    } catch (Exception e) {
    logStandardErrorMessage(e.toString());
    throw e;     
    Any advice would be really appreciated, I'm fast running out of ideas, I suspect
    it has something to do with the class loader but I'm not sure how to resolve it
    Regards
    Jo Corless

    Hello Joanne,
    Congratulations! I'm very happy that you've managed to fix your problem. It's
    always essential to understand how to package applications when deploying on BEA
    WebLogic. Usually, by throwing everything into an EAR file solves just about all
    the class loader problems. :-) Let us know if you have any further problems that
    we can assist you with.
    Best regards,
    Ryan LeCompte
    [email protected]
    http://www.louisiana.edu/~rml7669
    "Joanne Corless" <[email protected]> wrote:
    >
    >
    I've fixed it!!!!!!!!
    Thanks to everyone who gave me help!!!!
    The class loader was the culprit which is what I suspected all along.
    As soon
    as I put the 2 jar files I was using into an EAR file the problem went
    away!!!!!
    Thanks again
    Jo Corless
    "Ryan LeCompte" <[email protected]> wrote:
    Hello Joanne,
    As Mr. Woollen mentioned, I also believe it's a problem with the class
    loader.
    You need to be careful how you arrange your EJBs, because WebLogic has
    a specific
    method in which it loads classes in an EAR, JAR, and WAR file(s). Please
    refer
    to http://dev2dev.bea.com/articles/musser.jsp for more information about
    BEA WebLogic
    class loading mechanisms and caveats. Also, try printing out the various
    methods
    that are available on the object that was returned to you via reflection.
    For
    example, use the getMethods() method, which returns an array of Method
    objects
    that you can subsequently cycle through and print out the various method
    names.
    This way you can discover if the class found/returned to you is indeed
    the one
    you intend to locate.
    Hope this helps,
    Ryan LeCompte
    [email protected]
    http://www.louisiana.edu/~rml7669
    Rob Woollen <[email protected]> wrote:
    I believe the issue is the home interface class for this EJB is not
    available in the class loader which is doing the reflection.
    If you do:
    getClass().getClassLoader().loadClass(homeInterfaceClassName)
    I suspect it will fail. Reflection still requires that the class be
    loadable.
    -- Rob
    Joanne Corless wrote:
    Hi Slava,
    If I make my code look like you describe below I get a compliationerror telling
    me that
    home.getMethod() is not recognised (no such method)
    If I change it slightly and use
    Method homeCreateMethod =
    home.getClass().getMethod(homeCreate,homeCreateParam);
    The code will compile OK but when executed it still throws a NoSuchMethodException
    Any ideas ?
    Thanks for your help so far
    Regards
    Jo Corless
    Your code should look like
    Object home = pCtx.lookup(pJNDIName);
    Method homeCreateMethod =
    home.getMethod(homeCreate,homeCreateParam);
    return homeCreateMethod.invoke(home, homeCreateParamValues);
    Regards,
    Slava Imeshev
    "Joanne Corless" <[email protected]> wrote in message
    news:[email protected]...
    Hi Ryan,
    I also wanted to mention that if you do a "header search" in this
    particular
    newsgroup
    with the search query as "reflection", you will see many previousmessages
    regarding
    reflection and EJBs. I believe you could learn a lot from thedifficulties
    that
    others have faced and solved.I tried that and although there was a number of similar cases noneof them
    actually
    seem to fix my issue. Thanks for the suggestion though
    Are the EJBs that you are trying to access accessible via your
    system
    classpath?
    Try to avoid having them accessible via the main system classpath,and
    only bundle
    them in your appropriate EJB jar files (contained in an EAR file,for
    example).Maybe I should have laid the problem out a little clearer.
    I have a number of EJB's bundled up in a JAR file which is hot deployedto
    the
    server. Within this first JAR file is an EJB (SSB) component that
    needs
    to
    be
    able to invoke a known method on another EJB. This second EJB may
    or
    may
    not be
    within the first JAR file but it also will be hot deployed.
    The component trying to invoke the method on the 2nd EJB has to
    be
    able to
    create
    an instance of the 2nd EJB without actually knowing anything bar
    a
    JNDI
    Name which
    is passed in at runtime.
    I can get as far as doing the
    Object home = pCtx.lookup(pJNDIName);
    This returned a class with the name
    "com.csc.edc.projects.allders.httppostoffice.postman.PostmanBean_mp8qy2_Home
    Impl_WLStub"
    My problem seems to occur when I try and invoke the create method
    Method homeCreate = home.getClass().getMethod("create", new Class[0]);
    My code throws a java.lang.NoSuchMethodException at this point so
    I
    am
    unable
    to progress to the next step of :
    Object bean = homeCreate.invoke(home, null);
    So I can return the instantiated bean back to the calling client.
    Why am I getting the NoSuchMethodException, is is because I am gettinga
    stub
    back rather than the home interface and if so how do I get the truehome
    interface
    from the bean
    Thanks in advance
    Jo Corless

  • Problems with Dynamic Remastering (DRM) with 10.2.0.4 on Linux Itanium

    One of my customers is having severe RAC performance issues, which appeared three times so far. Each time, the performance impact lasted around 10 minutes and caused basically a hang of the application. ASH investigation revealed that the time frame of performance issues exactly matches a DRM operation of the biggest segment of the database. During the problematic time period, there are +50 instead of 2-3 active sessions and they are mostly waiting for gc related events: "gc buffer busy","gc cr block busy", "gc cr block 2-way", "gc current block 2-way", "gc current request", "gc current grant busy", etc.
    In addition, there is one single session which has wait event "kjbdrmcvtq lmon drm quiesce: ping completion" (on instance 1) and 1-3 sessions with wait event "gc remaster". (on instance 2)
    Does anybody have any experience with DRM problems with 10.2.0.4 on Linux Itanium?
    I know that it is possible to deactive DRM, but usually it should be beneficial to have it enabled. I could not find any reports of performance impact during DRM operation on metalink. Support is involved but clueless.
    Regards,
    Martin

    Oracle Support has requested stacktraces of lms processes during the period of performance degradation. We decided to enable OSWatcher to get systemwide linux data and procwatcher to get lms process stacktraces. We created a Grid Control User Defined Metric to check whether the symptoms of a DRM performance problem is taking place. Then we triggered the lms stacktraces with a Grid Control Response Action script of the UDM.
    Oracle Support has also requested global hanganalyze and system state dumps but we decided not to collect system state dumps because of the big additional performance impact.
    The oswatcher data showed that during the drm period, the lms processes had very high CPU resource utilization.
    In the meantime Oracle Support has confirmed that we are hitting 6960699. We have received patch 8516675 which includes the bugfix and have installed it. Now, we are waiting to see whether this indeed fixes the issue.

  • Problem with SAP GUI 710 in SDP94

    Hi!
    In SDP94, with SAP GUI 640, I have thousand separator. But with SAP GUI 710 there isn't thousand separator. Why?
    The user would like to recover the thousand separator. How can i do?
    More information about my sap gui:
    File version : 7100.1.3.1029
    Version : 919412
    Thanks by advance,
    LB
    Message was edited by:
            Laurent BOUDART

    Hello,
    I am getting Coma seprator for neumeric values with GUI7.0
    see the details below
    SAP PC VERSION INFORMATION: saplogon.exe
    MAIN MODULE INFORMATION:
       Name............: saplogon.exe
       Description.....: SAP Logon for Windows
       Product version.: 710 Final Release
       File version....: 7100.1.0.1027
       Build number....: 0
    SYSTEM INFORMATION:
       Operating system: Whistler 5.1 (2600)
                         Service Pack 2
    LOADED MODULES:
    Name                                                                                Product-Version   File-Version     Size       Date/Time                    
    C:\Program Files\Common Files\Microsoft Shared\INK\SKCHUI.DLL                                                     1.0.1038.0        1.0.1038.0        000364607 07.02.2001  02:17            
    C:\Program Files\Common Files\system\ado\msado15.dll                                                              2.81.1128.0       2.81.1128.0       000536576 26.12.2006  18:37            
    C:\Program Files\Common Files\System\ado\msadox.dll                                                               2.81.1128.0       2.81.1128.0       000200704 26.12.2006  18:37            
    C:\Program Files\Common Files\system\ado\msadrh15.dll                                                             2.81.1117.0       2.81.1117.0       000057344 04.08.2004  13:30            
    C:\Program Files\Common Files\system\ole db\oledb32.dll                                                           2.81.1117.0       2.81.1117.0       000487424 04.08.2004  13:30            
    C:\Program Files\Common Files\system\ole db\OLEDB32R.DLL                                                          2.81.1117.0       2.81.1117.0       000065536 04.08.2004  13:30            
    C:\Program Files\SAP\FrontEnd\sapgui\dbghelp.dll                                                                  4.0.0018.0        4.0.18.0          000676864 29.12.2006  15:15            
    C:\Program Files\SAP\FrontEnd\sapgui\gngmb.dll                                                                    -                  -                000131072 29.12.2006  15:15            
    C:\Program Files\SAP\FrontEnd\sapgui\guixt.dll                                                                    2006.4.2          2006.4.2.0        001994802 29.12.2006  15:15            
    C:\Program Files\SAP\FrontEnd\sapgui\LPRINTG.DLL                                                                  lprintg 7.10      7100.0.0.31       000921600 29.12.2006  15:15            
    C:\Program Files\SAP\FrontEnd\sapgui\sapapihk.dll                                                                 1, 0, 0, 5        1.0.0.5           000151552 29.12.2006  15:15            
    C:\Program Files\SAP\FrontEnd\sapgui\sapawole.dll                                                                 710 Final Release 7100.1.0.228      000077824 29.12.2006  15:15            
    C:\Program Files\SAP\FrontEnd\sapgui\sapawrfc.dll                                                                 710 Final Release 7100.1.0.248      000073728 29.12.2006  15:15            
    c:\program files\sap\frontend\sapgui\sapcltfc.ocx                                                                 710 Final Release 7100.1.0.101      000339968 29.12.2006  15:15            
    C:\Program Files\SAP\FrontEnd\sapgui\sapcomni.dll                                                                 710 Final Release 7100.1.0.27       001044480 29.12.2006  15:15            
    c:\program files\sap\frontend\sapgui\sapdatap.ocx                                                                 710 Final Release 7100.1.0.252      000454656 29.12.2006  15:15            
    C:\Program Files\SAP\FrontEnd\sapgui\sapdpams.dll                                                                 710 Final Release 7100.1.0.819      001150976 29.12.2006  15:15            
    c:\program files\sap\frontend\sapgui\sapdpcts.ocx                                                                 710 Final Release 7100.1.0.210      000155648 29.12.2006  15:15            
    C:\Program Files\SAP\FrontEnd\sapgui\sapfctrl.dll                                                                 710 Final Release 7100.1.0.313      000188416 29.12.2006  15:15            
    C:\Program Files\SAP\FrontEnd\sapgui\sapfdraw.dll                                                                 710 Final Release 7100.1.0.253      000118784 23.01.2007  11:56            
    C:\Program Files\SAP\FrontEnd\sapgui\sapfewcb.dll                                                                 710 Final Release 7100.1.0.217      000077824 29.12.2006  15:15            
    C:\Program Files\SAP\FrontEnd\sapgui\sapfewcls.dll                                                                710 Final Release 7100.1.0.4        000047104 29.12.2006  15:15            
    C:\Program Files\SAP\FrontEnd\sapgui\sapfewcx.dll                                                                 710 Final Release 7100.1.0.209      000356352 29.12.2006  15:15            
    C:\Program Files\SAP\FrontEnd\sapgui\sapfewdp.dll                                                                 710 Final Release 7100.1.0.112      000327680 09.01.2007  07:25            
    C:\Program Files\SAP\FrontEnd\sapgui\sapfewdr.dll                                                                 710 Final Release 7100.1.0.220      000090112 29.12.2006  15:15            
    C:\Program Files\SAP\FrontEnd\sapgui\sapfewed.dll                                                                 710 Final Release 7100.1.0.9        000026624 29.12.2006  15:15            
    C:\Program Files\SAP\FrontEnd\sapgui\sapfewnls.dll                                                                710 Final Release 7100.1.0.18       000081920 29.12.2006  15:15            
    C:\Program Files\SAP\FrontEnd\sapgui\sapfewrm.dll                                                                 710 Final Release 7100.1.0.333      000122880 29.12.2006  15:15            
    C:\Program Files\SAP\FrontEnd\sapgui\sapfewtr.dll                                                                 710 Final Release 7100.1.0.227      000073728 29.12.2006  15:15            
    C:\Program Files\SAP\FrontEnd\sapgui\sapfewui.dll                                                                 710 Final Release 7100.1.0.385      000663552 29.12.2006  15:15            
    C:\Program Files\SAP\FrontEnd\sapgui\sapfewut.dll                                                                 710 Final Release 7100.1.0.262      000094208 29.12.2006  15:15            
    C:\Program Files\SAP\FrontEnd\sapgui\sapfhook.dll                                                                 710 Final Release 7100.1.0.206      000025088 29.12.2006  15:15            
    C:\Program Files\SAP\FrontEnd\sapgui\sapfront.dll                                                                 710 Final Release 7100.1.0.3050     002162688 23.01.2007  11:56            
    C:\Program Files\SAP\FrontEnd\sapgui\sapguilib.dll                                                                710 Final Release 7100.1.0.8991     000700416 29.12.2006  15:15            
    C:\Program Files\SAP\FrontEnd\sapgui\sapguirm.ocx                                                                 710 Final Release 7100.1.0.213      002752512 29.12.2006  15:15            
    c:\program files\sap\frontend\sapgui\sapguisv.ocx                                                                 710 Final Release 7100.1.0.239      000393216 29.12.2006  15:15            
    c:\program files\sap\frontend\sapgui\saphtml.ocx                                                                  710 Final Release 7100.1.0.75       000462848 29.12.2006  15:15            
    c:\program files\sap\frontend\sapgui\saphtmlp.dll                                                                 710 Final Release 7100.1.0.11       000069632 29.12.2006  15:15            
    c:\program files\sap\frontend\sapgui\sapimage.dll                                                                 710 Final Release 7100.1.0.29       000159744 29.12.2006  15:15            
    C:\Program Files\SAP\FrontEnd\sapgui\saplgdll.dll                                                                 710 Final Release 7100.1.0.989      000323584 29.12.2006  15:15            
    C:\Program Files\SAP\FrontEnd\sapgui\saplgnui.dll                                                                 710 Final Release 7100.1.0.23       000524288 29.12.2006  15:15            
    C:\Program Files\SAP\FrontEnd\sapgui\saplogon.exe                                                                 710 Final Release 7100.1.0.1027     000520192 29.12.2006  10:05            
    C:\Program Files\SAP\FrontEnd\sapgui\sappcfvd.dll                                                                 710 Final Release 7100.1.0.25       000376832 29.12.2006  15:15            
    C:\Program Files\SAP\FrontEnd\sapgui\sappctxt.dll                                                                 710 Final Release 7100.1.0.21       000063488 29.12.2006  15:15            
    C:\Program Files\SAP\FrontEnd\sapgui\sapshlib.dll                                                                 710 Final Release 7100.1.0.74       000659456 29.12.2006  15:15            
    c:\program files\sap\frontend\sapgui\saptabcn.ocx                                                                 710 Final Release 7100.1.0.223      000122880 29.12.2006  15:15            
    C:\Program Files\SAP\FrontEnd\sapgui\sapthmcust.dll                                                               710 Final Release 7100.1.0.1013     000286720 29.12.2006  15:15            
    C:\Program Files\SAP\FrontEnd\sapgui\sapthmdrw.dll                                                                710 Final Release 7100.1.0.102      000081920 29.12.2006  15:15            
    c:\program files\sap\frontend\sapgui\saptoolb.dll                                                                 710 Final Release 7100.1.0.56       000458752 29.12.2006  15:15            
    c:\PROGRA~1\sap\frontend\sapgui\AG7AS.dll                                                                         7100.0.4300.0     7100.0.4300.0     001265664 29.12.2006  15:15            
    c:\PROGRA~1\sap\frontend\sapgui\gridview.ocx                                                                      710 Final Release 7100.1.0.704      000520192 29.12.2006  15:15            
    c:\PROGRA1\sap\frontend\sapgui\ICDATA1.OCX                                                                      1, 0, 1, 31       1.0.1.31          000798720 17.06.2004  12:59            
    c:\PROGRA~1\sap\frontend\sapgui\sapfewin.ocx                                                                      710 Final Release 7100.1.0.257      000245760 29.12.2006  15:15            
    c:\PROGRA~1\sap\frontend\sapgui\sapsplit.ocx                                                                      710 Final Release 7100.1.0.422      000102400 29.12.2006  15:15            
    c:\PROGRA~1\sap\frontend\sapgui\wdbdadpt.ocx                                                                      350 Final Release 3500.11.0.22      000135976 26.12.2006  07:45            
    c:\PROGRA~1\sap\frontend\sapgui\wdtaocx.ocx                                                                       710 Final Release 7100.1.0.61       002756608 29.12.2006  15:15            
    c:\PROGRA~1\sap\frontend\sapgui\wdttree.ocx                                                                       710 Final Release 7100.1.0.286      000708608 08.01.2007  10:38            
    C:\WINDOWS\IME\SPGRMR.DLL                                                                                5.1.2600.2180     5.1.2600.2180     000062976 04.08.2004  13:30            
    C:\WINDOWS\ime\sptip.dll                                                                                5.1.2600.2180     5.1.2600.2180     000250880 04.08.2004  13:30            
    C:\WINDOWS\system32\ACTIVEDS.dll                                                                                5.1.2600.2180     5.1.2600.2180     000194048 04.08.2004  13:30            
    C:\WINDOWS\system32\adsldpc.dll                                                                                5.1.2600.2180     5.1.2600.2180     000143360 04.08.2004  13:30            
    C:\WINDOWS\system32\ADVAPI32.dll                                                                                5.1.2600.2180     5.1.2600.2180     000616960 04.08.2004  13:30            
    C:\WINDOWS\system32\appHelp.dll                                                                                5.1.2600.2180     5.1.2600.2180     000126976 04.08.2004  13:30            
    C:\WINDOWS\system32\asycfilt.dll                                                                                5.1.2600.2180     5.1.2600.2180     000065024 04.08.2004  13:30            
    C:\WINDOWS\system32\ATL.DLL                                                                                6.05.2284         3.5.2284.0        000058880 04.08.2004  13:30            
    C:\WINDOWS\system32\browseui.dll                                                                                6.00.2900.3157    6.0.2900.3157     001022976 15.06.2007  13:42            
    C:\WINDOWS\system32\CLBCATQ.DLL                                                                                3.0.0.4414        2001.12.4414.308  000498688 26.07.2005  10:09            
    C:\WINDOWS\system32\CLUSAPI.DLL                                                                                5.1.2600.2180     5.1.2600.2180     000057856 04.08.2004  13:30            
    C:\WINDOWS\system32\colbact.DLL                                                                                3.0.0.4414        2001.12.4414.308  000060416 26.07.2005  10:09            
    C:\WINDOWS\system32\COMCTL32.dll                                                                                6.00.2900.2982    5.82.2900.2982    000617472 25.08.2006  21:15            
    C:\WINDOWS\system32\comdlg32.dll                                                                                6.00.2900.2180    6.0.2900.2180     000276992 04.08.2004  13:30            
    C:\WINDOWS\system32\COMRes.dll                                                                                3.0.0.4414        2001.12.4414.258  000792064 04.08.2004  13:30            
    C:\WINDOWS\system32\comsvcs.dll                                                                                3.0.0.4414        2001.12.4414.308  001267200 26.07.2005  10:09            
    C:\WINDOWS\system32\credui.dll                                                                                5.1.2600.2180     5.1.2600.2180     000163840 04.08.2004  13:30            
    C:\WINDOWS\system32\CRYPT32.dll                                                                                5.131.2600.2180   5.131.2600.2180   000597504 04.08.2004  13:30            
    C:\WINDOWS\system32\CRYPTUI.dll                                                                                5.131.2600.2180   5.131.2600.2180   000512512 04.08.2004  13:30            
    C:\WINDOWS\System32\CSCDLL.dll                                                                                5.1.2600.2180     5.1.2600.2180     000101888 04.08.2004  13:30            
    C:\WINDOWS\System32\cscui.dll                                                                                5.1.2600.2180     5.1.2600.2180     000326656 04.08.2004  13:30            
    C:\WINDOWS\system32\DHCPCSVC.DLL                                                                                5.1.2600.2912     5.1.2600.2912     000112128 19.05.2006  19:16            
    C:\WINDOWS\system32\DNSAPI.dll                                                                                5.1.2600.2938     5.1.2600.2938     000147456 26.06.2006  23:15            
    C:\WINDOWS\system32\ESENT.dll                                                                                5.1.2600.2780     5.1.2600.2780     001082368 21.10.2005  03:50            
    C:\WINDOWS\system32\expsrv.dll                                                                                6.0               6.0.72.9589       000380957 04.08.2004  13:30            
    C:\WINDOWS\system32\GDI32.dll                                                                                5.1.2600.3159     5.1.2600.3159     000282112 19.06.2007  19:07            
    C:\WINDOWS\system32\hnetcfg.dll                                                                                5.1.2600.2180     5.1.2600.2180     000344064 04.08.2004  13:30            
    C:\WINDOWS\system32\IMAGEHLP.dll                                                                                5.1.2600.2180     5.1.2600.2180     000144384 04.08.2004  13:30            
    C:\WINDOWS\system32\IMM32.dll                                                                                5.1.2600.2180     5.1.2600.2180     000110080 04.08.2004  13:30            
    C:\WINDOWS\system32\iphlpapi.dll                                                                                5.1.2600.2912     5.1.2600.2912     000094720 19.05.2006  19:16            
    c:\windows\system32\jscript.dll                                                                                5.6.0.8831        5.6.0.8831        000450560 18.05.2006  10:54            
    C:\WINDOWS\system32\kernel32.dll                                                                                5.1.2600.3119     5.1.2600.3119     000984576 16.04.2007  21:22            
    C:\WINDOWS\system32\LIBRFC32.dll                                                                                7100.0.0          7100.0.0.5288     003743744 29.12.2006  15:15            
    C:\WINDOWS\system32\LINKINFO.dll                                                                                5.1.2600.2751     5.1.2600.2751     000019968 01.09.2005  07:14            
    C:\WINDOWS\system32\MFC42.DLL                                                                                6.2.4.0           6.2.4131.0        001028096 04.08.2004  13:30            
    C:\WINDOWS\system32\MFC71.DLL                                                                                7.10.3077.0       7.10.3077.0       001060864 27.05.2004  11:28            
    C:\WINDOWS\system32\midimap.dll                                                                                5.1.2600.2180     5.1.2600.2180     000018944 04.08.2004  13:30            
    C:\WINDOWS\system32\MLANG.dll                                                                                6.00.2900.2180    6.0.2900.2180     000586240 04.08.2004  13:30            
    C:\WINDOWS\system32\MPRAPI.dll                                                                                5.1.2600.2180     5.1.2600.2180     000087040 04.08.2004  13:30            
    C:\WINDOWS\system32\MSACM32.dll                                                                                5.1.2600.2180     5.1.2600.2180     000071680 04.08.2004  13:30            
    C:\WINDOWS\system32\msacm32.drv                                                                                5.1.2600.0        5.1.2600.0        000020480 04.08.2004  13:30            
    C:\WINDOWS\system32\MSASN1.dll                                                                                5.1.2600.2180     5.1.2600.2180     000057344 04.08.2004  13:30            
    C:\WINDOWS\system32\MSCTF.dll                                                                                5.1.2600.2180     5.1.2600.2180     000294400 04.08.2004  13:30            
    C:\WINDOWS\system32\MSDART.DLL                                                                                2.81.1117.0       2.81.1117.0       000151552 04.08.2004  13:30            
    C:\WINDOWS\system32\mshtml.dll                                                                                6.00.2900.3157    6.0.2900.3157     003064320 15.06.2007  13:42            
    C:\WINDOWS\system32\msi.dll                                                                                3.1.4000.4039     3.1.4000.4039     002854400 18.04.2007  21:42            
    C:\WINDOWS\system32\msimtf.dll                                                                                5.1.2600.2180     5.1.2600.2180     000159232 04.08.2004  13:30            
    C:\WINDOWS\system32\msjet40.dll                                                                                4.00.8618.0       4.0.8618.0        001507356 04.08.2004  13:30            
    C:\WINDOWS\system32\msjetoledb40.dll                                                                              4.0.8227.0        4.0.8227.0        000358976 04.08.2004  13:30            
    C:\WINDOWS\system32\MSJINT40.DLL                                                                                4.00.8905.0       4.0.8905.0        000151583 04.08.2004  13:30            
    C:\WINDOWS\system32\msjter40.dll                                                                                4.00.6508.0       4.0.6508.0        000053279 04.08.2004  13:30            
    C:\WINDOWS\system32\msjtes40.dll                                                                                4.00.8618.0       4.0.8618.0        000241693 04.08.2004  13:30            
    C:\WINDOWS\system32\mslbui.dll                                                                                5.1.2600.2180     5.1.2600.2180     000025088 04.08.2004  13:30            
    C:\WINDOWS\system32\msls31.dll                                                                                3.10.0.0          3.10.349.0        000146432 04.08.2004  13:30            
    C:\WINDOWS\system32\MSVCP60.dll                                                                                6.02.3104.0       6.2.3104.0        000413696 04.08.2004  13:30            
    C:\WINDOWS\system32\MSVCP71.dll                                                                                7.10.3077.0       7.10.3077.0       000499712 27.05.2004  11:28            
    C:\WINDOWS\system32\MSVCR71.dll                                                                                7.10.3052.4       7.10.3052.4       000348160 27.05.2004  11:28            
    C:\WINDOWS\system32\msvcrt.dll                                                                                7.0.2600.2180     7.0.2600.2180     000343040 04.08.2004  13:30            
    C:\WINDOWS\System32\mswsock.dll                                                                                5.1.2600.2180     5.1.2600.2180     000245248 04.08.2004  13:30            
    C:\WINDOWS\system32\mswstr10.dll                                                                                4.00.8905.0       4.0.8905.0        000614429 04.08.2004  13:30            
    C:\WINDOWS\system32\msxml3.dll                                                                                8.90.1101.0       8.90.1101.0       001104896 26.06.2007  11:38            
    C:\WINDOWS\system32\MTXCLU.DLL                                                                                3.1.0.4414        2001.12.4414.311  000066560 02.03.2006  01:12            
    C:\WINDOWS\system32\NETAPI32.dll                                                                                5.1.2600.2976     5.1.2600.2976     000332288 17.08.2006  17:58            
    C:\WINDOWS\system32\netman.dll                                                                                5.1.2600.2743     5.1.2600.2743     000197632 22.08.2005  23:59            
    C:\WINDOWS\system32\netshell.dll                                                                                5.1.2600.2180     5.1.2600.2180     001708032 04.08.2004  13:30            
    C:\WINDOWS\system32\ntdll.dll                                                                                5.1.2600.2180     5.1.2600.2180     000708096 04.08.2004  13:30            
    C:\WINDOWS\system32\ntshrui.dll                                                                                5.1.2600.2180     5.1.2600.2180     000143872 04.08.2004  13:30            
    C:\WINDOWS\system32\ole32.dll                                                                                5.1.2600.2726     5.1.2600.2726     001285120 26.07.2005  10:09            
    C:\WINDOWS\system32\OLEACC.dll                                                                                5.1.2600.0        4.2.5406.0        000163328 04.08.2004  13:30            
    C:\WINDOWS\system32\OLEAUT32.dll                                                                                5.1.2600.3139     5.1.2600.3139     000549376 17.05.2007  16:58            
    C:\WINDOWS\system32\OLEPRO32.DLL                                                                                5.1.2600.2180     5.1.2600.2180     000083456 04.08.2004  13:30            
    C:\WINDOWS\system32\PSAPI.DLL                                                                                5.1.2600.2180     5.1.2600.2180     000023040 04.08.2004  13:30            
    C:\WINDOWS\system32\rasadhlp.dll                                                                                5.1.2600.2938     5.1.2600.2938     000007680 26.06.2006  23:15            
    C:\WINDOWS\system32\RASAPI32.dll                                                                                5.1.2600.2180     5.1.2600.2180     000236544 04.08.2004  13:30            
    C:\WINDOWS\system32\rasman.dll                                                                                5.1.2600.2180     5.1.2600.2180     000061440 04.08.2004  13:30            
    C:\WINDOWS\system32\RESUTILS.DLL                                                                                5.1.2600.2180     5.1.2600.2180     000058880 04.08.2004  13:30            
    C:\WINDOWS\system32\RPCRT4.dll                                                                                5.1.2600.2794     5.1.2600.2794     000581632 11.11.2005  08:52            
    C:\WINDOWS\system32\rtutils.dll                                                                                5.1.2600.2180     5.1.2600.2180     000044032 04.08.2004  13:30            
    C:\WINDOWS\system32\SAMLIB.dll                                                                                5.1.2600.2180     5.1.2600.2180     000064000 04.08.2004  13:30            
    C:\WINDOWS\system32\sapbtmp.dll                                                                                710 Final Release 7100.1.0.1309     001650688 29.12.2006  15:15            
    C:\WINDOWS\system32\Secur32.dll                                                                                5.1.2600.2180     5.1.2600.2180     000055808 04.08.2004  13:30            
    C:\WINDOWS\system32\SETUPAPI.dll                                                                                5.1.2600.2180     5.1.2600.2180     000983552 04.08.2004  13:30            
    C:\WINDOWS\system32\shdoclc.dll                                                                                6.00.2900.2180    6.0.2900.2180     000549376 04.08.2004  13:30            
    C:\WINDOWS\system32\shdocvw.dll                                                                                6.00.2900.3157    6.0.2900.3157     001498112 15.06.2007  13:42            
    C:\WINDOWS\system32\SHELL32.dll                                                                                6.00.2900.3051    6.0.2900.3051     008458752 20.12.2006  03:20            
    C:\WINDOWS\system32\SHLWAPI.dll                                                                                6.00.2900.3157    6.0.2900.3157     000474112 15.06.2007  13:42            
    C:\WINDOWS\system32\SXS.DLL                                                                                5.1.2600.3019     5.1.2600.3019     000713216 19.10.2006  19:26            
    C:\WINDOWS\system32\SYNCOR11.DLL                                                                                0.1.2.3           0.1.2.3           000040820 07.11.2002  07:30            
    C:\WINDOWS\system32\TAPI32.dll                                                                                5.1.2600.2180     5.1.2600.2180     000181760 04.08.2004  13:30            
    C:\WINDOWS\system32\urlmon.dll                                                                                6.00.2900.3157    6.0.2900.3157     000616960 15.06.2007  13:42            
    C:\WINDOWS\system32\USER32.dll                                                                                5.1.2600.3099     5.1.2600.3099     000578048 08.03.2007  21:18            
    C:\WINDOWS\system32\USERENV.dll                                                                                5.1.2600.2180     5.1.2600.2180     000723456 04.08.2004  13:30            
    C:\WINDOWS\system32\UxTheme.dll                                                                                6.00.2900.2180    6.0.2900.2180     000218624 04.08.2004  13:30            
    C:\WINDOWS\system32\VBAJET32.DLL                                                                                6.0               6.0.1.9431        000030749 04.08.2004  13:30            
    C:\WINDOWS\system32\VERSION.dll                                                                                5.1.2600.2180     5.1.2600.2180     000018944 04.08.2004  13:30            
    C:\WINDOWS\system32\wdmaud.drv                                                                                5.1.2600.2180     5.1.2600.2180     000023552 04.08.2004  13:26            
    C:\WINDOWS\system32\WININET.dll                                                                                6.00.2900.3164    6.0.2900.3164     000665600 26.06.2007  20:05            
    C:\WINDOWS\system32\WINMM.dll                                                                                5.1.2600.2180     5.1.2600.2180     000176128 04.08.2004  13:30            
    C:\WINDOWS\System32\winrnr.dll                                                                                5.1.2600.2180     5.1.2600.2180     000016896 04.08.2004  13:30            
    C:\WINDOWS\system32\WINSPOOL.DRV                                                                                5.1.2600.2180     5.1.2600.2180     000146432 04.08.2004  13:30            
    C:\WINDOWS\system32\WINSTA.dll                                                                                5.1.2600.2180     5.1.2600.2180     000053760 04.08.2004  13:30            
    C:\WINDOWS\system32\WINTRUST.dll                                                                                5.131.2600.2180   5.131.2600.2180   000176640 04.08.2004  13:30            
    C:\WINDOWS\system32\WLDAP32.dll                                                                                5.1.2600.2180     5.1.2600.2180     000172032 04.08.2004  13:30            
    C:\WINDOWS\system32\WMI.dll                                                                                5.1.2600.2180     5.1.2600.2180     000005632 04.08.2004  13:30            
    C:\WINDOWS\system32\WS2_32.dll                                                                                5.1.2600.2180     5.1.2600.2180     000082944 04.08.2004  13:30            
    C:\WINDOWS\system32\WS2HELP.dll                                                                                5.1.2600.2180     5.1.2600.2180     000019968 04.08.2004  13:30            
    C:\WINDOWS\System32\wshtcpip.dll                                                                                5.1.2600.2180     5.1.2600.2180     000019968 04.08.2004  13:30            
    C:\WINDOWS\system32\WSOCK32.dll                                                                                5.1.2600.2180     5.1.2600.2180     000022528 04.08.2004  13:30            
    C:\WINDOWS\system32\WTSAPI32.dll                                                                                5.1.2600.2180     5.1.2600.2180     000018432 04.08.2004  13:30            
    C:\WINDOWS\system32\WZCSAPI.DLL                                                                                5.1.2600.2180     5.1.2600.2180     000051712 04.08.2004  13:30            
    C:\WINDOWS\system32\WZCSvc.DLL                                                                                5.1.2600.2180     5.1.2600.2180     000359936 04.08.2004  13:30            
    C:\WINDOWS\system32\xpsp2res.dll                                                                                5.1.2600.2180     5.1.2600.2180     002897920 04.08.2004  13:30            
    C:\WINDOWS\WinSxS\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.49_x-ww_0de06ad4\MSVCP80.dll                  8.00.50727.49     8.0.50727.49      000548864 02.12.2005  20:00            
    C:\WINDOWS\WinSxS\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.49_x-ww_0de06ad4\MSVCR80.dll                  8.00.50727.49     8.0.50727.49      000626688 02.12.2005  20:00            
    C:\WINDOWS\WinSxS\x86_Microsoft.VC80.MFC_1fc8b3b9a1e18e3b_8.0.50727.49_x-ww_dec6ddd9\MFC80.DLL                    8.00.50727.49     8.0.50727.49      001093632 02.12.2005  21:31            
    C:\WINDOWS\WinSxS\x86_Microsoft.VC80.MFCLOC_1fc8b3b9a1e18e3b_8.0.50727.49_x-ww_3415f6d7\MFC80ENU.DLL              8.00.50727.49     8.0.50727.49      000057344 02.12.2005  21:12            
    C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2982_x-ww_ac3f9c03\COMCTL32.dll 6.00.2900.2982    6.0.2900.2982     001054208 25.08.2006  08:45            
    THE END.

Maybe you are looking for

  • WHY does my Macbook Pro (mid 2012) always slow to crawl when I wake it up and go online???

    I wake up my Macbook Pro (sweetly tell it that I love it) click on one of the 1-10 tabs I have open in Firefox or Safari Click on iTunes (open already) to play some tunes Wait Wait while the little ball spins as my browser thinks wait a bit more fina

  • MSI GeForce 6800 256MB PCI-E , NX6800-TD256E

    I have seen this card for sale and it costs about 100€ less than other cards from the 6800gt series. http://www.komplett.se/k/ki.asp?sku=305437&cks=PRL (swedish site) and ive seen this card on many other sites as well, and they say that this is the s

  • Remote speakers no longer show up in iTunes

    I have recently had to send my DVD/surround-sound into the shop for repair. It used to play iTunes through Airport Express fine, but now I've tried hooking Airport up to both my TV and another stereo, but in both cases remote speakers no longer show

  • Replicat Process Abend

    Hi: i have active-active bidirectional replication in Oracle GoldeGate. when i change in A database it replicates in B database. like insert (1,'A') values in A database it replicates in B database. when i am trying to insert (2,'B') in B database, t

  • Configuring ISR Scenario SRK1 (Create Cost Center Request) with Adobe forms

    Hello, I am trying to configure the ISR scenario SRK1 (Create Cost Center Request) with Adobe Interactive Forms. However when I am trying to generate the form, it is giving an error TR015(Object can only be created in SAP package) Apparently by defau