GUI - refresh problem

I wrote a new code which draw two shape; circle and rectangle. I aim to cotrol their places with sliders. However, There is a problem about that. When I use slider, a new slider occurs in the panel. And when I move shapes, previous actions don't disappear except when playing the window. When you run it, you can see.. [http://www.shnkc.tk/shape-luck ] This is the link of it. If you mail your correct answer to me I will appreciate it. Thanks. <[email protected]>
Edited by: Shnkc on Mar 31, 2010 2:44 PM

Ok but there is no link to edit.It has been inactive after you posted.
import java.util.Scanner;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.event.*;
public class ShapeLuck extends JPanel
     String radio;
     Boolean ort;
     JSlider slider, slider2;
     JRadioButton rect, circle;
     JFrame frame;
     JPanel panel;
     TextField t1;
     int slide;
     IntTextField n1, n2;
     Listener listen = new Listener();
     Dimension d = new Dimension(10, 60);
     public ShapeLuck()
           *FRAME*
          frame = new JFrame("Shape Luck");
          frame.setSize(500,500);
          frame.setLocation(25,25);
          frame.addWindowListener(new EndingListener());
          frame.setVisible(true);
          setLayout(new FlowLayout());
           *Text Fields*
           t1 = new TextField("Enter the size");
           t1.setPreferredSize(d);
           add(t1);
           n1 = new IntTextField(0, 30);
           n1.addActionListener(listen);
           add(n1);
           n2 = new IntTextField(0, 30);
           n2.addActionListener(listen);
           add(n2);
           *RadioButton*
           rect = new JRadioButton("rec");
           circle = new JRadioButton("cir");
           rect.addActionListener(ButtonListener);
           circle.addActionListener(ButtonListener);
           add(rect);
           add(circle);
           radio = "";
           *Slider*
           slider2 = new JSlider();
           slider = new JSlider();
           slider.setMaximum(400);
           slider2.setMaximum(400);
           slider.addChangeListener(new changeListener());
           slider2.addChangeListener(new changeListener());
           add(slider);
           add(slider2);
           setVisible(true);
           frame.add(this);
     //Listener
     public class Listener implements ActionListener
          public void actionPerformed (ActionEvent e)
               repaint();
     ActionListener ButtonListener = new ActionListener(){
      public void actionPerformed(ActionEvent actionEvent) {
        AbstractButton aButton = (AbstractButton) actionEvent.getSource();
        System.out.println("Selected: " + aButton.getText());
        radio = aButton.getText();
     //EndListener
     public class EndingListener implements WindowListener
          public void windowActivated(WindowEvent e){}
          public void windowClosed(WindowEvent e){}
          public void windowClosing(WindowEvent e)
               System.exit(0);
          public void windowDeactivated(WindowEvent e){}
          public void windowDeiconified(WindowEvent e){}
          public void windowIconified(WindowEvent e){}
          public void windowOpened(WindowEvent e){}
     //IntTextField
     public class IntTextField extends TextField
          public IntTextField(int a, int b)
               super("" + a, b);
               super.setPreferredSize(d);
          public int getValue()
               return Integer.parseInt(getText());     
     //ChangeLsitener
     public class changeListener implements ChangeListener
          public void stateChanged(ChangeEvent e)
               repaint();
     //draw shapes and control its place
       public void paintComponent(Graphics g) {
        g.setColor(Color.BLACK);
        if( radio.equals("rec"))
            g.drawRect(slider.getValue(),slider2.getValue(), n1.getValue(), n2.getValue());
        else if(radio.equals("cir"))
            g.drawOval(slider.getValue(),slider2.getValue(), n1.getValue(), n1.getValue());  
} // end of class ShapeLuckThis is the code. I am waiting for your answers

Similar Messages

  • Peculiar GUI refresh problem

    Background:
    I am creating a groupable header table model for my application. I am enabling user to dynamically provide input for inserting column headers at different levels.
    The problem:
    Suppose i create three columns (usual one by using addColumn(Object ColumnName)) and name them A0, A1, A2.
    Now i create a groupable header to encompass the created three TableColumns. Lets say i name it B0.
    So the structure is "supposed" to look like:
    Step 1:
    {user adds A0, A1, A2}
    |___A0___|___A1___|___A2___|
    | ................. |..................|...................|
    | ................. |..................|...................|
    Step 2:
    {User adds B0 }
    |____________B0__________ |
    |___A0___|___A1___|___A2___|
    | ................. |..................|...................|
    | ................. |..................|...................|
    BUT instead, the following happens:
    Step 1:
    {user adds A0, A1, A2}
    |___A0___|___A1___|___A2___|
    | ................. |..................|...................|
    | ................. |..................|...................|
    Step 2:
    {User adds B0 }
    |____________B0__________ |
    | ................. |..................|...................|
    | ................. |..................|...................|
    Step 3: (unusually) When i try to drag the B0 header by clicking it, and moving it a little bit, the A0, A1, A2 headers pop out of nowhere! and then finally 'does' come back to:
    |____________B0__________ |
    |___A0___|___A1___|___A2___|
    | ................. |..................|...................|
    | ................. |..................|...................|
    Why doesnt it behave normally :( ?

    We don't want to see your code!
    You need develop ANOTHER code, that is Short, Self-Contained and Compilable Example of your problem.
    Please read [http://homepage1.nifty.com/algafield/sscce.html|http://homepage1.nifty.com/algafield/sscce.html]
    And don't forget to use tags, look for the CODE when posting.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • JTable Refreshing problem for continuous data from socket

    Hi there,
    I am facing table refreshing problem. My table is filled with the data received from socket . The socket is receiving live data continuously. When ever data received by client socket, it notify table model to parse and refresh the data on specific row. The logic is working fine and data is refresh some time twice or some thrice, but then it seem like java table GUI is not refreshing. The data on client socket is continuously receiving but there is no refresh on table. I am confident on logic just because when ever I stop sending data from server, then client GUI refreshing it self with the data it received previous and buffered it.
    I have applied all the available solutions:
    i.e.
         - Used DefaultTableModel Class.
         - Created my own custem model class extend by AbstractTableModel.
         - Used SwingUtilities invokeLater and invokeAndWait methods.
         - Yield Stream Reader thread so, that GUI get time to refresh.
    Please if any one has any idea/solution for this issue, help me out.
    Here is the code.
    Custom Data Model Class
    package clients.tcp;
    import java.util.*;
    import javax.swing.table.*;
    import javax.swing.*;
    public class CustomModel extends DefaultTableModel implements Observer {
    /** Creates a new instance of CustomModel */
    public CustomModel() {
    //super(columnNames,25);
    String[] columnNames = {"Sno.","Symbol","BVol","Buy","Sale",
    "SVol","Last","..","...","Total Vol...",
    "..","High","..","Low","Change","Average","..."};
    super.setColumnIdentifiers(columnNames);
    super.setRowCount(25);
    /*This method called by client socket when ever it recived data as line/record*/
    public synchronized void update(Observable o, Object arg){
    collectData(arg.toString());
    /*This method used to parse, collect and notify table for new data arrival*/
    public synchronized void collectData(String rec){              
    String validSymbol="";
    System.out.println("collectDataRecord :-"+rec);
    StringTokenizer recToken=new StringTokenizer(rec," ");
    Vector rowVector=new Vector();
    for(int i=0;i<25;i++){
    validSymbol=(String)getValueAt(0,1);
    if(rec.indexOf(validSymbol) != -1){
    for(int j=0;recToken.hasMoreTokens();j++){
    super.setValueAt(recToken.nextToken(),i,j);
    //break;
    Client Socket Class
    package clients.tcp;
    import java.io.*;
    import java.net.*;
    import java.util.*;
    import javax.swing.*;
    public class DataReceiver extends Observable implements Runnable{
    private Socket TCPConnection = null;
    private BufferedReader br = null;
    private String serverName = "Salahuddin";
    private int serverPort = 5555;
    public DataReceiver()
    public void setServerName(String name){
    this.serverName=name;
    public void setServerPort(int port){
    this.serverPort=port;
    //03-20-04 12:30pm Method to open TCP/IP connection
    public void openTCPConnection()
    try
    TCPConnection = new Socket(serverName, serverPort);
    br = new BufferedReader(new InputStreamReader(
    TCPConnection.getInputStream()));           
    System.out.println("Connection open now....");
    //System.out.println("value is: "+br.readLine());
    }catch (UnknownHostException e){
    System.err.println("Don't know about host: ");
    }catch (IOException e){
    System.err.println("Couldn't get I/O for "
    + "the connection to: ");
    //03-20-04 12:30pm Method to receive the records
    public String receiveData(){
    String rec = null;
    try
    rec = br.readLine();          
    catch(IOException ioe)
    System.out.println("Error is: "+ioe);
    ioe.printStackTrace(System.out);
    catch(Exception ex)
    System.out.println("Exception is: "+ex);
    ex.printStackTrace(System.out);
    return rec;     
    public void run()
    while(true)
    String str=null;
    str = receiveData();
    if(str != null)
    /*try{
    final String finalstr=str;
    Runnable updateTables = new Runnable() {
    public void run() { */
    notifyAllObservers(str);
    SwingUtilities.invokeAndWait(updateTables);
    }catch(Exception ex){
    ex.printStackTrace(System.out);
    System.out.println("Observer Notified...");*/
    try{
    Thread.sleep(200);
    }catch(Exception e){
    public synchronized void notifyAllObservers(String str){
    try{
    setChanged();
    notifyObservers(str);
    }catch(Exception e){
    e.printStackTrace(System.out);
    Regards,
    Salahuddin Munshi.

    use your code to post codes more easy to read, lyke this:
    package clients.tcp;
    import java.util.*;
    import javax.swing.table.*;
    import javax.swing.*;
    public class CustomModel extends DefaultTableModel implements Observer {
    /** Creates a new instance of CustomModel */
    public CustomModel() {
    //super(columnNames,25);
    String[] columnNames = {"Sno.","Symbol","BVol","Buy","Sale",
    "SVol","Last","..","...","Total Vol...",
    "..","High","..","Low","Change","Average","..."};
    super.setColumnIdentifiers(columnNames);
    super.setRowCount(25);
    /*This method called by client socket when ever it recived data as line/record*/
    public synchronized void update(Observable o, Object arg){
    collectData(arg.toString());
    /*This method used to parse, collect and notify table for new data arrival*/
    public synchronized void collectData(String rec){
    String validSymbol="";
    System.out.println("collectDataRecord :-"+rec);
    StringTokenizer recToken=new StringTokenizer(rec," ");
    Vector rowVector=new Vector();
    for(int i=0;i<25;i++){
    validSymbol=(String)getValueAt(0,1);
    if(rec.indexOf(validSymbol) != -1){
    for(int j=0;recToken.hasMoreTokens();j++){
    super.setValueAt(recToken.nextToken(),i,j);
    //break;
    Client Socket Class

  • Animated gif and page refresh problem

    Animated gif and page refresh problem
    Hi There,
    I'm trying to build a simple "Please wait......" screen using jsp and javascript.
    So far all is going well except that my animatate gif keeps refreshing everything the page is refresh.
    Is there a way the i can prevent the body of the page from refreshing?
    below is my sample code:
    <%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
    <jsp:useBean id="StatusBean" class="com1.CandidateRelease" scope="session"/>
    <html>
    <script LANGUAGE="JavaScript">
    function refresh()
    <% if (StatusBean.isRunning()) { %>     
         //setTimeout("refresh()", 1000);
         setTimeout("location='status.jsf'", 1000);
    <% }else{%>
         window.location= "busStopAdmin.jsf";
    <%} %>
    </script>
    <head>
         <script LANGUAGE="JavaScript">     
              refresh();
         </script>     
    </head>
    <body>
         <img id="myImage" src="../img/ojp_wait.gif" alt="" width="151" height="36">
    </body>
    </html>

    Animated gif and page refresh problem
    Hi There,
    I'm trying to build a simple "Please wait......" screen using jsp and javascript.
    So far all is going well except that my animatate gif keeps refreshing everything the page is refresh.
    Is there a way the i can prevent the body of the page from refreshing?
    below is my sample code:
    <%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
    <jsp:useBean id="StatusBean" class="com1.CandidateRelease" scope="session"/>
    <html>
    <script LANGUAGE="JavaScript">
    function refresh()
    <% if (StatusBean.isRunning()) { %>     
         //setTimeout("refresh()", 1000);
         setTimeout("location='status.jsf'", 1000);
    <% }else{%>
         window.location= "busStopAdmin.jsf";
    <%} %>
    </script>
    <head>
         <script LANGUAGE="JavaScript">     
              refresh();
         </script>     
    </head>
    <body>
         <img id="myImage" src="../img/ojp_wait.gif" alt="" width="151" height="36">
    </body>
    </html>

  • Smartview 11.1.2.1.102 Refresh problems

    I have multiple users experiencing severe refresh problems after upgrading to smartview version 11.1.2.1.102.
    Users state Refresh is taking 10-15mins+ when in old version 9x it only takes 1-2mins. In addition users have rebuilt the excel files (copy in new workbook) then all is working fine but when saved/the next day the refresh goes very slow again!
    Please can any help?

    1. Deleting the Sheet Info fixes the problem for the moment - but the problem soon returns. Do you know what causes the problem, so we can cut the repeating cycle? Is this strictly a multi-user issue? We do have several users that may use the file. Some have version 11.1.2.1.000 (not 103). Oracle's tips doc (http://www.oracle.com/technetwork/middleware/bi-foundation/epm-tips-issues-73-102-1612164.pdf) mentions uncompressed metadata stored in the worksheet.
    2. Is there a specific version that allows the Sheet Info fix? Oracle's tip sheet says they need Some have version 11.1.2.1.103, but the users we have seen so far can use this workaround on Some have version 11.1.2.1.000. I'd like to know when at what version this fix starts so I can push other users to update. It would be good to know at which version this issue starts.
    Thank you - great information in the thread!
    P.S. for reference:
    From http://www.oracle.com/technetwork/middleware/bi-foundation/epm-tips-issues-73-102-1612164.pdf
    In EPM System Release 11.1.2.1, I am opening .xls files with Smart View functions in Excel 2010, but it’s very slow or seems to freeze Excel. How can I fix this?
    This is most likely due to an issue with uncompressed metadata stored in the workbook. In most cases, the issue can be found in the first sheet in hidden shapes. Note that the file will open but it may take a very long time, and in some cases the file will open fine with Smart View disabled. In other cases it will not matter. To solve this problem, save a copy of the file and follow the steps below for the version of Smart View you have.
    If you are using Smart View 11.1.2.1.103 or above, follow these steps:
    1 Open the file (this may take a while) with Smart View enabled.
    2 From the Smart View Ribbon, select Sheet Info.
    3 Select Delete Smart View Info.
    4 Select Workbook and all Sheet Info.
    174 Miscellaneous and Product-Specific Tips
    5 Click OK.
    6 Save the modified workbook.
    7 Reopen the workbook.
    If you are not using Smart View 11.1.2.1.103 or above, follow these steps:
    1 Open the file (this may take a while).
    2 Right-click on the tab of the first worksheet and select Select All Sheets.
    3 Right-click on the tab of the first worksheet and select Move or Copy.
    4 In the drop-down box, select (new book) and check Create a Copy.
    5 Save the workbook.
    6 Open the new workbook.
    7 Refresh the data.

  • Screen refresh problem where data is entered and the screen doesn't refresh

    Many people in the company are experiencing the odd screen refresh problem where data is entered and the screen doesn't refresh to show the updated result in corresponding cell formulas.
    Microsoft have issued a hotfix to fix the issue for Excel 2003 as shown. Microsoft released a hotfix for this problem (<a href="advisory?ID=978908">KB978908</a>). Display memory tends to pick up data from hidden sheets and pastes it
    into the active screen. No impact on the file. This occurs when protecting and unprotecting worksheets in VBA. I also suspect that enabling and disabling screen refresh contributes to this problem. In any case there is a fix, albeit with the following disclaimer:
    As of yet I have not been able to find a fix for this for office 2010 and 2013, Any suggestions would be great.

    Hi,
    Based on your description, Excel does not show the text strings when you typing. It may be caused by the cell format, if we set the cell format as ";;;" in custom format, it will not display the text that you typed. 
    And the issue may be caused by the third-party input method, there are some compatibility issue between them.
    If the issue still exits, please try the following methods
    Verify/install the latest updates
    Repair your Office program
    Regards,
    George Zhao
    TechNet Community Support

  • Container (JPanel) refresh problem

    Hello,
    In fact i have a panel (mainPanel) with a button OK, a another panel which display a specific MyJTable and combo box.
    In fact, when I clic OK Button, i want to charge my MyJTable with data depends on comboBox.
    First, i display a empty white panel and when i clic Ok i want to display my MyJTable.
    JPanel mainPanel = new JPanel();
    JPanel emptyPanel = new JPanel();
    JPanel combo = new JComboBox();
    JButton okButton = new JButton();
    MyJTable myJTable;
    mainPanel.add(emptyPanel);
    mainPanel.add(combo);
    mainPanel.add(okButton);I have a refresh problem, i try mainPanel.remove(emptyPanel) and thus mainPanel.add(myJTable), the remove works but the add no :(
    In ActionPerformed method when okButton:
    myJTable = new myJTable(combo);
    mainPanel.remove(emptyPanel);
    mainPanel.add(myJTable);
    mainPanel.repaint();Thanks for yu help!!

    Hi,
    have you tried playing with
    mainPanel.revalidate();
    mainPanel.revalidate();??
    Might help
    Phil

  • Screen refresh problem with Windows 7

    Hello all,
    I've recently begun testing Oracle with Windows 7 on a new HP 2540p notebook computer. I've encountered a very strange issue so far. After logging into Oracle, and Windows switches to Windows Basic theme, I should be taken to the main Navigator screen. But instead, the screen is simply white. If I drag (or nudge) the title bar just a bit, the screen refreshes and I can see the menu items. Then if I click on something (or even use hotkeys - ALT+F to get the file menu, for example), I don't see anything happen. But if I move the window just a bit, the screen refreshes and I can see that it did actually take my input, it just didn't re-draw the screen. I'm wondering if this may be a graphics driver issue (I do have the latest driver for the Intel Graphics Media Accelerator HD adapter), or if someone could point me toward a resolution to this problem. Any help is much appreciated.

    Dear All,
    Same problem of REFRESH PROBLEM also faced by but only a single and specific Windows 7 client.
    if you have resolved the issue , so please share with us.
    Thanks
    Eidy

  • Datagrid refresh problem?

    fileListArray.refresh();
    dg_curtainmanager.invalidateList();
    dg_curtainmanager.invalidateDisplayList();
    <mx:DataGrid id="dg_curtainmanager" showHeaders="true"  editable="true"  includeInLayout="false" dataProvider="{fileListArray}"  creationComplete=""  variableRowHeight="true"   wordWrap="true"  rowCount="{fileListArray.length}"  width="100%"  >
    <mx:DataGridColumn  headerText="Parent Folder"  sortable="true"  editable="false"   width="250" minWidth="65" wordWrap="true" >
                            <mx:itemRenderer>
                                <fx:Component>
                                    <mx:HBox width="100%"
                                             horizontalAlign="left" verticalAlign="middle">
                              <mx:Image source="@Embed(source='images/edit_16.gif')"  toolTip="Select Starting Folder" buttonMode="true" click="outerDocument.parentfolderimagclick()" />
                                        <mx:Label text="{data.document_folder_name}" color="black" />   
                                    </mx:HBox>
                                </fx:Component>
                            </mx:itemRenderer>
                            </mx:DataGridColumn>
    </mx:DataGrid>

    @welcomecan,
    What refresh problem you are facing.. in DataGrid? When you change your DataProvider for your grid the values are not being changed or somethingelse..??
    Please always be clear in explaining your problem in order to get it resolved..
    Thanks,
    Bhasker

  • GUI related problem in solaris 8 02/04

    Hello all,
    I am facing GUI related problem in the software running on solaris when I upgraded from solaris 8 02/02 to 8 02/04.
    The GUI which was working fine on 02/02 was giving some menu selection problem in 02/04. In GUI applications i was unable to select items after double clicking it in solaris 8 02/04 while it was working fine in solaris 8 02/02.
    Are there any O.S. related problem?
    Thanks and regards,
    Ankit

    Wolfgang073 wrote:
    Hi guys and ladys!
    I added the LD_LIBRARY_PATH, Why are you doing that. It's probably a bad idea.
    but the Openwindows not run OK (e.g. start cmdtool window without csh % prompt etc.).That's very possible. Don't make global changes to LD_LIBRARY_PATH (by putting in your login files for example). Instead if you need it to run a particular program, make a wrapper that sets the variable and then calls the program. That will limit the scope of those changes.
    vi .login
    # Erasing LD_LIBRARY_PATH
    setenv LD_LIBRARY_PATH
    # Important Paths set
    setenv LD_LIBRARY_PATH     /usr/ucblib:$LD_LIBRARY_PATHDon't do that.
    Darren

  • Forms Refresh Problem on The Web??

    i have a form coded in 6i. in this form i have around 20 buttons one below another and each of the button has a stacked view associated with it. whenever i click on a button i am opening the relative stacked view on th content canvas and repositioning the rest of the bottons and views by moving them down.
    Now the problem is it works fine in client-server, but when i run it on the web, when i try to open any of the buttons the screen scrolls automatically to the top. I also noticed that if i wait for a few seconds(or sometimes minutes) the form takes me to the correct position. i think there is some refresh problem. i tried Syncronize also but to no use.
    i would appreciate If someone can help me out on this ASAP. (thanks for the patience in reading this long mail!!)

    Try to instal the latest version of Jinitiator. I have similar problems, but my case is not so bad. Jinitiator develops very quickly and as i have heard it works now fine.

  • G5 quad gf6600 refresh problems

    I have refresh problems (never had it with 2.5 bipro)
    in photoshop the layers do weird things and leaves traces.
    in lightwave if i select a point op poligon, nothing seems to happen, only when i resize the view it refreshes.
    lightwave is freshly installed, ph is a port from the old mac

    upgraded programs

  • Premiere Elements 10 slow GUI refresh

    Hi all,
    I am experiencing a very slow GUI refresh rate using Premiere Elements 10. It has been happening since I first started using the program, but I am using it a bit more now and it's starting to frustrate me.
    Basically, as soon as I open the program and create a new project, any action which changes the screen e.g. maximising, resizing the timeline, changing the timeline scale etc. occurs very slowly. For example, maximising the window takes approximately 4 seconds to complete, and resizing the timeline is very laggy.
    It is shown reasonably well in the following clip, although it is much more pronounced for me: http://www.youtube.com/watch?v=8C7GbqXir8o&feature=youtu.be
    This issue has been discussed in a few other questions, but none resolved the issue (that I have found) or have kind of gone off topic, so thought I would ask myself in an effort to resolve it.
    A couple of points to note:
    Occurs WITHOUT any video loaded i.e. with a completely empty project. (Loading video doesn't have any effect)
    It is not affected by the selected preset. They all have the same issue.
    Somewhat curiously, playback of video is fine.
    Disabling desktop composition as suggested in another post on this issue results in a slight improvement, but certainly does not make it go away.
    Computer specs:
    Windows 7 Pro x64 SP1 (I am using the 64 bit version of premiere elements)
    Core i5 2500
    8 Gb RAM
    EVGA GTX 460 1Gb
    Asus Z77 sabretooth motherboard
    Primary drive 2x 64Gb SSD's RAID 1 (OS and performance sensitive applications incl. Premier Elements)
    Secondary drive 2x 1Tb HDD's RAID 1 (Other applications & data storage)
    Note that the drive configuration and motherboard have been changed recently, and had no effect on this issue.
    Thanks in advance for any help.

    Thanks everyone for the responses, I really appreciate your assistance and thoughts.
    Here goes with how I have got on with your suggestions/answers to your questions:
    Steve:
    First of all let me just make it clear that this is occurring with nothing loaded - a completely blank project. Also, it would appear that it is a window refresh issue rather than program performance as such, as rendering/playback work just fine. This is just my initial impression though.
    Footage is  from a GoPro HD Hero 2, recorded in 720p at 60 fps (actually 59.94). I convert it to .avi using the GoPro Cineform software prior to editing. I use the DSLR 720p 60 preset. I have also tried the 720p60 AVCHD LITE preset which does not have any noticeable effect on the issue. I have tried using unconverted footage straight from the camera; again this has no noticeable effect on the issue. When I add video to the timeline, there is no red line above it  - although when I apply an effect e.g. brightness and contrast one does appear.
    I have never used still images so I don't know if they have any effect.
    I checked just now for OS updates and and a few (11 if I recall correctly) which I installed. They had no effect on the issue.
    I have also just updated to the latest graphics driver (320.49) and quicktime (7.7.4), again no effect on the issue.
    The RAID 1 setup is a data mirroring configuration - each drive is an exact mirror of the other. I have this  as I have had a few HDD's fail and having to get a new one, reinstall, etc. is just a nightmare - not worth it when the risk can be effectively eliminated for a bit extra $. I do not think this is the cause as I have had a few different configurations while using premiere elements (the SSD's are quite recent) and the issue stays the same.
    John:
    Thanks for the links, although I wasn't able to find anything that helped with the issue.
    I will have a look for what you mentioned re an older driver being potentially better, and will try it when if I find one that looks promising and I get some time. I am not overly hopeful though as I have used several different drivers, and I have not noticed any difference.
    Bill:
    I completely agree - I always go to the source for drivers rather than relying on driver update programs etc.
    ATR:
    Firstly I would just like to point out that the link was not my video - it is someone else's, who appears to be a somewhat similar issue. Apologies, I should have made that clear in the original post.
    What is really bugging me is adjusting the 'zoom' on the timeline (little bar on the right of the screen you drag left & right). When I move it, it will take a few seconds for everything on the screen to refresh. Not a massive issue, but really annoying!
    In response to your points though;
    I was not aware that the timeline scrollbar ghost trails are common to other versions. Is this a common issue or just some isolated instances of it? I have personally not noticed any bits of clips remaining on the timeline.
    I must confess I am a bit of a novice with this program, so would you be able to expand on what playback quality & playback settings I should be looking at? (Note that the playback itself is not an issue for me). Also, how might I go about checking for pile ups of preview/conformed audio/conformed video? If it helps I have all the scratch files in a dedicated folder on the SSD.
    I have just defragmented, but it had no noticeable effect.
    I would rather not use a registry cleaner (had some bad experiences in the past and not convinced they make a difference), and my computer is relatively clean. I do a complete fresh reinstall every 6 months or so and I am not in the habit of downloading all sorts of crap.

  • Refresh problem with dreamweaver cs5.5

    Hello,  I hope someone can help out soon with my problem. We currently have a great running site that is hosted OFFSITE. Our programmer built a new site which is the one having the refresh problems with.  It's hosted on an ON-SIGHT server . thank you
    Problem:
    Sometimes randomly, but almost always when opening other pages, DW freezes for about 5-10 seconds, sometimes crashing (presumably when it takes longer).
    It occurs whether changes are made to files or not. I'm using split view it happens mostly whien trying to click something in code view at top.
    Test Results:
    I was able to consistently reproduce the problem when opening files in the directory.
    I was unable to reproduce the problem when opening multiple Include files (that do not use templates).
    Thoughts:
    Is there something in the template causing the refresh problem?
    Something in the new website page source, or in their shared template, may be loading from a (slow) external resource.
    Something in the DW settings?
    HELP THANK YOU

    Could you post a screen capture of your File > New dialogue window when you choose it from the menu?
    Page From Template should be an option on the far left if I recall correctly (it has been changed in newer versions, but I think 5.5 still used this method). You won't see it in the Welcome Screen or if you hit Ctrl +N. You have to use the menu option to select New...
    You should then be presented with a list of sites, when the site is chosen, the templates should show in the middle column.
    Or are you saying your template isn't showing when you choose the Page From Template option and select the site?

  • Javabean Refresh Problem

    HiHi,
    I have got a problem of refreshing a modified java program.
    I have created a javabean before, there are three fields are defined as float type.
    However, I have got some problem of using float, so I made a change on it to double.
    At the same time, there is a jsp program using this java program. After I compiled the
    java program and put it into the server side (weblogic). I found that there is a probelm
    "NoSuchMethodError" every time when I call the jsp. Then I press space of that jsp
    program and actually made no change of it. And put it into the server
    side again, since there is always a refreshing problem of both java and jsp program
    in weblogic. But I still failed, so I rename both the java and jsp program and try it. Finally the
    same problem still happens.
    So I dunno that it is really a refreshing problem or something I have done wrongly.
    Could anyone help me? Thank you very much!
    Betty

    restart you server and see ...
    when ever you change your javabean you have to restart the server, bcoz the class gets loaded in to the server, once you start it, so, if you change it, it is not going to be changed in the server where the class gets loaded, so, it still has the old copy, so, you have to restart the server for it to reflect the changes ....

Maybe you are looking for

  • Function Module - SAP ECC to BODS

    Hi Experts - I have one function module in ECC system which is RFC enabeled and I have imported that in BODS. Its showing me under function under ECC Data Store. I am not able to drag it into normal data flow  ,,,, Why ? Is there any special data flo

  • Date format problem in pl/sql

    Hi all, I want to convert a date in a text format like below: 7/2/2010 5:15:28 PM Could someonce advise on how to do to have a the above format please. Thanks Luc

  • Looking for a clone solution for Oracle WebCenter Content, Imaging and related products

    Hi, We are looking for a manual or automated cloning solution for Oracle WebCenter Content (UCM), Imaging (ICM) and related products. Oracle FMW has T2P cloning option, but we are looking for more specific to just this product to clone and configure

  • Premiere Pro does not import any footage

    Premiere Pro CS6 imports footage to the media browser, but with the image jumbled up. This happens regardless of format/codecs. Audio (including from footage) imports normally.

  • Help-Require

    I m devloping a mobile application for sending and receving SMS at the time of sending message their r no problem but when the message is receive then it will go directly my phone inbox then their r any process,to get the incoming message in my appli