Can someone tell me where my code is going wrong

Hi I am trying to save the information in a jtextfield and then reopen that data at a later date in the same jtextfield. I have put the code in and it runs but when I try to save the jtextfield it does not create a file so when I try to reopen it there is no file to open as none was made, but i can get the save filechooser and open filechooser to open just not do what I want them to.
Thanks the Lord of the realm.
* NewJFrame.java
* Created on 10 November 2007, 20:03
package javaapplication56;
import java.awt.Component;
import java.io.File;
import javax.swing.JFileChooser;
* @author  morgan
public class NewJFrame extends javax.swing.JFrame {
    /** Creates new form NewJFrame */
    public NewJFrame() {
        initComponents();
    //Create a file chooser
final JFileChooser fc = new JFileChooser();
    /** 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.
    // <editor-fold defaultstate="collapsed" desc=" Generated Code ">                         
    private void initComponents() {
        jTextField1 = new javax.swing.JTextField();
        jScrollPane1 = new javax.swing.JScrollPane();
        jTextArea1 = new javax.swing.JTextArea();
        jButton2 = new javax.swing.JButton();
        jButton4 = new javax.swing.JButton();
        jButton1 = new javax.swing.JButton();
        setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
        jTextArea1.setColumns(20);
        jTextArea1.setRows(5);
        jScrollPane1.setViewportView(jTextArea1);
        jButton2.setText("calculate");
        jButton2.addActionListener(new java.awt.event.ActionListener() {
            public void actionPerformed(java.awt.event.ActionEvent evt) {
                jButton2ActionPerformed(evt);
        jButton4.setText("OPEN");
        jButton4.addActionListener(new java.awt.event.ActionListener() {
            public void actionPerformed(java.awt.event.ActionEvent evt) {
                jButton4ActionPerformed(evt);
        jButton1.setText("SAVE");
        jButton1.addActionListener(new java.awt.event.ActionListener() {
            public void actionPerformed(java.awt.event.ActionEvent evt) {
                jButton1ActionPerformed(evt);
        javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
        getContentPane().setLayout(layout);
        layout.setHorizontalGroup(
            layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
            .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
                .addGap(80, 80, 80)
                .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                    .addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
                    .addComponent(jTextField1, javax.swing.GroupLayout.PREFERRED_SIZE, 87, javax.swing.GroupLayout.PREFERRED_SIZE))
                .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 52, Short.MAX_VALUE)
                .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING, false)
                        .addComponent(jButton4, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
                        .addComponent(jButton2, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
                    .addComponent(jButton1))
                .addGap(27, 27, 27))
        layout.linkSize(javax.swing.SwingConstants.HORIZONTAL, new java.awt.Component[] {jButton1, jButton2, jButton4});
        layout.setVerticalGroup(
            layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
            .addGroup(layout.createSequentialGroup()
                .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                    .addGroup(layout.createSequentialGroup()
                        .addGap(30, 30, 30)
                        .addComponent(jTextField1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
                        .addGap(54, 54, 54)
                        .addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
                    .addGroup(layout.createSequentialGroup()
                        .addGap(49, 49, 49)
                        .addComponent(jButton2)
                        .addGap(46, 46, 46)
                        .addComponent(jButton4)
                        .addGap(20, 20, 20)
                        .addComponent(jButton1)))
                .addContainerGap(100, Short.MAX_VALUE))
        pack();
    }// </editor-fold>                       
    private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {                                        
JFileChooser jfc = new JFileChooser(new File(jTextField1.getText()));
    if (evt.getSource() == jButton1) {
            int returnVal = jfc.showSaveDialog(this);
            if (returnVal == JFileChooser.APPROVE_OPTION) {
                File file = jfc.getSelectedFile();
    private void jButton4ActionPerformed(java.awt.event.ActionEvent evt) {                                        
      if (evt.getSource() == jButton4) {
        int returnVal = fc.showOpenDialog(NewJFrame.this);
        if (returnVal == JFileChooser.APPROVE_OPTION) {
            File file = fc.getSelectedFile();
            //This is where a real application would open the file.
            append("Opening: " + file.getName() + "." + newline);
        } else {
            append("Open command cancelled by user." + newline);
    private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {                                        
float num1, result;
    num1 = Float.parseFloat(jTextField1.getText());
          result = num1;
                 jTextArea1.setText(String.valueOf(result));
    private String newline;
    private Object aComponent;
     * @param args the command line arguments
    public static void main(String args[]) {
        java.awt.EventQueue.invokeLater(new Runnable() {
            public void run() {
                new NewJFrame().setVisible(true);
    private void append(String string) {
        throw new UnsupportedOperationException("Not yet implemented");
    // Variables declaration - do not modify                    
    private javax.swing.JButton jButton1;
    private javax.swing.JButton jButton2;
    private javax.swing.JButton jButton4;
    private javax.swing.JScrollPane jScrollPane1;
    private javax.swing.JTextArea jTextArea1;
    private javax.swing.JTextField jTextField1;
    // End of variables declaration                  
}Edited by: Reg_Dwight on Dec 19, 2007 5:10 PM

Reg_Dwight wrote:
please can you be more specific I am new at filechoosers and I am unsure of you reply although I am grateful for it though.I can see you are using an IDE. I agree, it looks so easy but the code under an IDE-generated GUI can be so complicated.
I'm no expert, but I can tell you that I started with java.io.File, java.io.PrintWriter, and java.util.Scanner for simple I/O. It's only now that I am hard-coding GUI components even though I use an IDE.
My unsolicited advice is to run through those three classes first, preferably as book topics, so that you can get a feel for file I/O.

Similar Messages

  • Can some body tell me where my code is going wrong

    I have been trying to print a jTextArea and have been having trouble. Can some body look at my code and tell me where I am going wrong please, Thank You.
    I have pasted the code below. P.S. I have only attempted to print the jTextArea I have not done anything else. The program was written in the hope that I could learn how to print a jTextArea and no other function in an aim to transfer the successful code to other applications that I enter information into the jTextArea.
    * print.java
    * Created on 05 August 2007, 23:34
    package my.print;
    * @author morgan
    import java.awt.print.*;
    public class print extends javax.swing.JFrame {
    /** Creates new form print */
    public print() {
    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.
    // <editor-fold defaultstate="collapsed" desc=" Generated Code ">
    private void initComponents() {
    jScrollPane1 = new javax.swing.JScrollPane();
    jTextArea1 = new javax.swing.JTextArea();
    jButton1 = new javax.swing.JButton();
    setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
    jTextArea1.setColumns(20);
    jTextArea1.setRows(5);
    jScrollPane1.setViewportView(jTextArea1);
    jButton1.setText("jButton1");
    jButton1.addActionListener(new java.awt.event.ActionListener() {
    public void actionPerformed(java.awt.event.ActionEvent evt) {
    jButton1ActionPerformed(evt);
    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(88, 88, 88)
    .addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
    .addComponent(jButton1)
    .addContainerGap(67, Short.MAX_VALUE))
    layout.setVerticalGroup(
    layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
    .addGroup(layout.createSequentialGroup()
    .addGap(95, 95, 95)
    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
    .addComponent(jButton1)
    .addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
    .addContainerGap(109, Short.MAX_VALUE))
    pack();
    }// </editor-fold>
    private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
    try {
    jTextArea1.print();
    } catch (java.awt.print.PrinterException exc) { // ... }
    * @param args the command line arguments
    public static void main(String args[]){
    java.awt.EventQueue.invokeLater(new Runnable() {
    public void run() {
    new print().setVisible(true);
    // Variables declaration - do not modify
    private javax.swing.JButton jButton1;
    private javax.swing.JScrollPane jScrollPane1;
    private javax.swing.JTextArea jTextArea1;
    // End of variables declaration
    }

    sorry i hope that this preserves the code.
    * print.java
    * Created on 05 August 2007, 23:34
    package my.print;
    * @author  morgan
    import java.awt.print.*;
    public class print extends javax.swing.JFrame {
        /** Creates new form print */
        public print() {
                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.
        // <editor-fold defaultstate="collapsed" desc=" Generated Code ">
        private void initComponents() {
            jScrollPane1 = new javax.swing.JScrollPane();
            jTextArea1 = new javax.swing.JTextArea();
            jButton1 = new javax.swing.JButton();
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
            jTextArea1.setColumns(20);
            jTextArea1.setRows(5);
            jScrollPane1.setViewportView(jTextArea1);
            jButton1.setText("jButton1");
            jButton1.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jButton1ActionPerformed(evt);
            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(88, 88, 88)
                    .addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                    .addComponent(jButton1)
                    .addContainerGap(67, Short.MAX_VALUE))
            layout.setVerticalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addGap(95, 95, 95)
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                        .addComponent(jButton1)
                        .addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
                    .addContainerGap(109, Short.MAX_VALUE))
            pack();
        }// </editor-fold>
        private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
    try {
        jTextArea1.print();
    } catch (java.awt.print.PrinterException exc) { // ... }
         * @param args the command line arguments
        public static void main(String args[]){
            java.awt.EventQueue.invokeLater(new Runnable() {
                 public void run() {
                    new print().setVisible(true);
        // Variables declaration - do not modify
        private javax.swing.JButton jButton1;
        private javax.swing.JScrollPane jScrollPane1;
        private javax.swing.JTextArea jTextArea1;
        // End of variables declaration
        }The preview looked correct. Thank you for the URL. I have been writting my program in netbeans 5.5.1. unfortunately it simplifies the code that you have to put in but at the same time it makes it difficult to follow code examples that are intended to develope the whole of the code from scratch. I have tried looking at the netbeans guidance documentation but find that it doesn't always work even when I follow the direct code for the demonstrations. Anyway thanks for the guidance and for getting back to me so soon.

  • I am creating apps. Can someone tell me where to send the idea to get money or learn how to code so I can code it myself??? Please?

    I am creating apps. Can someone tell me where to send the idea to get money or learn how to code so I can code it myself??? Please?

    This was a kickstarter project project - they released a version of this and are now working on version 2 - its designed to work with most cases
    ( i have no financial interest in the company - i just supported their kickstarter projects)
    http://www.sarvidesigns.com/
    you might contact them and see if version 1 is still available for purchase
    http://www.sarvidesigns.com/#!contact/cyga

  • Can someone tell me where this error is generated. I have no backup set of any kind thru time machine. I get this error message in console every Friday.EBEngine[4611:b07] ditto: /System/V2: Permission denied

    Can someone tell me where this error is generated. I have no backup set of any kind thru time machine. I get this error message in console every Friday.   EBEngine[4611:b07] ditto: /System/V2: Permission denied

    Can someone tell me where this error is generated. I have no backup set of any kind thru time machine. I get this error message in console every Friday.   EBEngine[4611:b07] ditto: /System/V2: Permission denied

  • CC build from 7/3/2014 says under whats new "Latest build of Lightroom is now available to free members" Well I'm a free CC member and I'm not seeing a free LR version. can someone tell me where I can find it Free. All I see is Trial or BUY. Thanks For an

    CC build from 7/3/2014 says under whats new "Latest build of Lightroom is now available to free members" Well I'm a free CC member and I'm not seeing a free LR version. can someone tell me where I can find it Free. All I see is Trial or BUY. Thanks For any help

    Can't find what you are talking about, could you post a link.
    I see the following.
    Quote "Select any of the applications below to download a free trial.  Or sign up for your free trial of Creative Cloud to get free access to all of these applications, mobile apps, web storage, and more."
    Its all referring to trials.

  • Plz can someone tell me where can I define the material type?

    Hi All,
    I want to create a new group of material, there is a material type should be specified. I want to use my own. plz can someone tell me where can i define it?
    thanks and regards,
    samson

    Hi Samson,
    U can create a new material type using the tcode OMS2 and then copy the material type which u need to modify and then define the name of the new material type and make the required changes which u want for that material type and save it.
    Hope it wud have answered ur question
    reward if useful
    Shawn

  • I have an iPhone 4 with iso6, can someone tell me where i find siri? how does this siri work?

    I have an iPhone 4 with iso6, can someone tell me where i find siri? When i hold in my home key, voice pops up for contacts or music but i cant figure out Siri??

    Welcome to the Apple Support Communities
    Siri is only supported on the iPhone 4S and 5. If you have an iPhone 4, you can't use Siri. If you have an iPhone 4S or 5, open Settings > Siri and turn it on. Then, hold Home button until Siri shows up

  • Acrobat X - need to redownlad.  Can someone tell me where I can find this file?

    Acrobat X - need to redownlad.  Can someone tell me were I can find this file?  I just purchase CS 6.  I was having a problem with this program opening so I deleted to reinstall.
    Where can I find the download for Acrobat X PRO?

    http://prodesigntools.com/tag/ddl
    Mylenium

  • HT4623 Can someone tell me where to find Software Update in my settings?

    I do not see where I have Software Update in my settings, can someone help me with this?

    If you have an iPad 1, the max iOS is 5.1.1. For newer iPads, the current iOS is 6.1.3. The Settings>General>Software Update only appears if you have iOS 5.0 or higher currently installed.
    iOS 5: Updating your device to iOS 5 or Later
    http://support.apple.com/kb/HT4972
    How to install iOS 6
    http://www.macworld.com/article/2010061/hands-on-with-ios-6-installation.html
    iOS: How to update your iPhone, iPad, or iPod touch
    http://support.apple.com/kb/HT4623
    If you are currently running an iOS lower than 5.0, connect the iPad to the computer, open iTunes. Then select the iPad under the Devices heading on the left, click on the Summary tab and then click on Check for Update.
    Tip - If connected to your computer, you may need to disable your firewall and anitvirus software temporarily.  Then download and install the iOS update. Be sure and backup your iPad before the iOS update. After you update an iPad (except iPad 1) to iOS 6.x, the next update can be installed via wifi (i.e., not connected to your computer).
    Tip 2 - If you're updating via wifi, place your iPad close to your router to preclude getting a corrupted download.
     Cheers, Tom

  • I have a older model Powerbook G4 and I can not find a charger nowhere for this thing... Can someone tell me where I can find one please... I live in Murfreesboro, TN

    Hello I am new to this and I have a older model Powerbook G4 I can not find a charger nowhere. Can someone please help me figure out where I can get one? I wanna give it to my 11 year old daughter.

    There are generic power adapters for use with old model Apple portables such as this http://eshop.macsales.com/item/NewerTech/APLPBI65W/ available online; a few of them out there may not have much of a guaranty or look like the original model.
    Any new-stock look-alike would be a copy; some from Amazon affiliated stores may be OK. I have older Apple portables (G4) and had been on the look-out for spares, so I have at least two that I know work. These are harder to find in second hand or thrift stores now, and less likely to function. However, there is this support page about the original parts. While adapters such as the macsales model linked above should be OK...
    Yet be sure to not get a Magsafe adapter, since the connector & power won't work. The older iBook G4 power adapter and PowerBook G4 units are fairly similar; but note the details below. A 45w adapter for early white iBook (G3) probably won't do when a later model wants at least 60w.
    •About original PowerPC-Based Mac Notebooks:
    Identifying the right power adapter & power cord
    http://support.apple.com/kb/ht1565
    PS: you could try & contact wegenermedia in SC
    about this kind of part; they may have something.
    Good luck & happy computing!

  • Hi, i have downloaded firefox 7. I was informed that there was an add on called SEO for firefox. However after searching the add ons i can't find it. can someone tell me where it is please ?

    or if it has been updated and called something new, what that is please ? I tried to add on SEOquake thinking that might be it but after installing it, i can't seem to get it to work. Also it looks nothing like the form settings SEO for firefox had, and in the description it said it was an extension so i don't know if it incorporates the original material, and so i don't know if it is the right one. Can someone help me please ?
    ive got windows vista by the way
    I'm looking for something with the seo for firefox features to analyse basic seo like pagerank and number of backlinks (yahoo page links) so if you could recommend me something with those on if seo for firefox is not available then that would be good, but basically i'd rather just have seo for firefox, thanks

    See these: http://malwaretips.com/blogs/remarkit-virus-removal/
    https://www.youtube.com/watch?v=w36xK_4PiO8

  • Hello, can someone tell me where i can find a document how to upgrade a cisco 6880 running vss

    I copied the ios to bootdisk, but when I change the boot system and reload my standby peer de standby peer starts up in rommon mode. I need the correct parameters for the boot command for a 6880. On the cisco site I can only find how to upgrade  a 6500 with vss,but I need the documentation how to upgrade a cisco 6880. Can someone please help me to find this . Thank you.

    There are several methods.  Both methods has downtime.  One method is FSU/eFSU, which I will NOT go into, is an "automated" method of upgrade.  The automation, if it works, include booting each chassis one at a time.  
    The second method works well for me.  Before I begin, it is very, very important that you check the MD5 hash value of the IOS file you've downloaded against the MD5 hash value found in the Cisco website.  
    1.  Copy the IOS to the sup-bootdisk:.  
    2.  Copy the  IOS to the slavesup-bootdisk:
    3.  Change the boot variable string to point to the IOS of your choice.  Additionally, you can specify a second boot variable string to point to your OLD IOS.  This is very handy/important if your chassis attempts to boot the new IOS you've copied and failed.   It is important to remove the old boot variable string before changing.  
    4.  Ensure your config-registry is 0x2102.  
    5.  Save the config first and copy the startup-config to an external media:  CF or TFTP
    6.  Reboot the chassis. 
    Hope this helps.

  • Can someone tell me where in numbers 3.0 the formula bar is, or how I can make it visible?

    Hi,
    I've updated to the new numbers (3.0) and acutally it looks not back. But there is one point that really annoys me. I cannot find the formula bar and also I could not find in the menu where I can make it visible.
    Any hints from the community?
    Thanks

    DeSignature wrote:
    Every cell is a formula-editor now, that - once opened -  can be moved or resized.
    Needs a bit of getting-used-to.
    It only looks that way because the movable formula editor window starts out covering the cell. You can move it out of the way and it won't look like the cell any more.
    Jerry

  • Can someone tell me where  VZW_Software_upgrade_assistant came from?

    VZW_Software_upgrade_assistant.exe is a file on my hard disk.  I didn't intentionally  download it.  Where did it come from?  Why do I need it? 
    After I connect my cell phone to my PC with a USB cable In Windows Explorer a  windows appears  that lists Run VZW_Software_upgrade_assistant .exe as an option.  When I run it says "Windows cannot find C:\user\KCAV\AppdData\Roaming\VERIZON\bootstrap\VZW_Software_upgrade_assistant.exe"
    Where did it come from?  Why do I need it?
    kc

    Christopher...
    You can access the App Store from your Apple menu, the App Store icon in your Dock, or the App Store app in your Applications folder.
    If you cannot locate the app, installing the Mac OS X 10.6.8 Update Combo will reinstall the App Store for you. Restart your Mac after the combo is installed.
    BEFORE you do anything, make sure your Mac meets Lion's requirements > OS X Lion - Technical specifications

  • Can someone tell me where to get information about the search function in Swift

    I need to put a search function into an app I am building and I have no idea where to look for information as to code, where to put the code and the text that it is going to search ( a book's worth) where do I put that file.  Any help would be great.  Thank you in advance.

    Dipak,
    Two things to try:
    1. Check the Oracle8i EJB and CORBA Developer's Guide. It is available online from OTN in the documentation area.
    2. Posting your note to the Oracle8i JVM technical discussion forum.

Maybe you are looking for

  • Rename function in Solaris 10

    When ever our application calls rename C library function the stack trace disappears and the corresponding thread doest not get any time slice and the thread hangs. This happens every 10 to 15 min once. After 3 min CPU is assigned to the thread and t

  • Can´t open pptx file in recieved email

    I have an iphone 5 with sw 6.1.4. When i recieve an email with a Powerpoint .pptx attachement I can´t open it after the attachements has been fully downloaded. Where the file should be is just a text (See attatched file: ---.pptx).

  • How do I create a help page?

    Hi, I want to create some help pages regarding to different applications in EP. Can I have a contextual help? Can I use a help service? I want one help button which shows a help page referring to the application I am displaying. How can I do that? Th

  • Window position in sapscript

    Hi ppl, My requirement is to print the logo on right side for a particular company code. For other company codes, I need to print the logo on left side. Always the opposite side (left or right depending on company code) will have address printed. How

  • /etc folder missing in EP6SP9 CM

    Hi all, I am in EP6 SP9 under Windows 2003. After installation of Content Management, I have noticed that the /etc directory under root folder is missing. Hence all the areas where I have jpgs for folders are coming blank since they point to the mime