Error won't let me go to another class (has got me pulling out my hair)

Good buddies, so basically I have 2 buttons in the mainfraime class. The first button leads to the candidate page and the second page of voters. The first button works and redirects the user to the PasswordDemo page, but to the hell out of me I can't understand why he refuses to acknowledge the 'profile' class as its supposed to go to when the user clicks the second button. He keeps telling me that "the Profile() method is not defined for the Mainframe type. Help, please.

Class mainframe:
//The applications first or the main frame
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;

public class Mainframe extends JFrame {

        private JButton myFirstButton;
        private JButton mySecondButton;
        private javax.swing.JButton jButton1;
        private javax.swing.JButton jButton2;
        private javax.swing.JLabel jLabel1;
        private javax.swing.JLabel jLabel2;
        private javax.swing.JLabel jLabel3;

        // Constructor for a new frame

        public Mainframe() {

                super("Welcome Page");
                
                

                myFirstButton = new JButton("Contestant");
                myFirstButton.setFont(new Font( "Arial", Font.BOLD, 18));
                myFirstButton.setBackground(Color.red);

                mySecondButton = new JButton("Voter");
                mySecondButton.setFont(new Font( "Arial", Font.BOLD, 18));
                mySecondButton.setBackground(Color.ORANGE);

                Container c = getContentPane();
                FlowLayout fl = new FlowLayout(FlowLayout.LEFT);
                c.setLayout(fl);

                c.add (myFirstButton);
                c.add (mySecondButton);

                ButtonHandler handler = new ButtonHandler();    //creation of a new Object
                myFirstButton.addActionListener(handler);          // Attach/register handler to myFirstButton
                mySecondButton.addActionListener(handler);        //Attach/register handler to mySecondButton

                setSize(400, 300);
                show();
                
       
        
        }


        public static void main(String [] args) {

                // Make frame
                Mainframe f = new Mainframe();

                f.addWindowListener(
                        new WindowAdapter() {
                                public void windowClosing(WindowEvent e) {

                                        // This closes the window and terminates the
                                        // Java Virtual Machine in the event that the
                                        // Frame is closed by clicking on X.
                                        System.out.println("Exit via windowClosing.");
                                        System.exit(0);
                                }
                        }
                );
        } // end of main

        // inner class for button event handling
        private class ButtonHandler implements ActionListener {
                public void actionPerformed(ActionEvent e) {
                        if (e.getSource() == myFirstButton) {
                        
                             PasswordDemo inputForm = new PasswordDemo();
                                //inputForm.setVisible(true);
                                
                                try
                                {
                                PasswordDemo.createAndShowGUI();
                                inputForm.setVisible(false);
                                }
                                
                                catch(Exception d)
                                {
                                     
                                }
                               // new PasswordDemo();
                        }
                        if (e.getSource() == mySecondButton) {
                             
                       //     Profile p = Profile();
                            
                       //     p.setVisible(true);
                              
                       }
                }       
        }
        
        public void actionPerformed (ActionEvent e)
        {
            String cmd = e.getActionCommand();

            if (mySecondButton.equals(cmd)) {
                 boolean success=true; 
                 if(success)
                 {
                 Profile p = Profile();
                
                   p.setVisible(true);
            
                 }
                 
            }

        
      //  private void mySecondButtonActionPerformed(java.awt.event.ActionEvent evt)
    //    {
     //        Profile p = Profile();
            
     //       p.setVisible(true);
     //   }

        
} // end of outer class
}
Profile class:
import java.awt.event.ActionListener;
import java.sql.*;

public class Profile extends javax.swing.JFrame {

    public Profile() {
        initComponents();
    }

    @SuppressWarnings("unchecked")

    private void initComponents() {

        titleLabel = new javax.swing.JLabel();
        nameAccess = new javax.swing.JLabel();
        ageAccess = new javax.swing.JLabel();
        heightAccess = new javax.swing.JLabel();
        weightAccess = new javax.swing.JLabel();
        lastNameAccess = new javax.swing.JLabel();
        descriptionAccess = new javax.swing.JLabel();
        nameLabel = new javax.swing.JLabel();
        lastNameLabel = new javax.swing.JLabel();
        ageLabel = new javax.swing.JLabel();
        heightLabel = new javax.swing.JLabel();
        weightLabel = new javax.swing.JLabel();
        descriptionLabel = new javax.swing.JLabel();

        setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);

        titleLabel.setFont(new java.awt.Font("Gungsuh", 1, 18)); // NOI18N
        titleLabel.setText("\"User\"'s Profile");

        nameAccess.setText("Name: ");
        nameLabel.setText("");
        
        lastNameAccess.setText("Last Name: ");
        lastNameLabel.setText("");

        ageAccess.setText("Age: ");
        ageLabel.setText("");

        heightAccess.setText("Height: ");
        heightLabel.setText("");
        
        weightAccess.setText("Weight: ");
        weightLabel.setText("");
        
        descriptionAccess.setText("Description: ");
        descriptionLabel.setText("");
        
        javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
        getContentPane().setLayout(layout);
        layout.setHorizontalGroup(
            layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
            .addGroup(layout.createSequentialGroup()
                .addContainerGap()
                .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                    .addComponent(titleLabel, javax.swing.GroupLayout.PREFERRED_SIZE, 246, javax.swing.GroupLayout.PREFERRED_SIZE)
                    .addGroup(layout.createSequentialGroup()
                        .addComponent(nameAccess)
                        .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                        .addComponent(nameLabel))
                    .addGroup(layout.createSequentialGroup()
                        .addComponent(lastNameAccess)
                        .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                        .addComponent(lastNameLabel))
                    .addGroup(layout.createSequentialGroup()
                        .addComponent(ageAccess)
                        .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                        .addComponent(ageLabel))
                    .addGroup(layout.createSequentialGroup()
                        .addComponent(heightAccess)
                        .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                        .addComponent(heightLabel))
                    .addGroup(layout.createSequentialGroup()
                        .addComponent(weightAccess)
                        .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                        .addComponent(weightLabel))
                    .addGroup(layout.createSequentialGroup()
                        .addComponent(descriptionAccess)
                        .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                        .addComponent(descriptionLabel)))
                .addContainerGap(151, Short.MAX_VALUE))
        );
        layout.setVerticalGroup(
            layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
            .addGroup(layout.createSequentialGroup()
                .addContainerGap()
                .addComponent(titleLabel)
                .addGap(13, 13, 13)
                .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                    .addComponent(nameAccess)
                    .addComponent(nameLabel))
                .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
                .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                    .addComponent(lastNameAccess)
                    .addComponent(lastNameLabel))
                .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
                .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                    .addComponent(ageAccess)
                    .addComponent(ageLabel))
                .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
                .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                    .addComponent(heightAccess)
                    .addComponent(heightLabel))
                .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
                .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                    .addComponent(weightAccess)
                    .addComponent(weightLabel))
                .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
                .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                    .addComponent(descriptionAccess)
                    .addComponent(descriptionLabel))
                .addContainerGap(139, Short.MAX_VALUE))
        );

        pack();
    }// </editor-fold>

    /**
     * @param args the command line arguments
     */
    
    public static void main(String args[]) {
        java.awt.EventQueue.invokeLater(new Runnable() {

            public void run() {
                new Profile().setVisible(true);
            }
        });
    }
    // Variables declaration - do not modify
    private javax.swing.JLabel ageAccess;
    private javax.swing.JLabel ageLabel;
    private javax.swing.JLabel descriptionAccess;
    private javax.swing.JLabel descriptionLabel;
    private javax.swing.JLabel heightAccess;
    private javax.swing.JLabel heightLabel;
    private javax.swing.JLabel lastNameAccess;
    private javax.swing.JLabel lastNameLabel;
    private javax.swing.JLabel nameAccess;
    private javax.swing.JLabel nameLabel;
    private javax.swing.JLabel titleLabel;
    private javax.swing.JLabel weightAccess;
    private javax.swing.JLabel weightLabel;
    // End of variables declaration
}
Class PasswordDemo:
import javax.swing.*;
import java.sql.*;
import java.awt.*;
import java.awt.event.*;
import java.util.Arrays;
import java.net.*;
import java.io.*;
import java.util.Scanner;

public class PasswordDemo extends JPanel
                          implements ActionListener  {
    private static String OK = "ok";
    private static String HELP = "help";
    private static String Register = "Register";

    private JFrame controllingFrame; //needed for dialogs
    private JTextField username;
    private JPasswordField passreg;
    private JTextField usernamefield;
    private JPasswordField passwordField;

    private javax.swing.JButton jButton1;
    private javax.swing.JButton jButton2;

    private JTextField name;
    private JTextField age;
    private JTextField height;
    private JTextField weight;

 private javax.swing.JPanel jPanel1;

    private void gothere() {

                  JFrame f = new JFrame("This is a test");
                  f.setSize(400, 300);
                  Container content = f.getContentPane();
                  content.setBackground(Color.white);
                  content.setLayout(new FlowLayout());
                 // content.add(new JButton("Button 1"));
                  //content.add(new JButton("Button 2"));
                  //



         name = new JTextField("Please put your name here", 20);
          name.setFont(new Font("Serif", Font.PLAIN, 14));
          content.add(name);

          age = new JTextField("Please put your age here", 20);
          age.setFont(new Font("Serif", Font.PLAIN, 14));
          content.add(age);

          height = new JTextField("Please indicate your height here", 20);
          height.setFont(new Font("Serif", Font.PLAIN, 14));
          content.add(height);

          weight = new JTextField("Please indicate your weight here", 20);
          weight.setFont(new Font("Serif", Font.PLAIN, 14));
          content.add(weight);

          content.add(new JButton("Submit"));


           f.setVisible(true);
    }


     public PasswordDemo(JFrame f) throws Exception {
        //Use the default FlowLayout.
        controllingFrame = f;

        //Create everything.
        usernamefield = new JTextField(10);
        usernamefield.setActionCommand(OK);
        usernamefield.addActionListener(this);

        passwordField = new JPasswordField(10);
        passwordField.setActionCommand(OK);
        passwordField.addActionListener(this);

        passreg = new JPasswordField(10);
        passreg.setActionCommand(Register);
        passreg.addActionListener(this);

        username = new JTextField("This is a sentence", 20);
        username.setActionCommand(Register);
        username.addActionListener(this);

        JLabel reg = new JLabel("If you are a new contestant please register: \n");
        JLabel user = new JLabel("Username: \n");
        user.setLabelFor(username);
        JLabel pass = new JLabel("Password: \n");
        user.setLabelFor(passreg);


        JLabel label = new JLabel("Enter your username and password to log in: ");
        label.setLabelFor(usernamefield);
        label.setLabelFor(passwordField);

        JComponent buttonPane = createButtonPanel();

        //Lay out everything.
        JPanel textPane = new JPanel(new FlowLayout(FlowLayout.TRAILING));
        textPane.add(reg);
        textPane.add(user);
        textPane.add(pass);
        textPane.add(username);
        textPane.add(passreg);

        textPane.add(label);
        textPane.add(usernamefield);
        textPane.add(passwordField);



        add(textPane);
        add(buttonPane);
    }

    public PasswordDemo() {
          // TODO Auto-generated constructor stub
     }


     protected JComponent createButtonPanel() {
        JPanel p = new JPanel(new GridLayout(0,1));
        JButton okButton = new JButton("OK");
        JButton helpButton = new JButton("Help");

        JButton regButton = new JButton("Register");

        okButton.setActionCommand(OK);
        helpButton.setActionCommand(HELP);
        regButton.setActionCommand(Register);
        okButton.addActionListener(this);
        helpButton.addActionListener(this);
        regButton.addActionListener(this);

        p.add(okButton);
        p.add(helpButton);
        p.add(regButton);

        return p;
    }

    public void actionPerformed (ActionEvent e)
    {
        String cmd = e.getActionCommand();

        if (OK.equals(cmd)) { //Process the password.   

            boolean success=true;                        //Sign In

             String Username="";
             String Password="";
             
             Username = this.usernamefield.getText();
             Password = this.passwordField.getText();

             try
             {
                 success=check2(Username,Password);
            }

             catch(Exception d)
             {
                  System.out.println("Got out");

             }     


             if(success)
             {
             JOptionPane.showMessageDialog(controllingFrame, "Sign in Successful");
             
             
             Form F = new Form(Username);
             
             F.setVisible(true);
             
             
             }
             else
             JOptionPane.showMessageDialog(controllingFrame, "Sign in was unsuccessful");     

        }

        else if(HELP.equals(cmd)) { //The user has asked for help.
            JOptionPane.showMessageDialog(controllingFrame,
                "You can get the password by searching this example's\n"
              + "source code for the string \"correctPassword\".\n"
              + "Or look at the section How to Use Password Fields in\n"
              + "the components section of The Java Tutorial.");
        }

        else if(Register.equals(cmd)) {  //*****************************************************
             boolean success=true;

             String Username="";
             String Password="";



             Username = this.username.getText();
             Password = this.passreg.getText();



             try
             {
                  success=check(Username,Password);
             }

             catch(Exception d)
             {
                  System.out.println("Something bad happened");

             }


             if(success)
             JOptionPane.showMessageDialog(controllingFrame, "Registration successful");

             else
             JOptionPane.showMessageDialog(controllingFrame, "Registration was unsuccessful");


        }
    }

    //Must be called from the event dispatch thread.
    protected void resetFocus() {
        passwordField.requestFocusInWindow();
    }

    static void createAndShowGUI() throws Exception {
        //Create and set up the window.
        JFrame frame = new JFrame("Registration Page");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        //Create and set up the content pane.
        final PasswordDemo newContentPane = new PasswordDemo(frame);
        newContentPane.setOpaque(true); //content panes must be opaque
        frame.setContentPane(newContentPane);

        //Make sure the focus goes to the right component
        //whenever the frame is initially given the focus.
        frame.addWindowListener(new WindowAdapter() {
            public void windowActivated(WindowEvent e) {
                newContentPane.resetFocus();
            }
        });

        //Display the window.
        frame.pack();
        frame.setVisible(true);
    }
    public static void main(String args[]) {
        //Schedule a job for the event dispatch thread:
        //creating and showing this application's GUI.
        SwingUtilities.invokeLater(new Runnable() {
            public void run() {
                //Turn off metal's use of bold fonts
          UIManager.put("swing.boldMetal", Boolean.FALSE);
          try{
          createAndShowGUI();
          }

            catch(Exception e)
            {

            }
            }
                 });
             }

    public void sendUserPass(String user,String pass)throws Exception
    {

         //Send request


         Class.forName("com.mysql.jdbc.Driver");

          Connection con = DriverManager.getConnection("jdbc:mySql://localhost:3306/Contest","root","");

          System.out.println("connected :D:D:D:D");

          PreparedStatement state = con.prepareStatement("Insert Into Contestant (USERNAME,PASSWORD) values ('"+user+"','"+pass+"')");

          state.executeUpdate();

          /*while(Result.next())
          {
               System.out.println(Result.getString(1)+"\t"+Result.getString(2));

          }*/

          //server should reply by updating database
    }


    public boolean check(String user,String pass)throws Exception
    {

         //Send request
         Socket Sock = new Socket ("LocalHost",5000);
         
         DataOutputStream toServer = new DataOutputStream(Sock.getOutputStream());
         BufferedReader buff = new BufferedReader(new InputStreamReader(Sock.getInputStream()));
         
         String sentence="";
         
         toServer.writeBytes("1\n");
         
         sentence=buff.readLine();
         
         System.out.println(sentence+"\n");
         
         toServer.writeBytes(user+" "+pass+"\n");
         
         String answer="";
         
         answer = buff.readLine();
         
         if(answer.equals("No"))
              return false;
         
         return true;
  
         /*Class.forName("com.mysql.jdbc.Driver");

          Connection con = DriverManager.getConnection("jdbc:mySql://localhost:3306/Contest","root","");

          System.out.println("connected :D:D:D:D");

          PreparedStatement state = con.prepareStatement("Select Username From Contestant where '"+user+"'= username");

          ResultSet Result = state.executeQuery();

          if(!Result.next())
          return true;*/

          

          //server should reply by updating database
    }
    
    
    public boolean check2(String user,String pass)throws Exception
    {
         Socket Sock = new Socket("localhost",5000);
         
         DataOutputStream toServer = new DataOutputStream (Sock.getOutputStream());
         BufferedReader buff = new BufferedReader(new InputStreamReader(Sock.getInputStream()));
         
         toServer.writeBytes("2\n");
         
         System.out.println("Well I sent the message");
         
         String sentence = buff.readLine();
         
         toServer.writeBytes(user+" "+pass+"\n");
         
         System.out.println(sentence);
         
         sentence=buff.readLine();
         
         System.out.println(sentence+"\n");
         
         
         if(sentence.equals("No"))
              return false;
         
         return true;
    }


}
Profile p = Profile();

Who says "call a 'Profile' method name that is defined in the current class"

Maybe what you mean is:

Profile p = new Profile();

who says "create a new instance of the profile class and invoke its no. - arg constructor."

Tags: Java

Similar Questions

  • I'm not able to open all the documents, computer says that WIN32 ERRORS won't let me open.

    I'M NOT ABLE TO OPEN DOCUMENTS. COMPUTER SAYS WIN32 LET ME NOT OPEN.

    The first Question of troubleshooting: If the problem is new, what has changed between the time things worked and the time they do not have?

    Please quote the exact text of the error message. Do not paraphrase. Where are the documents? Please give the full path; that is C:\Users\your-username\Documents. What version of Vista are you running? The files are only one type of file; for example, Word documents? If Yes, which version of Word you?

    More details, you can answer on your system and the problem, the more focused, as you can get. MS - MVP - Elephant Boy computers - don't panic!

  • Error message says cannot open lightroom as another application has opened.

    I have read the notes of support and he suggests: going to task Manager, performance, click Select the process tab and select Show processes from all users. but it is grayed out.  Someone help please?  Thank you.  John

    Hi John,.

    Please visit: http://windows.microsoft.com/en-in/windows/end-process#1TC=windows-7

    Enter your system password after that try to close the associated process.

    I hope this helps.

    Concerning

    Megha Rawat

  • Windows XP offline files won't let me uncheck a directory for synchronization

    Hey all,.

    Got a user I am trying to configure offline files for on our network, but to market it brands among its network grows as being sync had (make available offline is checked), but it won't let me uncheck (is dimmed).

    When I look in some of the settings for offline files, I see an entry for our reader network basis as being a location that it syncs, but it won't let me see/deselect.  How I get this cleared out of there so I can choose the real one or two subdirectories needed?

    OK, so with the help of an another TI Tech here, we finally managed to severe the link for all offline files.  Took forever to do.  Combination of several reboots with turn the offline files and deleting the stored files offline as well as disconnect and reconnect... readers network has been a huge pain in the...

    I don't know if I would say technically that a 'response', but at least the problem has been solved...

  • My outlook express won't let emails through. I am getting an authorization and then an error will appear.

    Outlook express won't come through

    My outlook express won't let emails through. I am getting an authorization and then an error will appear. Sometimes it will say: reception of messages, but none will come by.  A box appears and says that he put an end to the connection, maybe because of the connection to the server, the long period of inactivity or network connection. Also, I get a message on and which was completely removed several times on the file inbox and delete. I have no idea how to solve this problem or what I did to make it. I've never experienced this before.

    You probably have the widespread corruption of dbx files. Try in a new identity.

    File | Identities | Add the new identity. Create a new one and try it. If all goes well, you can import your messages and address book from the old identity and delete it.

    Note: Do not use the main word in the name of the new identity.

    In addition, follow these guidelines to help avoid this in the future.

    Do not archive mail in the receipt or sent items box. Create your own user-defined folders and move messages you want to put in them. Empty the deleted items folder daily. Although the dbx files have a theoretical capacity of 2 GB, I recommend all a 300 MB max for less risk of corruption.

    Information on the maximum size of the .dbx files that are used by Outlook Express:
    http://support.Microsoft.com/?kbid=903095

    After you're done, followed by compacting your folders manually while working * off * and do it often.

    Click Outlook Express at the top of the the folder tree so no folders are open. Then: File | Work offline (or double-click on work online in the status bar). File | Folder | Compact all folders. Don't touch anything until the compacting is completed.

    Disable analysis in your e-mail anti-virus program. It is a redundant layer of protection that devours the processors and causes a multitude of problems such as time-outs and account setting changes. Your up-to-date A / V program will continue to protect you sufficiently. For more information, see:
    http://www.oehelp.com/OETips.aspx#3

    And backup often.

    Outlook Express Quick Backup (OEQB Freeware)
    http://www.oehelp.com/OEBackup/default.aspx

  • I deleted win7, but I don't completely deleted im trying to install xp but it won't let me tells me there is an error

    I deleted win7, but I don't completely deleted im trying to install xp but it won't let me tells me there is an error

    Why would you want to remove Win7?

    Anyway, if you go through the steps to install XP via boot from the installation CD, this would include removal of the partition containing Win7, then create a new one and install XP on it. If you did that and instead deleted manually the files in Win7, so yes you can get an error.

    Can you tell us how you "deleted win7" and says that the error?

  • I'm trying my computer, but for some reason any that it won't let me back. Error "the request could not be performed because of an i/o device error (0 x 80070450)"

    Original title: I try my computer, but for some reason any that it won't let me back. and I get an error message

    Remember - this is a public forum so never post private information such as numbers of mail or telephone!

    Ideas: have problems with window vista home premium

    • You have problems with programs
    • Error messages
    • Recent changes to your computer
    • What you have already tried to solve the problem

    Hello Mipregunta,

    Thanks for your quick response! I suggest that you try to visit the following article for steps on how to solve your problem:

    http://support.Microsoft.com/kb/952272

    Please let me know if this helps J

    Adam
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think

  • I receive photos that are on the side and Windows Photo Viewer won't let me turn, because it says that the file might be in use or open in another program.

    I receive photos that are on the side and Windows Photo Viewer won't let me turn, as it said that the file might be in use or open in another program or the file or the folder may be read-only how can I change so that it can rotate? This happens mostly with photos sent from the iPhone.

    original title: not able to rotate the photo

    You are welcome and thank you for the comments.

  • Error in installation and now won't let me install it

    I installed the trial version of Illustrator 20 minutes ago. But there was an error with the installation and I got an error message saying I would like to uninstall and try again. If that's what I did. Now I tried to install again but creative cloud won't let me, saying "trial expired" even though I just installed about 20 minutes ago. What should I do? I know that printing is in Portuguese, but I hope you understand what was perhaps wrong.
    Captura de ecrã 2016-09-29, às 15.31.55.png

    Hi Leonorfs,

    As you get a message trial has expired, I ask you to try the steps mentioned in this link:software Adobe to trial has expired at the beginning and share the results.

  • I removed my desktop application Adobe CC and now it won't let me not re-install. I get an error message 43. I tried a few things suggested in the forums, but now I can't open any application!

    Hi, I removed my desktop application Adobe CC and now it won't let me not re-install. I get an error message 43. I tried a few things suggested in the forums, but now I can't open any application!

    Hi Aude,.

    Thank you very much for your answer!

    In the end, a very helpful person at Adobe got my correction of a problem.

    Sincere greetings,

    Nigel

  • Good evening, I have try to install IA (cc) and said that the absence of an error (49) and won't let me install it.  I have an Acer Aspire S7, 4ram, i5, 128hdd.  I wonder if someone puedde axplicar me as I do to complete the installation. kisses.

    Good evening, I have try to install IA (cc) and said that the absence of an error (49) and won't let me install it.

    I have an Acer Aspire S7, 4ram, i5, 128hdd.

    I wonder if someone puedde axplicar me as I do to complete the installation.
    kisses.

    Please see the links below.

    Hope this will help you.

    Kind regards

    Hervé Khare

  • I need help about illustrator. I have the portable version of CS6, install and won't let me open the program. I get the error: 1 I have windows 7

    I need help about illustrator. I have the portable version of CS6, install and won't let me open the program. I get the error: 1 I have windows 7

    Error code 1 is often associated with permission issues. Have you tried to install Illustrator in a new user account with admin rights? If you want to download CS6, here's how to get it through creative cloud: html http://helpx.adobe.com/creative-cloud/kb/download-previous-versions-creative-applications.

    Let us know how it goes.

    Concerning

    Stéphane

  • I have the error Code: 2 for update my cloud and it won't let me uninstall it or anything

    I have the error Code: 2 for update my cloud and it won't let me uninstall it or anything

    Hi amanda,.

    Please check the help below document:

    https://helpx.Adobe.com/creative-cloud/KB/Error_Code_2_failed_update.html

    Kind regards

    Sheena

  • My cc apps disappeared. The sign says download error. It won't let me not re-download the apps.

    My cc apps disappeared. The sign says download error. It won't let me not re-download the apps. In the cc Office Manager.

    Please follow below steps.

    Leave the creative Cloud desktop application.

    N ° 1)

    (1) right-click on the icon in the Finder, then select 'Go - To' folder.
    (2) you will get a text box, type in the following command and then press the 'return '. (Don't miss ~ symbol)

    ~/Library

    (3) then navigate to Application Support > Adobe.

    Please, do a right-click on the Adobe folder and select the option "GetInfo.

    Expand the sharing & permissions section.

    Click on the padlock icon in the lower corner on the right. Enter your administrator user name and password when you are prompted, and then click OK.

    Please click on '+' symbol, it will open the list of user accounts.

    Add all of the user accounts and then give permission to "Read & write" to all user accounts.

    Click the gear icon and select apply to closed. Close the dialog box information .

    Step 2)

    (1) right-click on the icon in the Finder, then select 'Go - To' folder.
    (2) you will get a text box, type in the following command and then press the 'return '.

    / Library

    (3) then navigate to Application Support > Adobe.

    Please, do a right-click on the Adobe folder and select the option "GetInfo.

    Expand the sharing & permissions section.

    Click on the padlock icon in the lower corner on the right. Enter your administrator user name and password when you are prompted, and then click OK.

    Please click on '+' symbol, it will open the list of user accounts.

    Add all of the user accounts and then give permission to "Read & write" to all user accounts.

    Click the gear icon and select apply to closed. Close the dialog box information .

    [Note: Mac has 2 libraries and ~/library/bibliotheque computer]

    Step 3:

    (1) if it please click on the icon of the Apple menu and select System Preferences, then click Network.

    (2) choose the network that is currently connected to the internet can you Ethernet or Airport (Wireless).

    (3) then click on the Advanced button, then click proxies.

    (4) slot 'Select a Proxy Server to configure' uncheck all the boxes proxy, then uncheck "use FTP the passive Mode (PASV).

    (5) then click on the Apply Now button.

    Step 4 : launch creative Cloud desktop application and try to load the list of applications.

    Still face question? Let me know

  • I get an error 1327 Invalid drive report. I tried to remove the adobe reader software and it won't let me, it used to work on my computer opk, but did not for awhile now. I would like that it has disappeared from my computer

    I have problems with adobe reader, an error 1327 Invalid drive. I tried to remove adobe readr = er of my computer, but it won't let me. There is no need that I can't use it... why I can not remove

    Windows 7

Maybe you are looking for

  • ITunes is unable to synchronize because of the features "reset" after update to IOS 10

    I recently upgrades to IOS 10 on my 6 Iphone and iPAd Air2 and now sync via wifi constantly comes up with an exclamation point by announcing that they could not synchronize because the device resets or has expired. Both devices synchronized correctly

  • Microsoft hacked account. NEED HELP

    I know he has my password and that he signed under the name of my xbox. I have his ip address if this will help, if someone can ban access from that IP it please help me

  • WindowsUpdate_8024200D

    Ricordo - E Questo forum pubblico per cui non pubblicare information private, just send o numeri di telefono! Idea: sistema 32 - bit windows vista ultimate free e mi da Cod error ogni volta che provo ad installare update you can help thanks Programs

  • XP Professional

    Windows xp professional operating systems, Windows Security Center says "Virus Protection is OFF", M/S Security Essentials says its aid "WE and Uptodate" Please

  • home network does not, want to uninstall network and reinstall.

    just need help complete steps to completely remove the existing network between 2 computers to office and then create a new network. a few simple steps broken down would be very appreciated.