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

Similar Messages

  • 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);
    }

  • 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

  • Help - Need download for 6.0.4 for Windows XP

    My 6.0.5 upgrade is not working properly and I need to go back to 6.0.4. My 30G video iPod lost over 1000 songs and many of the ones left stop playing prematurely. Everything was working fine until I upgraded. Where can I find the upgrade. Apple does have a site for the 6.0.4, but when you click to download, it automatically sends you to 6.0.5. Anyone else having this problem?? Thanks for any help. I just want to listen to my songs, podcasts, video, etc! I even sent my iPod in to Apple repair, and they returned it with a note saying that nothing was wrong with it. I guess they didn't try to listen to any music on it.
    Toshiba A105   Windows XP   Windows XP MCE

    You'll find older versions of iTunes here: Old iTunes for Windows

  • Help needed with iTunes 10.2.2 on Windows 7 (64-bit)

    A friend called me asking for help with her iTunes library.  She said her music library had disappeared except for one song, which she purchased today.  The strange things are:
    1)  Her music is still located in the same location as it had been, yet her music library was empty (except for the one song she purchased today).
    2)  Her iTunes music store password appears in the application window title bar, right above the Apple logo.
    She's had problems with losing music before, but nothing like this where ALL of her music disappeared (except for the one song she purchased today).  What confuses me is her iTunes music store password appearing in the iTunes application window title bar.  
    She's running Windows 7 Home Premium Edition (64-bit) and is using Itunes 10.2.2 64-bit.
    Any ideas on what might have caused this?
    Thanks in advance!
    Peace...

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

  • Urgent help needed to setup Forms 6i Server on Windows Server 2003

    Hello,
    I am trying to install Forms 6i Server from the Forms/Reports 6i Release 2 CD onto a server with Windows Server 2003 Standard Editon (services pack 1) installed.
    The Oracle Installer produced the following error when I tried to install the Forms 6i Server From the Forms/Reports 6i Release 2 CD:
    user1.pin(20); os_error while spawning ifsrv60 -install forms60server port=9000 mode=socket batch=yes.
    Has anyone successfully installed Forms 6i Server from Forms/Reports 6i Release 2 CD onto a Windows Server 2003 server?
    Any help is appreciated.
    Phil

    You it obtained to install the FORMS 6i SERVER in Windows 2003 ?
    I am with the same problem and not yet I obtained solution.

  • Licensing help needed for datacenter server with vm running windows server 2012 essentials and ten virtual desktops for remote access

    NPO wants to get windows server 2012 r2 datacenter as the main operating system and then windows server 2012 r2 essentials plus 10 windows 8.1 as virtual desktops.  Each desktop for one remote user running office 2013.  Is there a better configuration?
     In either case what licenses does the NPO need to purchase?
    Bob

    Hi,
    For license related questions we recommend you contact Microsoft licensing specialist.
    http://support.microsoft.com/kb/141850/en-us
    Regards.
    Vivian Wang

  • Help needed to link up buttons on HUD Window to Applescript

    Hi
    I have very limited experience of XCode, though I did build a very simple application some time ago that appended text to the Comments field of the currently playing track in iTunes using Applescript. The design of this app was basically just a set of drop down menus.
    I now want to redesign this as a HUD Window, and thought it best to start again. Unfortunately because it was a while ago I have forgotten the steps I took to design the original app and having done some reading and googling I am still stuck.
    What I have done so far is to create a new Cocoa Application, design a HUD Window with all the necessary buttons in IB and add the Applescript from the original project to the Classes Folder in XCode. The AppleScript basically just consists of a series of arguments like this:
    on tempo3_(aNotification)
    tell application "iTunes"
    set current track's comment to ((get current track's comment) & " " & "tempo:3")
    end tell
    end tempo3_
    In the original document the Applescript was listed in the MainMenu.xib window in IB as an App Delegate and I could ctrl click on buttons/menu items and link them to the various applescript instances/arguments in the Applescript, but since I copied the applescript from the old project to the new it isn't showing up in the MainMenu.xib window, so I'm obviously missing out an important step, and wonder if someone could point me in the right direction.
    Thanks
    Nick

    *AppleScript Studio* has been deprecated in Snow Leopard. You can still open and edit older projects, but the new framework is AppeScriptObjC. The regular AppleScript part of your project would be the same, but the way your script addresses the user interface (Interface Builder) is different in the new framework.
    For an older project, you can enable the AppleScript Studio palette in Interface Builder (see the AppleScriptObjC Release Notes), and for a newer project there is a starting tutorial at MacScripter.net (see AppleScriptObjC in Xcode).

  • 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...

Maybe you are looking for