Refreshing frame

hi friends,
I have one problem in my application. now iam learning swings.
in my swings frame i have table and ok and cancel buttons.
it is related to running processor in single step mode
if user chooses multi step and steps entered is 5
what i have to do is i have to run processor one step and i have to update table according to new values. this i will repeat 5 times.
iam updating in the program. but the frame is refreshing only after 5 speps refrescting current values . i want the table to be refreshed after each step. please help me in this regard.
thanks and regards
sriram

thanks for ur suggestion. i used threads. but it is not working for me.
my code is something like this
it is in action performed event handler
if(action command ==OK)
while(steps>0)
run_processor(1) // run one step
get_reg_contents() //get register contents
update_table() //update table with new register contents
steps--
until steps become zero it will not return from action event. mean while if u try to repaint by adding command
repaint b/w update and decrementing steps.
it is not repainting . what i have to do for this.
please help some one.
thanks and regards
sriram

Similar Messages

  • Refreshing frame error in indesign document

    Hi,
    I have this strange error that approx. every 10 seconds the frame refreshes.
    When I select a font for instance it refreshes before I can select one. Same with all other tools.
    I turned off the 'preflight document' but that doesn't resolve it.
    It only happens with one certain document.
    Luckily not with all documents so it must be some kind of setting or maybe even a font....
    I hope someone has some tips for where to look to get rid of this problem.
    T.i.a.
    Bert.

    I turned it off completely but it still isn't fixed.
    The strange thing is that it only happens with 1 document.
    So maybe a font is causing this, but never experienced a problem like this before.

  • Newbie problem - how to refresh frames when selected by a link

    A few weeks ago I was handed an antiquated frame-based site to update which has given me more than a few headaches.  I’ve managed to acquire a copy of Dreamweaver CS 3 from the power that be, and have been trying to find a solution to the following problem:
    I am attempting to tie in a .pdf document into a simple frame template, with a static left-hand frame allowing the user to select and display the anchored point on a .pdf document on the right.  This I’ve done with few peoblems, however when the user tries to click another link the dispayed .pdf doc after an initial selection the right-hand frame doesn’t move position to the newly selected anchor point.  
    This I think is due to the fact that the link refers to the same document, despite the fact that it’s to a different location on the doc.  I have been trying to find a way to ‘refresh’ the page when a link is selected so that the right-hand side diplay moves to the correct anchor point, but I’d had little luck.
    My question to you all is as follows: is there I can tell CS3 to refresh the right-hand side frame every time a link is clicked?  Any help would be appreciated!
    Yours, a very naiive newbie Dreamweaver user

    The website I'm currently working on is an internal network, so unfortunately it's unavailable for general view.  The layout sticks pretty close to the normal two frame dreamweaver template, with a series of created links on the left frame opening an adobe document in the right frame.  Very basic but that's largely the intention.
    The reason why I am linking to a .pdf document is simply because my work task demands I keep it in use, however since this means future revisions should be fairly easy (working off the same anchor/destination points in the .pdf document text this isnt a huge issue).
    Not entirely ideal I know but at least it creates an interesting problem!
    If anyone has a easy to create, newbie-friendly alternative to frames whereby I could create a site which links directly to specific areas in a .pdf document on demand I would be a very happy man!  Willing to potentially offer beer/first-born as payment.

  • Refresh Frame in Frameset from a second Frameset

    I have frameset that contains 3 frames in asp. A button in
    one of these
    frames opens a new window that contains another frameset. The
    window is
    opened using Javascript.
    What I want to do (but cannot) is :-
    when a button is clicked on a page in the new window (2nd)
    frameset it
    refreshes a page in the opener (1st) frameset.
    I have done this easily where the page in the new window is
    not in a
    frameset using:
    onclick="window.opener.location.reload()"
    but this doesn't work using the two framesets. Can anyone
    advise how I can
    achieve this please?

    Were you shooting on the Panasonic HVX-200 onto P2 cards in 720pn mode?
    Yes, that's correct.
    you should still make a DVD and watch the movie on a TV
    I will do that; thanks for the advice.
    if you are having these problems on your computer, there's always a chance that your client will have problems showing the file on the unknown computers
    That has been a big part of my cause for concern. My friend (the one I'm working with on this project, who owns the equipment we're using) would prefer to burn it to a Blu-ray disc, but unfortunately we don't have access to a Blu-ray burner. So I'm thinking we should provide it as both a DVD and as a QuickTime file, to cover as many bases as possible.
    Thanks again for your patience with novice questions. I've looked for books on these kinds of things, but everything I've found seems to either be written at the extreme beginner level ("this is how you upload video onto your computer"), or the extreme advanced level. Perhaps I haven't been looking in the right places; if you can suggest some good reading materials on this kind of thing, that would be great.

  • Query on auto-refreshing frames / linked .pdf docs on link

    All,
    I'm in the process of building a website on an intranet which, heavily uses content from a .pdf document.  I'm using a frame-structured website (two Vertial frames), with the left-hand side frame used as a nav bar and the pdf content displayed on the right.  I've been able to link the links on the left to bring up and display the .pdf doc on the right-hand frame, however after the first link has been clicked the clicking of further frames does not either seem to refresh the doc or change the position to the relevant .pdf bookmark.
    My questions are therefore as follows.  Does anyone know how to:-
    A) Add a html command onto each link which will force the pdf document to reload?
    B) Force a refresh of the right-hand side content frame every time a link has been clicked on the left?
    C) Alter the .PDF document so that it will allow the moment to the correct bookmark/destination when called by a link selection in the left-hand nav frame?
    D) Save the .PDF into an alternate working format which may bypass any potential problems with moving to a requested bookmark in an already-open doc?
    E) Force the opening of the .PDF in the browser, rather than in an opened adobe .PDF viewer?
    Sorry guys I'm not the most technical person in the world, but would certainly appreciate any help anyone can offer!
    Al

    You should keep it simple and best practice. Keep lag enabled even if you are only going to use one port on the wlc. When you disable lag, then that is when the configuration becomes tricky and that's why it's not supported.
    Sent from Cisco Technical Support iPhone App

  • Refreshing frames

    Hello,
    I'm writing a Java program and the user interface is jsp pages with frames. I hava an access control to it (username and password) and what I would like to do is to refresh two frames when the user logs in or out (when user is not logged in he should not be able to see links and buttons that only logged in users can use).
    I was thinking if I could use JavaScript to do this and I saw answer here on Java forum, it goes like this:
    function reloadMyFrames()
    parent.frame1name.location.reload();
    parent.frame2name.location.reload();
    I haven't used JavaScript before and I'm not sure where it would be best to call this function and what i should put into the parameteres parent and location ( I have two frames I want to refresh, frame_a.jsp, and frame_b.jsp, and then my frameset I call framset.jsp ).
    I hope I have explaied my problems well enough and that someone knows a good answer to this question.
    Thanks, hrefnaa

    function reloadMyFrames()
    parent.frame1name.location.reload();
    parent.frame2name.location.reload();
    This is correct. Obviously, you should substitute frame1name and frame2name with the correct frame names, defined when you created your frameset.
    location is fine in itself. The example isn't expecting you to replace it with the actual location of the frame.
    parent refers to the parent frame.. the one in which the frameset was declared. If you have multiple embedded framesets, you may also choose to use top instead of parent, which will take you to the outermost frameset.
    You could also refer to the frames by their index, as in
    function reloadFrame(number)
    if (document.images)
    parent.frames[number].location.reload();
    else
    parent.frames[number].location.href = parent.frames[number-1].location.href
    where the first frame is 0, then 2nd is 1,..., nth is n-1

  • Problem in refreshing Frame

    Hi,
    i'm using internal frames for a program.And to this Internal Frame i add a panel with some buttons.
    From the menu i choose the number of buttons-(for that i have a dialog box).
    My problem is :
    1. after i dispose the dialog box the internal frame is empty and only when i click on it the new number of buttons show up.
    2.Now when i attempt to change the number of buttons for the second time - even after i click the empty frame nothing shows up !
    in my code :
    Clicking the OK button in the dialog box for selecting the number of buttons -
    action performed has :
    levels.dispose() ;
    MainGameFrame.updateGUI();
    and updateGUI code is :
    public static void updateGUI()
              innerFrame.remove(gameboard);
              gameboard = GamePanel.getGamePanel();
              innerFrame.add(gameboard);
              innerFrame.repaint();
              innerFrame .setVisible(true);
    where am i wrong ? pls let me know !
    its very confusing !

    You need to find out about invalidate and validate.
    All components know when they have been painted. So
    o a repaint tells a component "paint yourself" which
    results in an "already done matey". If you
    invalidate a component you effectively shout "you
    look like you've been dragged through a hedge." This
    should result in a proper repainting. It is not easy
    because there are trees of components and I think you
    have to hit the appropriate leafs. If you can't do
    it then I will read about the topic and try to give
    some better guidance.Hi Thanks for the effort...
    I got it working now....instead of removing the components of the internal frame i removed the internal frame itself and then added it again with the changes!

  • JFrame doesnt get refreshed

    Hi,
    I have a problem in refreshing the jframe. I m using netbeans. I am creating an application in which i create a jframe with a panel with a button. clicking on the button should result in replacing the contents on the screen with another panel.
    But all the new contents should come from another class.
    The code below removes the original contents of jframe, but doesnt add new contents.
    //Class FirstFrame
    package framerefreshtest;
    import javax.swing.*;
    import java.awt.*;
    public class FirstFrame extends javax.swing.JFrame {
        private JLabel label1;
        /** Creates new form FirstFrame */
        public FirstFrame() {
            initComponents();
        /** This method is called from within the constructor to
         * initialize the form.
         * WARNING: Do NOT modify this code. The content of this method is
         * always regenerated by the Form Editor.
        @SuppressWarnings("unchecked")
        // <editor-fold defaultstate="collapsed" desc="Generated Code">
        private void initComponents() {
            panel1 = new javax.swing.JPanel();
            jButton1 = new javax.swing.JButton();
            jLabel1 = new javax.swing.JLabel();
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
            jButton1.setText("Refresh Frame");
            jButton1.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jButton1ActionPerformed(evt);
            jLabel1.setText("This is the First Panel");
            javax.swing.GroupLayout panel1Layout = new javax.swing.GroupLayout(panel1);
            panel1.setLayout(panel1Layout);
            panel1Layout.setHorizontalGroup(
                panel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(panel1Layout.createSequentialGroup()
                    .addGap(99, 99, 99)
                    .addGroup(panel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING)
                        .addComponent(jLabel1)
                        .addComponent(jButton1))
                    .addContainerGap(120, Short.MAX_VALUE))
            panel1Layout.setVerticalGroup(
                panel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(panel1Layout.createSequentialGroup()
                    .addGap(30, 30, 30)
                    .addComponent(jLabel1)
                    .addGap(28, 28, 28)
                    .addComponent(jButton1)
                    .addContainerGap(118, Short.MAX_VALUE))
            javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
            getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addGap(51, 51, 51)
                    .addComponent(panel1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
                    .addContainerGap(34, Short.MAX_VALUE))
            layout.setVerticalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addGap(46, 46, 46)
                    .addComponent(panel1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
                    .addContainerGap(41, Short.MAX_VALUE))
            pack();
        }// </editor-fold>
        private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
            panel1.removeAll();
                label1 = new JLabel("Message number TWO");
                panel1.add(label1,BorderLayout.SOUTH);
                SecondPanel panel2 = new SecondPanel();
                panel2.validate();
                panel2.setVisible(true);
                panel1.add(panel2,BorderLayout.NORTH);
                panel1.revalidate();
                panel1.repaint();
                panel2.revalidate();
                panel2.repaint();
        * @param args the command line arguments
        public static void main(String args[]) {
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                    new FirstFrame().setVisible(true);
        // Variables declaration - do not modify
        private javax.swing.JButton jButton1;
        private javax.swing.JLabel jLabel1;
        private javax.swing.JPanel panel1;
        // End of variables declaration
    * SecondPanel.java
    * Created on 10-Mar-2010, 10:57:33
    package framerefreshtest;
    * @author Main
    public class SecondPanel extends javax.swing.JPanel {
        /** Creates new form SecondPanel */
        public SecondPanel() {
            initComponents();
        /** This method is called from within the constructor to
         * initialize the form.
         * WARNING: Do NOT modify this code. The content of this method is
         * always regenerated by the Form Editor.
        @SuppressWarnings("unchecked")
        // <editor-fold defaultstate="collapsed" desc="Generated Code">
        private void initComponents() {
            jButton1 = new javax.swing.JButton();
            jLabel1 = new javax.swing.JLabel();
            jButton1.setText("Go to First Panel");
            jLabel1.setText("This is the Second Panel");
            javax.swing.GroupLayout layout = new javax.swing.GroupLayout(this);
            this.setLayout(layout);
            layout.setHorizontalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addGap(141, 141, 141)
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                        .addComponent(jLabel1)
                        .addComponent(jButton1))
                    .addContainerGap(144, Short.MAX_VALUE))
            layout.setVerticalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addGap(51, 51, 51)
                    .addComponent(jLabel1)
                    .addGap(33, 33, 33)
                    .addComponent(jButton1)
                    .addContainerGap(179, Short.MAX_VALUE))
        }// </editor-fold>
        // Variables declaration - do not modify
        private javax.swing.JButton jButton1;
        private javax.swing.JLabel jLabel1;
        // End of variables declaration
    }any help ?

    b1l2u3m4 wrote:
    Hi,
    I have a problem in refreshing the jframe. I m using netbeans.You have my sympathies. When do you plan to learn how to code a GUI yourself?
    I am creating an application in which i create a jframe with a panel with a button. clicking on the button should result in replacing the contents on the screen with another panel.CardLayout
    db

  • X11 Pipeline: Extreme Thrashing

    I have a graphics intensive application that I am working on, and I am getting severe thrashing while running in X. Results are excellent from an e-machine running Windows Vista.
    Here's the basic idea of the program. It uses AWT (no Swing is ever referenced). There is a collection of "sprites" which were created from GraphicsDevice.createCompatibleImage() to give them the best chance at acceleration. Then there is a backbuffer, to which the program draws. It attempts to deliver higher framerates by only updating portions of the screen which are changing. Originally, this backbuffer was also created with GraphicsDevice.createCompatibleImage(), however this leads to the thrashing I mentioned earlier.
    After reading through:
    [Troubleshooting Guide for Java SE 6 Desktop Technologies|http://java.sun.com/javase/6/webnotes/trouble/TSG-Desktop/html/toc.html]
    I managed to isolate the problem to X11 offscreen pixmaps, and running with the flag -Dsun.java2d.pmoffscreen=false removes the thrashing.
    The problem I have here is that I am now confused. It seems to me that I want my sprites accelerated, but shouldn't my backbuffer also be accelerated? I'm not using antialiasing, nor alpha compositing, nor translations. I do make heavy use of setting the clip on the graphics object. Is that where my problem resides? Am I confused on the meaning of alpha compositing... does that include 1-bit transparency?
    Quote from the above referenced document:
    "The use of pixmaps typically results in better performance. However, in certain cases, the opposite is true. Such cases typically involve the use of operations which cannot be performed using the X protocol, such as antialiasing, alpha compositing, and transforms that are more complex than simple translation transforms.
    For these operations the X11 pipeline must do the rendering using the built-in software renderer. In most cases this includes reading the contents of the pixmap to a system memory (over the network in the case of remote X server), performing the rendering, and then sending the pixels back to the pixmap. Such operations could result in extremely poor performance, especially if the X server is remote."
    Could someone enlighten me here? Why are my accelerated surfaces being copied back into system memory when all I am doing is drawing accelerated surfaces onto accelerated surfaces using drawImage() and setClip().

    You're totally right. I was preparing a code example, during which I discovered my mistake.
    I'm still curious as to why Swing is causing a problem with off screen pixmaps in X. I've seen this problem before but I was never concerned with rapid updating of the screen so I never investigated. I think it must be Swing's backbuffer causing it, but is this a problem with the Java2D X11 pipeline, or maybe a bug somewhere else in my OS?
    Here is a code example which produces the problem, running it with sun.java2d.pmoffscreen=false runs fine, but without it, X begins hogging CPU time and starves Java out resulting in pauses in execution.
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    class SwingFail implements ActionListener {
      private static JFrame frame;
      class RefreshPanel extends JPanel {
        public RefreshPanel() {
          setPreferredSize(new Dimension(512, 512));
        public void paintComponent(Graphics g) {
          g.setColor(Color.black);
          g.fillRect(0, 0, 512, 512);
          g.setColor(Color.white);
          g.drawString(new Date().toString(), 25, 250);
      public SwingFail() {
        frame = new JFrame("Rapid Refresh");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        JPanel panel = (JPanel) frame.getContentPane();
        panel.add(new RefreshPanel());
        frame.pack();
        frame.setVisible(true);
      public void actionPerformed(ActionEvent e) {
        frame.repaint();
      public static void main(String[] args) {
        SwingFail sf = new SwingFail();
        javax.swing.Timer t = new javax.swing.Timer(1, sf);
        t.setCoalesce(false);
        t.start();
    }PS This is with Java 5, and the underlying OS is in bad need of an update so I wouldn't be surprised if this issue has long since been resolved, but I'd still love to hear from someone else running X11 if this works well or not. Of course hardware performance may be a factor, but the difference in CPU time should still be evident between turning offscreen pixmaps on or off.
    Edited by: DecadeOfJava on Jun 19, 2010 6:34 AM

  • When will iPad mini Applecare be available?

    Does anyone know when Applecare will be available on the Apple store for purchase??

    Well I truly love your products. The iPad mini experience e is quite disatisfactory.
    When I pinch and zoom to read books- black screen appears until I reset it to original size.
    And when I pinch and zoom pages on safari, trasnistion is not smooth at all. It appears like the page is refreshing frame by frame
    To close apps or pages on safari tab. I have to tap twice or thrice, yet it doesn't until I press it for two to three sec
    In AppStore sometimes the search bar is missing.
    iPad mini was bot on 19dec  for my birthday on 20th, n in a days time I have these complains.
    I love your brand the most and enjoy iPhone 3GS.

  • Live streaming video issues

    I look after a little old ladies PC in Australia from Canada.  She used to watch live video from a webcam in Canada looking at the snow & ice but now with a new HP PC she can't view the live feed... or to be more precise she can view it but the site won't load properly and displays a still image. 
    If the browser is refreshed the image updates but is a still image.
    We can see the time-stamp so we know there is a snapshot of the video being taken but it won't update with the live feed.
    I did read other posts about similar issues but can't seem to find an answer. 
    I have updated her Windows media player, uninstalled then re-installed both Flash & Shockwave to the latest versions but still the video won't play properly.
    She can watch other live streaming videos but there just seems to be an issue with this one in particular.
    I have tried the same webcam feed from other PCs in Canada and the UK with no issues. 
    She has an HP610-1010a Touchsmart with ATI Radeo HD5570 graphic card installed.
    Can anyone suggest something else I may be overlooking...?
    Thanks
    Malcolm
    This question was solved.
    View Solution.

    Hi,
    I tested on 5 machines: 1 HP laptop, 2 Dell laptops, 1 Apple and 1 Surface. I think we NEED NBN, my connection speed is not very fast but still reasonable but the machines took ages to just go to the first one. The second one was a bit faster but ONLY refresh frame when hit F5.
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Internalization problem

    Hi!
    I have Swing/Awt application. And now need add Internalization there
    I use http://java.sun.com/j2se/1.4.2/docs/api/java/util/ResourceBundle.html
    Whan my application starts - all working fine.
    Then I add JComboBox, which contain all posiible Languages. In comboBox ChangeListener I reload language resourcesBundle... Here all is ok!
    But problem is - how to "refresh" frame with new language saources?! myFrame.validate(); - don't help.
    Please help me...
    P.S Hopefully my question is clear...
    Edited by: rookie_84 on Apr 23, 2008 1:37 AM

    A call to repack() (or pack(), 1 of the 2) might work, might!

  • Problem with ATV refresh rates and frame rates

    I live in Australia and as such I am subject to PAL, so when I set my ATV up I set it to 720P 50Hz, when I purchased a TV season the episodes were running at 25fps and played back flawlessly with no dropped or added frames. My problem occurs when I download movies, all the movies I have bought are running at 24fps and suffer from quite noticeable jitter, almost like the 24th frame is duplicated and added as the 25th frame, I assume it is something like this as the pause happens every second.
    So has anyone had a problem similar to this and if so what do you do about it?
    Does the ATV playback all sources (24/25) smoothly even if it has to convert?
    Could it be caused by my TV?
    Any help to any of these questions would be great.
    Thanks.
    Tim.

    With my particular Apple TV setup and TV combination, I find that setting to 1080p (60hZ) gives my the best all-round round results.
    This does result in -slightly- jerky motion with 25fps material (especially old British TV shows), but it's bearable. It's particularly noticeable with sideways scrolling text and credits.
    The one thing that is peculiar on my setup is if I use 720p (either @60hz or 50hz) and watch an iTunes-purchased HD episode that is encoded at 24fps I get very odd motion effects indeed. Every few seconds the video appears to speed up almost like it is 'catching up' with lost frames - very hard to explain exactly how it looks. Anyway I set to 1080p and this effect is gone completely. It also goes away if I set to 1080i. I think something queer is going on with 720p on the Apple TV (at least with my TV there is). This happens with both HDMI and component outputs.
    It may be worth trying 1080i at either 50 or 60Hz if your set can't do 1080p.
    I would also suggest that 60hz in theory should give a smoother motion for 24fps playback than 50Hz.
    My basic problem with all this is that on even a cheap DVD player if a disk is 50Hz, the player switches to 50Hz output and if it is 60Hz, it will change to 60Hz. The Apple TV stays fixed. It's a shame it can't autoswitch refresh rates.

  • Image refreshing on a frame

    the project deals with images which have to be displayed on to a frame, however the images are
    not displayed properly.Initially only a band of the image is displayed... however on trying to resize the frame the image is entirely visible.
    Also we would like to know that in case of using split panes in order to display 2 images at a time
    how do we refresh only one of the panes.

    I have had a similar problem with an image only partially appearing in a Frame. The problem is that the image is not completely loaded when it is displayed. You may have to use a Media Tracker and/or a BufferedImage. I have used the Tracker which eliminates the problem but can cause delays to an image rotation. Another solution would be to use an OffScreenImage to have it preloaded. I think a friend of mine used that in a game we did for comp class last year. If you want the tracker code I used just send me an email and I'll locate it... Good luck with your project....
    Scott

  • Refreshing one frame only in a frame page

    Hi all,
    Pls help....i have this frame page with 4 frames. each one when click targets to another one on the same page...The last frame is a page which has 2 buttons Delete and Confirm and it has checkboxes.....when the checkbox are clicked and user clicks on Delete this specific frame page needs to be refresh and display the upated value....Right now it when i click on delete, it is being redirecting to blank window with the updated value and i need to click back to see the frame pages and the frame updated..which i do not want. Upon clicking Delete i want this specific frame to refresh and display the updated value....Pls help meeeeeeeeeee

    thanx a lot......geee....u have been of great help...i wrongly specified the target for my button in my javascript......

Maybe you are looking for

  • Problem installing OBIEE 11.1.1.6 on Linux 64-bit

    Hi, I am trying to install OBIEE 11.1.1.6 on OEL5.8 64-bit virtual machine. The Software Only install (the recommended option when I have other WebLogic apps running) gives me a message "an application server must already be installed" when I give it

  • I can't find my bookmarks

    I jus upgraded but I cannot find my Firefox tab or my bookmarks

  • How to implement command pattern into BC4J framework?

    How to implement command pattern into BC4J framework, Is BC4J just only suport AIDU(insert,update,delete,query) function? Could it support execute function like salary caculation in HR system or posting in GL(general ledger) system? May I create a ja

  • Creating adapters using PCK

    Hi guys, I have recently installed PCK. I want to start out with the development of adapters using PCK. Can somebody please provide some resources for the same. Thanks in Advance

  • Src.zip in SDK 1.4.0

    Almost all of the .java files are corrupt(I've tried two unzip programs.) Is there a way to get a fresh copy of src.zip from Sun?