Help needed in refreshing a panel in  a JFrame.

I have some problem in refreshing a panel of a window.
Here I am writting the sample code bellow.
My program contains 2 classes, one is "Test" other is "Testwindow".
class Test contains main(),displays the buttons reading from the string array obtained by listing a directory in my local file system through the panel p2 .If I click "Add" button in Test, class Testwindow's constructor is called & "Testwindow" is visible, which has a textfield. If you enter a string in the textfield, that string will be stored as a file in the same directory that the 1st window use. here I choose "C:\\temp" of my filesystem as the directory.
My requirement is:
when I enter a string in the textfield of Testwindow, then after clicking "Finish" button, that inputted string should be added to the panel p2 of 1st window(Test)during runtime.It means the panel p2 should be refreshed reading from the "C:\\temp" as soon as a new button is added to temp directory during runtime.
If any of you have idea over this,please help sending me the updated version of the code given below.
Regards.
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import java.io.*;
public class Test extends JFrame
JPanel p1,p2;
JButton b1,bdir[];
File f;
String s[];
int n,nmax;
public Test()
super("Test");
JPanel con=(JPanel)getContentPane();
con.setLayout(new BorderLayout());
addWindowListener(new WindowAdapter(){
public void windowClosing(WindowEvent e)
System.exit(0);
p1=new JPanel();
p2=new JPanel();
p2.setLayout(new GridLayout(nmax,1));
b1=new JButton("Add");
b1.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e)
if(e.getActionCommand()=="Add")
new Testwindow();
p1.add(b1);
f=new File("c:\\temp");
s=f.list();
n=s.length;
nmax=n+20;
bdir=new JButton[n];
for(int i=0; i<n; i++)
bdir=new JButton(s);
bdir.setHorizontalAlignment(AbstractButton.LEADING);
p2.add(bdir);
int hor=ScrollPaneConstants.VERTICAL_SCROLLBAR_AS_NEEDED;
int ver=ScrollPaneConstants.HORIZONTAL_SCROLLBAR_AS_NEEDED;
JScrollPane jsp=new JScrollPane(p2,hor,ver);
con.add(p1,"North");
con.add(jsp,"Center");
setSize(250,300);
public static void main(String arg[])
Test frame=new Test();
frame.setVisible(true);
class Testwindow extends JFrame implements ActionListener
JPanel p1,p2,p3;
JLabel l1;
JTextField tf1;
JButton b1,b2;
String s1, sdir[];
public Testwindow()
setTitle("Testwindow");
Container con=getContentPane();
con.setLayout(new BorderLayout());
p1=new JPanel();
p1.setLayout(new GridLayout(1,2));
p2=new JPanel();
l1=new JLabel("Enter a string: ");
tf1=new JTextField();
b1=new JButton("Finish");
b1.addActionListener(this);
p1.add(l1);
p1.add(tf1);
p2.add(b1);
con.add(p1,"North");
con.add(p2, "South");
setSize(300,150);
show();
public void actionPerformed(ActionEvent e)
if(e.getActionCommand()=="Finish"){
try{
s1=tf1.getText();
File id_name=new File("C:\\temp\\"+s1+".txt");
FileOutputStream out=new FileOutputStream(id_name);
out.close();
catch(IOException x)
System.out.println("Exception caught"+x);
this.setVisible(false);

import java.awt.*;
import java.awt.event.*;
import java.io.*;
import javax.swing.*;
public class test extends JFrame {
  JPanel p1, p2;
  JButton b1, bdir[];
  File f;
  String[] s;
  int n, nmax;
  public test() {
    super("Test");
    p1 = new JPanel();
    p2 = new JPanel();
    p2.setLayout(new GridLayout(nmax ,1));
    b1 = new JButton("Add");
    b1.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent e) {
        new Testwindow(test.this);
    p1.add(b1);
    f = new File("c:\\temp");
    s = f.list();
    n = s.length;
    nmax = n + 20;
    bdir = new JButton[n];
    for(int j = 0; j < n; j++) {
      bdir[j] = new JButton(s[j]);
      bdir[j].setHorizontalAlignment(AbstractButton.LEADING);
      p2.add(bdir[j]);
    JScrollPane jsp = new JScrollPane(p2);
    getContentPane().add(p1, "North");
    getContentPane().add(jsp, "Center");
    setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    setSize(250,300);
    setLocation(100,100);
    setVisible(true);
   * Called by actionPerformed method in Testwindow
  public void addButton(String title) {
    JButton button = new JButton(title);
    button.setHorizontalAlignment(AbstractButton.LEADING);
    p2.add(button);
    p2.revalidate();
  public static void main(String[] args) {
    new test();
import java.awt.*;
import java.awt.event.*;
import java.io.*;
import javax.swing.*;
class Testwindow extends JFrame implements ActionListener {
  JPanel p1,p2,p3;
  JLabel label1;
  JTextField tf1;
  JButton b1,b2;
  String s1, sdir[];
  test client;
  public Testwindow(test client) {
    setTitle("Testwindow");
    this.client = client;
    p1=new JPanel();
    p1.setLayout(new GridLayout(1,2));
    p2=new JPanel();
    label1=new JLabel("Enter a string: ");
    tf1=new JTextField();
    b1=new JButton("Finish");
    b1.addActionListener(this);
    p1.add(label1);
    p1.add(tf1);
    p2.add(b1);
    getContentPane().add(p1, "North");
    getContentPane().add(p2, "South");
    setSize(300,150);
    setLocation(360,100);
    setVisible(true);
  public void actionPerformed(ActionEvent e) {
    JButton button = (JButton)e.getSource();
    if(button == b1) {
      try {
        s1=tf1.getText();
        File id_name=new File("C:\\temp\\"+s1+".txt");
        FileOutputStream out=new FileOutputStream(id_name);
        out.close();
      catch(IOException x) {
        System.out.println("Exception caught"+x);
      s1 = tf1.getText();
      client.addButton(s1);
      this.setVisible(false);
}

Similar Messages

  • Help needed in refreshing a panel in my window.

    I have some problem in refreshing a panel of a window.
    Here I am writting the sample code bellow.
    My program contains 2 classes, one is "Test" other is "Testwindow".
    class Test contains main(),displays the buttons reading from the string array obtained by listing a directory in my local file system through the panel p2 .If I click "Add" button in Test, class Testwindow's constructor is called & "Testwindow" is visible, which has a textfield. If you enter a string in the textfield, that string will be stored as a file in the same directory that the 1st window use. here I choose "C:\\temp" of my filesystem as the directory.
    My requirement is:
    when I enter a string in the textfield of Testwindow, then after clicking "Finish" button, that inputted string should be added to the panel p2 of 1st window(Test)during runtime.It means the panel p2 should be refreshed reading from the "C:\\temp" as soon as a new button is added to temp directory during runtime.
    If any of you have idea over this,please help sending me the updated version of the code given below.
    Regards.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.io.*;
    public class Test extends JFrame
         JPanel p1,p2;
         JButton b1,bdir[];
         File f;
         String s[];
         int n,nmax;
         public Test()
              super("Test");
              JPanel con=(JPanel)getContentPane();
              con.setLayout(new BorderLayout());
              addWindowListener(new WindowAdapter(){
                   public void windowClosing(WindowEvent e)
                        System.exit(0);
              p1=new JPanel();
              p2=new JPanel();
              p2.setLayout(new GridLayout(nmax,1));
              b1=new JButton("Add");
              b1.addActionListener(new ActionListener(){
                   public void actionPerformed(ActionEvent e)
                        if(e.getActionCommand()=="Add")
                             new Testwindow();
              p1.add(b1);
              f=new File("c:\\temp");
              s=f.list();
              n=s.length;
              nmax=n+20;
              bdir=new JButton[n];
              for(int i=0; i<n; i++)
                   bdir=new JButton(s[i]);
                   bdir[i].setHorizontalAlignment(AbstractButton.LEADING);
                   p2.add(bdir[i]);
              int hor=ScrollPaneConstants.VERTICAL_SCROLLBAR_AS_NEEDED;
              int ver=ScrollPaneConstants.HORIZONTAL_SCROLLBAR_AS_NEEDED;
              JScrollPane jsp=new JScrollPane(p2,hor,ver);
              con.add(p1,"North");
              con.add(jsp,"Center");
              setSize(250,300);
         public static void main(String arg[])
              Test frame=new Test();
              frame.setVisible(true);
    class Testwindow extends JFrame implements ActionListener
         JPanel p1,p2,p3;
         JLabel l1;
         JTextField tf1;
         JButton b1,b2;
         String s1, sdir[];
         public Testwindow()
              setTitle("Testwindow");
              Container con=getContentPane();
              con.setLayout(new BorderLayout());
              p1=new JPanel();
              p1.setLayout(new GridLayout(1,2));
              p2=new JPanel();
              l1=new JLabel("Enter a string: ");
              tf1=new JTextField();
              b1=new JButton("Finish");
              b1.addActionListener(this);
              p1.add(l1);
              p1.add(tf1);
              p2.add(b1);
              con.add(p1,"North");
              con.add(p2, "South");
              setSize(300,150);
              show();
         public void actionPerformed(ActionEvent e)
              if(e.getActionCommand()=="Finish"){
                   try{
                        s1=tf1.getText();
                        File id_name=new File("C:\\temp\\"+s1+".txt");
                        FileOutputStream out=new FileOutputStream(id_name);
                        out.close();
                   catch(IOException x)
                        System.out.println("Exception caught"+x);
                   this.setVisible(false);

    You have 2 JFrame's: Test and TestWindow
    In order for TestWindow to send messages to Test it needs a reference of Test. Therefor write in TestWindow this:private Test parentFrame;
    public void setParentFrame (Test t)
      parentFrame = t;
    }... then after create an instance of TestWindow in Test call this method like this:...
    TestWindow tw = new TestWindow ();
    tw.setParentFrame (this);
    ...Next, in Test create a method that will be called when a string is inputted:public void sendString (String s)
      //update the panel or whatever
    }call this method when the user clicks on a button or whatever in TestWindow:parentFrame.sendString (s);greetz,
    Stijn

  • Help needed in refreshing a Panel

    I have created a GUI, which is having 2 windows. window1 is having a panel,that displays an array of buttons. from window1, clkicking "add" button window2 appears. in window2 I am adding new values to the button array of window1. window2 is having a button "ok".
    My requirement is when I'll add new buttons thru window2 to the button array in window1, and after clicking the "ok" button in window2, the window1 should be refreshed with the new button in the button array.
    I have already tried one solution for it.I put the creation, addition of buttons to panel & its visibility in a function and I called the function while clicking the "ok" button in window2. But it is showing a list of event dispatch error.
    If any of you have any better idea, please let me know soon.so that I can proceed further.
    Regards

    Do the following in window2 after adding the values to window1;
    window1.repaint();
    window1.validate();Hope this fixes your problem....And if not, then I need some code to work it.
    Cheers,
    Bolo

  • Help needed in refreshing a button array

    Hi,
    I am developing a GUI, in which window1 is in package pack1 & window2 in pack2. from window1, clicking "Add" button window2 appears.
    In window1, I am storing the content of a particular directory in my file system as a string array. So, each string in the string array is used as the label of a button in the button array. The no. of buttons corresponds to the no. of files in the directory. window1 is having a panel that displays the buttonarray.
    In window2, I have created a textfield and a "ok" button. whatever textinput(string) I give to the textfield, after clicking "ok" that is stored as a file in the directory, to which window1 refers for its buttons.
    My requirement is: During runtime, when I am creating new files thru the textfield of window2,those files need to be added to the panel of window1 dynamically updating the directory content.
    So, how can I refresh the panel in window1 after adding a file thru textfiels in window2.
    If anybody has any idea about this, please let me know soon.
    Regards.

    Hello,
    I have not got the solution. So, still I am waitiong for the answer.
    If you have any idea, please let me know.

  • Help Needed in Refreshing Page.

    Hi All,
    I have an application with 2 pages.
    1st page has radiogroup with submit (P1_RADIO). Based on selection of the radio button, some text field will appear (P1_ID). User has to enter value and hit SUBMIT button. I have one branch unconditional to page 1 itself. One more branch to page 2 when button pressed = SUBMIT.
    When submit button is pressed, it will take user to page 2, where I have written before header process for exporting data to csv (Used Scotts custom export to csv method).
    Now the new additional requiremnt is that, when user enters value in P1_ID and hits enter, the same functionality as hitting SUBMIT button must take place. Any ideas on how to achieve this?
    I have already thought/tried the following:
    1) Text (which submits when enter pressed is not working - as I cannot pass any request to it and hence cannot give a branch to page 2)
    2) I gave a hidden field PI_CAPTURE_ENTER and assigned value of ENTER to it, if P1_ID is not null. Then I wrote a conditional branch to Page 2 , if :P1_CAPTURE_ENTER = 'ENTER'.
    In Page 2, I cleared the P1_ID after running the csv process. This works properly.
    But only problem is that even though session state for page 1 shows cleared data, I need to refresh the page 1 manually, if I need to run some other option in radiogroup. (If I do not refresh the page 1, the next time I hit radiogroup, P1_CAPTURE_ENTER will still = 'ENTER' and redirects to page 2)
    How can I overcome this?
    Or are there any other ideas by which i can achieve what is actualy needed?
    Any help would be appreciated.
    Thanks,
    Sumana

    ok.. Let me try to explain my requiremnt only (newly)
    I have explained it in my first post, but will elaborate it again. (Oh btw I tried accessing apex.oracle.com to login to my id, but Page is down currently)
    I have an application with 2 pages.
    1st page has radiogroup with submit (P1_RADIO). Radio Group Values are: QSHOW, QSHOW1
    Based on selection of the radio button, some text field will appear. If QSHOW is selected P1_ID will appear. If QSHOW1 is selected P1_USER will appear.
    Assuming user has selected QSHOW. Page gets submitted on selection (Unconditional branch to page 1 used for this)
    User enters 'Sumana' in PI_ID and hits SUBMIT button. This redirects to page to, where I have used behore header process to export to csv. (Used Scotts custom export to csv method).
    Redirection happens because of conditional branch to Page 2 on hitting SUBMIT button.
    Now the new additional requiremnt is that, when user enters value in P1_ID and hits enter, the same functionality as hitting SUBMIT button must take place.
    Similarly if QSHOW1 is slected and P1_USER is given and enter is hit, the same functinality must happen.
    How do I achieve this. My original requiremnt are still valid. This is additional one.
    Thanks,
    Sumana

  • Help needed: replacement of display panel (HP Pavilion G7-1150US)

    Hi all,
    My brand new (< 2months old) HP Pavilion G7 1150US laptop's screen is broken, I need help in buying the panel. Where can I purchase the display panel.
    I dont need the complete display assembly (unless the cost is not more than a few bucks of that of the panel alone), i just need the panel.
    PART number: 641395-001
    17.3” Diagonal HD+ High-Definition HP LED BrightView Widescreen Display (1600 x900) 
    Thanks in advance.
     Ram
    This question was solved.
    View Solution.

    eBay:
    auction
    Youtube
    I did not watch the video but it cannot hurt for you to do so. If you need more help post back. I actually think it is easier to replace just the panel as opposed to the entire assembly, but that is me.

  • Help needed with refreshing data

    hello OTN!!
    i am having a problem in refreshing the data each time i update it.
    the problem is that i have a tabular layout of my forms . i have made them all display items and whenever a user wants to update the data and he can click on a link on any row and a small pop up window comes up displaying the data in text boxes user can update an individual row of data but after updating the data when user come back on the tabulary laypout form the data does not refreshes it self and same old(not updated) row of data is displayed.
    i have passed parameters between the popup and tabular forms.plz help me urgently and tell me what should i do to refresh my data or behind what trigger i should write the code for refreshing the data. plus so far i have managed to make a button refresh which refreshes the things gaian by execute_query.but i wana do it automatically without pressing button and such .

    Well - you could reformat your drive to FAT32 using Disk Utility. Probably not the ideal solution, but it could work if you save the data first. I'd recommend using a different external drive formatted in FAT32, or maybe a large USB flash drive (or memory cards) if you've got one.
    I have several external drives and a drive enclosure. One (from SimpleTech) was automatically formatted as an NTFS drive (didn't see that notice before I plugged it into my PC at work). It wouldn't read on my iBook G4 but is OK on my MacBook. I think now that it mounts, I could probably reformat it if necessary. Another Western Digital drive came FAT32 formatted.

  • Query help needed for Sales order panel user field query.

    I have a user defined form field on sales order row level called = U_DEPFEEAMT
    1, I would like this field to get the value from a field on this sales order row level multiplied by what is in point 2 below. The details of field in point 1 is :
    Form=139, item=38, pane=1, column=10002117, and row=1
    2. The contents in field 1 should be multiplied  by a value coming from another user field linked to OITM master item.
    The details of user field attached to OITM is :
    OITM.U_DepositFeeON
    Appreciate your help.
    Thank you.

    Try this one:
    SELECT T0.U_DepositFeeON*$[$38.10002117.number\]
    FROM dbo.OITM T0
    WHERE T0.ItemCode = $[$38.1.0\]
    Thanks,
    Gordon

  • Error occurred while trying to refresh edit panel "SeqEdit.ba"

    I've been working on a TestStand project for a while (my first) and lately I get the following error just by clicking on a different step (and any step thereafter, even the one I was previously on):
    Error occurred while trying to refresh edit panel "SeqEdit.ba":
    Index was out of range. Must be non-negative and less than the size of the collection.
    Parameter name: index
    Closing TS seems to temporarily clear it out, but it will come back after a while.
    Can anybody help me figure out what this is?
    Thanks!

    Here are my answers to the last two posts.
    When and what were you doing when this error first appeared?
    I'm just developing an automated test, so there's a lot of going back and forth between different subsequences filling in gaps as I go.
    Does this error cause your application to crash or hang?
    Once it appears, it just continues to appear each and every time I click a different step. I can still develop, but it sure is a pain. It's faster to restart TestStand so it doesn't pop up again (hopefully).
    When you said "closing TS seems to temporarily clear it out, but it will come back after a while", could you quantify the amount of time it would take this error to occur again?
    I haven't timed it, but it seems to take several hours. I would suspect more that it's based on the number of times I'm clicking different VIs, but I have no hard evidence.
    Your error may be due to a registry error. If that is the case, I would recommend backing up your project first and then try to repair the software. You can accomplish the repair by going into Add and Remove Software from Control Panel, selecting National Instruments in the program list, choose TestStand and click on Repair. You will need to have the install CD for this.
    Ah, my favorite suggestion...
    Do the VIs specified in a LV steps take a long time to load when you click on the LV steps?
    I'm not sure what a long time to load is. The first time LabVIEW opens, it takes a while (~30 seconds). After that, the steps typically open in about a second. I sure wish I had an SSD.
    Does the error first occur when you clicking on a different LV step or the step is calling a different type of module?
    I'm working exclusively with the LabVIEW adapter and the built-in steps: mainly Wait, Additional Results, If Statements, and For Loops.
    Do the VIs have cluster parameters?  Yes.
    Are the clusters expanded when you select a different step? I had noticed that sometimes they are open and other times they aren't any more. I tried just now and after expanding a few, they all seemed to be expanded. Then I went to another subsequence that makes some of the same VI calls and they were open to begin with, then not (~5-10 VIs clicked on). I went back to the first subsequence and they were no longer open. That's interesting, but what are you looking for here?
    Does the the error occur when you are using the LabVIEW Run-Time or LabVIEW Development System?
    I am using the LabVIEW Professional Development System with the version indicated in my first post.
    Are you running any sequences when the error occurs?
    I typically run the sequence several times when debugging to make sure that the DUT responds the way I want it to. But the error has only occurred when I'm developing while clicking on a different VI after some undefined amount of time (or number of clicks).
    Is it possible for you to post the sequence with some of the VIs that reproduce the problem?  The VI block diagrams can be empty.  I would like to see what type of controls you are using. It's a decently large application so I'm not sure you want all my code and I'm not sure I'd be able to hand it over either. (DoD contract and such.) I have defined a few (3 or 4) strict type def controls that are passed as clusters within TestStand. Other than that, most of my calls are to bench-top instruments (SigGen, SpecAn, power supplies) and a PXI switch. The other is through an RS485 connection to talk to the DUT.
    One other note: This error hasn't occurred since I posted (of course, right?), but I also haven't done as much back and forth clicking of VIs. I have a hunch that it was related to the sheer number of back and forth clicks between different VIs when I was trying to get the values to be uniform among similar calls when I was setting everything up (similar parameter names in subsequences created from custom data types). I hope that helps.
    Thanks!

  • Help needed with Vista 64 Ultimate

    "Help needed with Vista 64 UltimateI I need some help in getting XFI Dolby digital to work
    Okay so i went out and I bought a yamaha 630BL reciever, a digital coaxial s/pdif, and a 3.5mm phono plug to fit perfectly to my XFI Extreme Music
    -The audio plays fine and reports as a PCM stream when I play it normally, but I can't get dolby digital or DTS to enable for some reason eventhough I bought the DDL & DTS Connect Pack for $4.72
    When I click dolby digital li've in DDL it jumps back up to off and has this [The operation was unsuccessful. Please try again or reinstall the application].
    Message Edited by Fuzion64 on 03-06-2009 05:33 AMS/PDIF I/O was enabled under speakers in control panel/sound, but S/PDIF Out function was totally disabled
    once I set this to enabled Dolby and DTS went acti've.
    I also have a question on 5. and Vista 64
    -When I game I normally use headphones in game mode or 2. with my headphones, the reason for this is if I set it on 5. I get sounds coming out of all of the wrong channels.
    Now when I watch movies or listen to music I switch to 5. sound in entertainment mode, but to make this work properly I have to open CMSS-3D. I then change it from xpand to stereo and put the slider at even center for 50%. If I use the default xpand mode the audio is way off coming out of all of the wrong channels.
    How do I make 5. render properly on vista

    We ended up getting iTunes cleanly uninstalled and were able to re-install without issue.  All is now mostly well.
    Peace...

  • Help needed : Extension manager cs6 not listing products

    Help needed to Adobe extension manager cs6 to show all my cs6 products
    I downloaded Extension manager from here Adobe - Exchange : Download the Adobe Extension Manager
    My Computer windows xp 32bit
    My Photosop version cs6
    My Dreamweaver version cs6
    I installed photoshop here : C:\Program Files\Adobe\Adobe Dreamweaver CS6
    and my XManConfigfile
    <?xml version="1.0" encoding="UTF-8"?>
    <Configuration>
        <VariableForExMan>
            <Data key="$sharedextensionfolder">$shareddatafolder/Adobe/Dreamweaver CS6/$LOCALE/Configuration/Extensions</Data>
            <Data key="$dreamweaver">$installfolder</Data>
            <Data key="$dreamweaver/Configuration">$userdatafolder/Adobe/Dreamweaver CS6/$LOCALE/Configuration</Data>
            <Data key="$UserBinfolder">$userdatafolder/Adobe/Dreamweaver CS6/$LOCALE</Data>
            <Data key="NeedOperationNotification">true</Data>
            <Data key="QuitScript">dw.quitApplication()</Data>
            <Data key="SupportedInSuite">CS6</Data>
            <Data key="HostNameForCSXS">DRWV</Data>
            <Data key="ProductVersion">12.0</Data>
            <Data key="Bit">32</Data>
    <Data key="DefaultLocale">en_US</Data>
    </VariableForExMan> 
    </Configuration>
    Extension manager installed here : C:\Program Files\Adobe\Adobe Extension Manager CS6
    Photoshop Installed here: C:\Program Files\Adobe\Adobe Photoshop CS6
    and my XManConfigfile
    <?xml version="1.0" encoding="UTF-8"?>
    <Configuration>
        <VariableForExMan>
            <Data key="EmStorePath">$SharedRibsDataFolder/Adobe/Extension Manager</Data>
            <Data key="$photoshopappfolder">$installfolder</Data>
            <Data key="$pluginsfolder">$photoshopappfolder/Plug-Ins</Data>
            <Data key="$presetsfolder">$photoshopappfolder/Presets</Data>
            <Data key="$platform">Win</Data>
            <Data key="$actions">$presetsfolder/Actions</Data>
            <Data key="$blackandwhite">$presetsfolder/Black and White</Data>
            <Data key="$brushes">$presetsfolder/Brushes</Data>
            <Data key="$channelmixer">$presetsfolder/Channel Mixer</Data>
            <Data key="$colorbooks">$presetsfolder/Color Books</Data>
            <Data key="$colorrange">$presetsfolder/Color Range</Data>
            <Data key="$colorswatches">$presetsfolder/Color Swatches</Data>
            <Data key="$contours">$presetsfolder/Contours</Data>
            <Data key="$curves">$presetsfolder/Curves</Data>
            <Data key="$customshapes">$presetsfolder/Custom Shapes</Data>
            <Data key="$duotones">$presetsfolder/Duotones</Data>
            <Data key="$exposure">$presetsfolder/Exposure</Data>
            <Data key="$gradients">$presetsfolder/Gradients</Data>
            <Data key="$huesat">$presetsfolder/Hue Sat</Data>
            <Data key="$imagestatistics">$presetsfolder/Image Statistics</Data>
            <Data key="$keyboardshortcuts">$presetsfolder/Keyboard Shortcuts</Data>
            <Data key="$layouts">$presetsfolder/Layouts</Data>
            <Data key="$lenscorrection">$presetsfolder/Lens Correction</Data>
            <Data key="$levels">$presetsfolder/Levels</Data>
            <Data key="$liquifymeshes">$presetsfolder/Liquify Meshes</Data>
            <Data key="$menucustomization">$presetsfolder/Menu Customization</Data>
            <Data key="$optimizedcolors">$presetsfolder/Optimized Colors</Data>
            <Data key="$optimizedoutputSettings">$presetsfolder/Optimized Output Settings</Data>
            <Data key="$optimizedsettings">$presetsfolder/Optimized Settings</Data>
            <Data key="$patterns">$presetsfolder/Patterns</Data>
            <Data key="$reducenoise">$presetsfolder/Reduce Noise</Data>
            <Data key="$replacecolor">$presetsfolder/Replace Color</Data>
            <Data key="$scripts">$presetsfolder/Scripts</Data>
            <Data key="$selectivecolor">$presetsfolder/Selective Color</Data>
            <Data key="$shadowhighlight">$presetsfolder/Shadow Highlight</Data>
            <Data key="$smartsharpen">$presetsfolder/Smart Sharpen</Data>
            <Data key="$styles">$presetsfolder/Styles</Data>
            <Data key="$textures">$presetsfolder/Textures</Data>
            <Data key="$tools">$presetsfolder/Tools</Data>
            <Data key="$variations">$presetsfolder/Variations</Data>
            <Data key="$webphotogallery">$presetsfolder/Web Photo Gallery</Data>
            <Data key="$workspaces">$presetsfolder/Workspaces</Data>
            <Data key="$zoomify">$presetsfolder/Zoomify</Data>
         <Data key="$hueandsaturation">$presetsfolder/Hue and Saturation</Data>
         <Data key="$lights">$presetsfolder/Lights</Data>
         <Data key="$materials">$presetsfolder/Materials</Data>
         <Data key="$meshes">$presetsfolder/Meshes</Data>
         <Data key="$rendersettings">$presetsfolder/Render Settings</Data>
         <Data key="$volumes">$presetsfolder/Volumes</Data>
         <Data key="$widgets">$presetsfolder/Widgets</Data>
            <Data key="$localesfolder">$photoshopappfolder/Locales</Data>
            <Data key="$additionalplugins">$localesfolder/$LOCALE/Additional Plug-ins</Data>
            <Data key="$additionalpresets">$localesfolder/$LOCALE/Additional Presets</Data>
            <Data key="$localeskeyboardshortcuts">$localesfolder/$LOCALE/Additional Presets/$platform/Keyboard Shortcuts</Data>
            <Data key="$localesmenucustomization">$localesfolder/$LOCALE/Additional Presets/$platform/Menu Customization</Data>
            <Data key="$localesworkspaces">$localesfolder/$LOCALE/Additional Presets/$platform/Workspaces</Data>
            <Data key="$automate">$pluginsfolder/Automate</Data>
            <Data key="$digimarc">$pluginsfolder/Digimarc</Data>
            <Data key="$displacementmaps">$pluginsfolder/Displacement Maps</Data>
            <Data key="$effects">$pluginsfolder/Effects</Data>
            <Data key="$extensions">$pluginsfolder/Extensions</Data>
            <Data key="$fileformats">$pluginsfolder/File Formats</Data>
            <Data key="$filters">$pluginsfolder/Filters</Data>
            <Data key="$imagestacks">$pluginsfolder/Image Stacks</Data>
            <Data key="$importexport">$pluginsfolder/Import-Export</Data>
            <Data key="$measurements">$pluginsfolder/Measurements</Data>
            <Data key="$panels">$pluginsfolder/Panels</Data>
            <Data key="$parser">$pluginsfolder/Parser</Data>
         <Data key="$3dengines">$pluginsfolder/3D Engines</Data>
            <Data key="$lightingstyles">$pluginsfolder/Filters/Lighting Styles</Data>
            <Data key="$matlab">$photoshopappfolder/MATLAB</Data>
            <Data key="UserExtensionFolder">$photoshopappfolder</Data>
            <Data key="$photoshop">$UserDataFolder/Adobe/Adobe Photoshop CS6/Configuration</Data>
            <Data key="DisplayName">Photoshop CS6 32</Data>
            <Data key="ProductName">Photoshop32</Data>
            <Data key="FamilyName">Photoshop</Data>
            <Data key="ProductVersion">13.0</Data>
            <Data key="IconPath">Configuration/PS_exman_24px.png</Data>
            <Data key="SupportedInSuite">CS6</Data>
            <Data key="HostNameForCSXS">PHSP</Data>
            <Data key="Bit">32</Data>
        </VariableForExMan> 
    </Configuration>
                                                                        Please someone help me i cant install any photoshop extension because of this issue,,,

    Waiting for your reply ...thanks
    Here is the results
    I installed photoshopcs6 illustrator cs6 dreamweaver cs6 illustrator cs6 in the system , But nothing seems
    Result: BridgeTalk Diagnostics
      Info:
      Name = estoolkit-3.8
      Status = PUMPING
      Path
      Version = 2.0
      Build = ES 4.2.12
      Next serial number = 40
      Logging: = OFF
      Now = 15:55:49
      Messages:
      Message Version = 2.05
      Authentication = ON
      Digest = ON
      Thread: estoolkit-3.8#thread
      Avg. pump interval = 55ms
      Last pump = 62ms ago
      Ping: 7
      ECHO_REQUEST: ECHO_RESPONSE
      Timeout = undefined
      Handler = undefined
      STATUS: PUMPING
      Timeout = undefined
      Handler = undefined
      MAIN: MAIN
      Timeout = undefined
      Handler = installed
      LAUNCHED: LAUNCHED
      Timeout = undefined
      Handler = installed
      DIAGNOSTICS: DIAGNOSTICS
      Timeout = undefined
      Handler = installed
      INFO: INFO
      Timeout = undefined
      Handler = installed
      SETUPTIME: thread=0ms, left=16ms
      Timeout = undefined
      Handler = undefined
      Instances: 3
      estoolkit-3.8#dbg:
      msg[15:55:49]: 00000035
      @BT>Version = 2.05
      Target = estoolkit-3.8#dbg
      Sender = estoolkit-3.8#dbg
      Sender-ID = localhost:win3788
      Timeout = 15:55:50
      Type = Ignore
      Response-Request = Timeout
      Headers = (no headers)
      Timestamp = 15:55:49
      Serial-Number = 35
      Received = undefined
      Result = undefined
      Error = undefined
      Body = (empty)
      Incoming: 1
      Outgoing: 0
      Handler: 9
      ExtendScript = for all messages
      Error = for only msg #25
      Error = for only msg #27
      Error = for only msg #31
      Result = for only msg #35
      Error = for only msg #35
      Timeout = for only msg #35
      Result = for only msg #37
      Error = for only msg #37
      estoolkit-3.8#estk:
      msg[15:55:49]: 00000037
      @BT>Version = 2.05
      Target = estoolkit-3.8#estk
      Sender = estoolkit-3.8#dbg
      Sender-ID = localhost:win3788
      Timeout = 16:05:49
      Type = Debug
      Response-Request = Result Error
      Headers = (no headers)
      Timestamp = 15:55:49
      Serial-Number = 37
      Received = undefined
      Result = undefined
      Error = undefined
      Body: 107 bytes
      Text = <get-properties engine="main" object="$.global" exclude="undefined,builtin,prototype" all="true" max="20"/>
      Incoming: 1
      Outgoing: 0
      Handler: 1
      ExtendScript = for all messages
      estoolkit-3.8: (main)
      Incoming: 0
      Outgoing: 0
      Handler: 1
      ExtendScript = for all messages
      Targets: 1
      Connector = PCD
      Installed: 0
      Running: 0
      exman-6.0:
      Path = C:\Program Files\Adobe\Adobe Extension Manager CS6\Adobe Extension Manager CS6.exe
      Display Name = Adobe Extension Manager CS6
      MsgAuthentication = ON
      MsgDigest = ON
      ESTK = OFF
      BundleID = com.adobe.exman
      Status = (not running)
      ExeName = Adobe Extension Manager CS6.exe
      Installed: 1
      Running: 0
      Groups = (no groups defined)

  • Refreshing the panels when new content added?

    Hey, guys. My first post here; hope I'm not too much of a JNewbie for you. :)
    I'm getting my feet wet in Swing, working on an invoice program for work. I want it to look like a regular invoice, with fields for SKU, description, cost per unit, units, and total per line item. Right now, I have those five fields in a Jpanel that I add to the bottom of the layout.
    The problem is that I need the ability to go to File => Add New Item... and have another JPanel with those five fields add to the bottom so a 2nd item can be added to the form below the first. I tried making a function that adds them to the panel, using the same type of syntax that the generated code (using a form builder in NetBeans) did. I don't see the lines get added.
    My thought is that there is some function I need to call to redraw or refresh the panel so that the new components start drawing. However, my Great Javadoc Adventure has turned up no clues.
    Can anyone please give me a hand with making this happen, or at the least coming up with an alternate solution that will achieve similar results?
    Thanks much.
    Jaeden Stormes
    [email protected]

    I tried revalidate() , but no change.
    Here's the function I'm using to try to add the item...
    private void NewLineItem()
    javax.swing.JPanel jLine = new javax.swing.JPanel();
    jLine.setLayout(new org.netbeans.lib.awtextra.AbsoluteLayout());
    jItemCode.setHorizontalAlignment(javax.swing.JTextField.CENTER);
    jLine.add(jItemCode, new org.netbeans.lib.awtextra.AbsoluteConstraints(0, 0, 110, -1));
    jCourseDelivery.setHorizontalAlignment(javax.swing.JTextField.LEFT);
    jLine.add(jCourseDelivery, new org.netbeans.lib.awtextra.AbsoluteConstraints(110, 0, 240, -1));
    jItemQuantity.setHorizontalAlignment(javax.swing.JTextField.CENTER);
    jLine.add(jItemQuantity, new org.netbeans.lib.awtextra.AbsoluteConstraints(350, 0, 110, -1));
    jItemRate.setHorizontalAlignment(javax.swing.JTextField.CENTER);
    jLine.add(jItemRate, new org.netbeans.lib.awtextra.AbsoluteConstraints(460, 0, 100, -1));
    jItemAmount.setHorizontalAlignment(javax.swing.JTextField.CENTER);
    jLine.add(jItemAmount, new org.netbeans.lib.awtextra.AbsoluteConstraints(560, 0, 100, -1));
    jLineItemSection.add(jLine);
    jLineItemSection.revalidate();
    pack();
    JLineItemSection is a JPanel inside my frame.
    Any suggestions? I think the way I am using the AbsoluteContraints is screwed up, as I'm having a lot of trouble with the layouts in general. The form editor in NetBeans (at least, the version in 3.6) needs a LOT of work.

  • Help needed with Network UI (JNET) in WEB DYNPRO for JAVA

    Hi all,
      We are using Network UI element in our Web Dynpro Java. All is ok, but we have a problem with 'PRINT_PREVIEW' button. If you do click on this button, another window is open with a page preview, but always is shown the first XML loaded, in other words, if you load a XML and change it, print preview don´t show this changes.
      There are some information about Network UI in SDN but nothing about our problem.
      Can somebody help me?, we need show refresh data in print preview page.
    Thanks for all in advance.
    Gabriel Garcia.

    Hi Ayyapparaj,
      We are generating all XML (Type Repository, Data, etc...) and passing this new file to Network UI Datasource property.
    Thanks for your response.
    Gabriel Garcia.

  • Need to refresh materialized view from procedure and pl/sql block

    Hi,
    I need to refresh materialized view (complete refresh)from procedure and pl/sql block .can some one help.
    MV name:MV_DGN_TEST_SESSION
    Thanks,
    Rajasekhar

    dbms_mview.REFRESH ('MV_DGN_TEST_SESSION', 'C');Regards,
    Mahesh Kaila
    Edited by: user4211491 on Dec 1, 2009 10:41 PM

  • Refresh ECC 6.0 do I need to refresh associated BW 7.0

    I am refreshing ECC 6.0 EHP4 Oil&Gas and it is attached to associated BW 7.0.
    So if I refresh my TEST ECC from my INT (QA) ECC system is there a need to also refresh BW?
    I don't see any need to refresh associated BW 7.0 since the refresh will reSID ECC system as long as we stop the queue and then perform a full extract again.
    Is there anything  else or is there a note or procedure to perform any BW objects in the ECC system prior to reanabling the queues and extracts in BW?
    Thanks
    Mikie

    ECC refresh is a different and separate task.  BW 7.0 refresh is not a mandetory one that you have to do when ECC refresh is going on.
    What all you have to do is, When ECC refresh is happened, BI source system connection would be damaged.
    That time, you have to restore the connection by making both the systems modifable.
    After that just check the extraction whether it is normal or not.
    Hope this would help you.

Maybe you are looking for

  • Song doesn't work

    I've dowloaded this album SINAI (Artist) - A PINCH OF CHAOS (Album). I would know why the song STRAIGHT AS AN ARROW doesn't work!!! The whole song it's 3min:53sec and at the minute 1:38sec the song stop completealy. I've had already problems like tha

  • How to record a simple sidebar video as in Adobe Presenter 7

    In Adobe Presenter 9, how to record a video with my webcam to put as a sidebar video for one slide ? In Presenter 7 we could do that easily.  Now with the new video editer we can make great videos and capture the screen.  But that's not what need...

  • Premiere Pro CC's Warp Stabilizer BUGS...see for yourself. (7.0.1 & 7.1)

    I'd love to hear from Adobe Staff on this one. Hopefully they can focus on fixes over features for the next update, especially for one it's most touted effects. Warp Stabilizer works great at stabilizing clips in Premiere Pro CC...but I'm beginning t

  • Dual PSU w/Slave cable quesiton.

    I am planning on running Tri-Sli w 3x470's. I have 2 psu's that are not upto the task of doing that and running my system. 1st PSU Corsair TX950 2nd PSU Muskin Joule 1000 So I want to run my system from the 950 and gpu's from the 1000. I know how to

  • Do not respect security environnement and load images

    With Firefox 4. When loading into a securised website/environnement, that identify and blocks certain images as web bugs, then firefox 4 displays them. Other browsers respect the restriction of the environnement. Related to the question: problem when