Need to change a string.

In my class we were required to write a program that will calculate the weekly pay of an employee. Then it also must allow the user to enter another employee until the user enters the word stop. The program must display the name, hours worked, payrate, and weekly pay. I used a while loop and have set it so that the user enters the employee name before the loop. The problem is if I try to rename the string the compiler says that variable employeeName has already been defined. I know now that you cannot change the name of a string that it is emutable, but what I don't understand is that the proffesor says I have to do it using boolean true and false. The biggest problem is that the school is online and is not giving us all the resources we need so I donot understand boolean values in depth like this to understand how to write the program correctly. If the user enters stop first it will skip the loop unles it will continue to use the same employee name over and over. Here is the code to help better understand:
//Payroll Calculating Program
import java.util.Scanner;
public class Payroll2
public static void main( String args [] )
Scanner input = new Scanner( System.in );
double hours;
double payrate;
System.out.println( "Please enter employee name, enter stop to exit program:" );
String employeeName = input.nextLine();
while ( !employeeName.equals( "stop" ))
System.out.println( "Please enter hours worked this week:" );
hours = input.nextDouble();
System.out.println( "Please enter pay rate of employee:" );
payrate = input.nextDouble();
if ( hours < 0 ) {
System.out.println( "Please enter a positive amount for hours worked:" );
hours = input.nextDouble(); }
else if ( payrate < 0 ) {
System.out.println( "Please enter a positve amount for the pay rate:" );
payrate = input.nextDouble(); }
else if ( ( hours <= 40 ) & ( payrate >= 0 ) & ( hours >= 0 ) ) {
System.out.printf( "%s worked for %.2f hours,\nHourly wage was: $%.2f per hour,\nIncome for this week before taxes was: $%.2f.\n",
employeeName, hours, payrate, (hours * payrate) );}
else if ( ( hours > 40 ) & ( payrate >= 0 ) ) {
System.out.printf( "%s worked for %.2f hours,\nHourly wage was: $%.2f per hour,\nIncome for this week before taxes was: $%.2f.\n",
employeeName[ counter ], hours, payrate, (( hours - 40 ) * ( payrate + ( payrate / 2 ) ) + ( payrate * 40 )) ); }
System.out.println( "Payroll program is exiting, Goodbye." );
}

//Nicole Hammers
//Payroll Calculating Program
import java.util.Scanner;
public class Payroll2
public static void main( String args [] )
Scanner input = new Scanner( System.in );
double hours;
double payrate;
System.out.println( "Please enter employee name, enter stop to exit program:" );
String employeeName = input.nextLine();
while ( !employeeName.equals( "stop" ))
System.out.println( "Please enter hours worked this week:" );
hours = input.nextDouble();
System.out.println( "Please enter pay rate of employee:" );
payrate = input.nextDouble();
if ( hours < 0 ) {
System.out.println( "Please enter a positive amount for hours worked:" );
hours = input.nextDouble(); }
else if ( payrate < 0 ) {
System.out.println( "Please enter a positve amount for the pay rate:" );
payrate = input.nextDouble(); }
else if ( ( hours <= 40 ) & ( payrate >= 0 ) & ( hours >= 0 ) ) {
System.out.printf( "%s worked for %.2f hours,\nHourly wage was: $%.2f per hour,\nIncome for this week before taxes was: $%.2f.\n",
employeeName, hours, payrate, (hours * payrate) );}
else if ( ( hours > 40 ) & ( payrate >= 0 ) ) {
System.out.printf( "%s worked for %.2f hours,\nHourly wage was: $%.2f per hour,\nIncome for this week before taxes was: $%.2f.\n",
employeeName, hours, payrate, (( hours - 40 ) * ( payrate + ( payrate / 2 ) ) + ( payrate * 40 )) ); }
System.out.println( "Payroll program is exiting, Goodbye." );
This program will compile but the loop does not exit because the string cannot be changed.
//Nicole Hammers
//Payroll Calculating Program
import java.util.Scanner;
public class Payroll2
public static void main( String args [] )
Scanner input = new Scanner( System.in );
double hours;
double payrate;
System.out.println( "Please enter employee name, enter stop to exit program:" );
String employeeName = input.nextLine();
while ( !employeeName.equals( "stop" ))
System.out.println( "Please enter hours worked this week:" );
hours = input.nextDouble();
System.out.println( "Please enter pay rate of employee:" );
payrate = input.nextDouble();
if ( hours < 0 ) {
System.out.println( "Please enter a positive amount for hours worked:" );
hours = input.nextDouble(); }
else if ( payrate < 0 ) {
System.out.println( "Please enter a positve amount for the pay rate:" );
payrate = input.nextDouble(); }
else if ( ( hours <= 40 ) & ( payrate >= 0 ) & ( hours >= 0 ) ) {
System.out.printf( "%s worked for %.2f hours,\nHourly wage was: $%.2f per hour,\nIncome for this week before taxes was: $%.2f.\n",
employeeName, hours, payrate, (hours * payrate) );}
else if ( ( hours > 40 ) & ( payrate >= 0 ) ) {
System.out.printf( "%s worked for %.2f hours,\nHourly wage was: $%.2f per hour,\nIncome for this week before taxes was: $%.2f.\n",
employeeName, hours, payrate, (( hours - 40 ) * ( payrate + ( payrate / 2 ) ) + ( payrate * 40 )) ); }
System.out.println( "Please enter employee name, enter stop to exit program:" );
String employeeName = input.nextLine();
System.out.println( "Payroll program is exiting, Goodbye." );
This progeam will not compile and the error says:
Payroll2.java:45: employeeName is already defined in main(java.lang.String[])

Similar Messages

  • Need to change snmp string for a solaris server

    Hi Everyone ,
    i am new to solaris and i need to change a snmp string for solaris server and we need to add this server into the monitoring system.
    Please tell me the PKG which need to installed in the client ( solaris box ) .
    As of now , i can find these PKGs installed in the machine .
    # pkginfo -i |grep -i snmp
    system SUNWjsnmp Java SNMP API
    system SUNWmibii Solstice Enterprise Agents 1.0.3 SN MP daemon
    Do i need to install any package for setting the snmp string and please tell me the configuration file where i need to
    change the snmp string file ?
    Regards
    Chenthil

    Hi Bhanu,
    I am fine, thanks. Hope you are fine too.
    will this step not required
    $sqlplus apps/appspass
    SQL>exec fnd_conc_clone.setup_clean
    before running autoconfig?If you have the latest AutoConfig patch applied, then I believe it is not required. However, it should be OK to run this command to purge FND_NODES table before running AutoConfig.
    Regards,
    Hussein

  • Help needed regarding change of system CLASSPATH

    Hi All,
    I need to change the system CLASSPATH using my java programe. I tried the following code but its not working though it returns the correct CLASSPATH, but unable to do the modification. All I need is to append a new jar file in the existing CLASSPATH..
    code]
    try{
              sysMap = System.getenv();
              }catch(Exception se1){
                        System.out.println("Exception in finding Environment properties");
              Set Keys = sysMap.keySet();
              Iterator It = Keys.iterator();
              while(It.hasNext()){
                   String strNow =(String) It.next();
                   if(strNow.contains("CLASSPATH")){
                        System.setProperty("CLASSPATH", ".;C:\\Calypso\\Software\\\\Release\\jars\\calypso.jar;C:\\Calypso\\Software\\Release\\build;C:\\Calypso\\Software\\Release\\build\\calypsofx;C:\\Calypso\\Software\\Release\\resources;C:\\Calypso\\Software\\Release;C:\\Calypso\\Software\\Release\\jars\\jconn2.jar;C:\\Calypso\\Software\\Release\\jars\\jaxb-1.0.4\\;C:\\Calypso\\Software\\Release\\jars\\javacup.jar;C:\\Calypso\\Software\\Release\\jars\\antlr.jar;C:\\Calypso\\Software\\Release\\jars\\ojdbc14.zip;C:\\Calypso\\Software\\Release\\jars\\web\\servlet.jar;C:\\Calypso\\Software\\Release\\jars\\web\\webserver.jar;C:\\Calypso\\Software\\Release\\jars\\ftp.jar;C:\\Calypso\\Software\\Release\\jars\\itext-1.02b.jar;C:\\Calypso\\Software\\Release\\jars\\Jama-1.0.1.jar;C:\\jdk1.5.0_10\\bin;C:\\Calypso\\Software\\Release\\webfx\\calypsoWebFXServer.jar;C:\\XXX.jar");
                        System.out.println("Classpath changed");
    Any help will be appreciated.

    Hi Kaj ,
    Well I am in a situation where we need to extend a
    existing system and we are providing the client with
    a new jar file for every modification. Now all I need
    is that our programe automatically add (infect
    append) the jar file in the existing system
    CLASSPATH, so that the client need not to add(append)
    the new jar files all the time.
    Can you provide any help??As others have said, use -cp as argument when you start your application. It's quite common that people write a script that adds all jars in a certain directory to the argument to -cp.
    Kaj

  • How to change connection string for a form created with b1de

    Hi all
    i've created a form using the Code Generator tool ob B1DE
    My question is how can i set the connection string to a different server and database. doing so after the creation wizard has finished?

    Hi,
    Why do you need to change the connection string? What are you calling "connection string for a form"???
    The only connection string I now about is the one used to connect to the UI API... and this one is fixed for all apps in debug mode and given as parameter when your addon is registered in B1.
    The connection string is filled in the code of your generated addon.
    Please go to the main class of your addon, in the main method you have the following code where the connection string is filled either with the command line parameters (release mode) or with the fixed value given by SAP. This code doesn't need to be changed...
            public static void Main()
                int retCode = 0;
                string connStr = "";
                bool diRequired = true;
                // CHANGE ADDON IDENTIFIER BEFORE RELEASING TO CUSTOMER (Solution Identifier)
                string addOnIdentifierStr = "";
                if ((System.Environment.GetCommandLineArgs().Length == 1)) {
                    connStr = B1Connections.connStr;
                else {
                    connStr = System.Environment.GetCommandLineArgs().GetValue(1).ToString();
                try {
                    // INIT CONNECTIONS
                    retCode = B1Connections.Init(connStr, addOnIdentifierStr, diRequired);
    Regards
    Trinidad.

  • TitleBorder - Default Font Title = Blue - Need to change to BLACK.

    Hello,
    I have a menu with several Title Borders, The titles however area appearing in Blue, which i have not set,
    I need to change this back to black but i am unable to do so.
    Has anyone else had this problem or know how to solve it?
    I am using Borland Jbuilder, not sure if that is relevant.
    package rmitest;
    import java.awt.Dimension;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import com.borland.jbcl.layout.XYLayout;
    import com.borland.jbcl.layout.*;
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.border.Border;
    import DateTimeBean.DateTimeBean;
    import javax.swing.border.TitledBorder;
    import javax.swing.border.EtchedBorder;
    import java.rmi.*;
    import java.rmi.Naming;
    import java.net.MalformedURLException;
    import java.rmi.NotBoundException;
    import java.awt.event.*;
    import javax.swing.*;
    import java.util.Calendar;
    import java.util.Date;
    import java.sql.SQLException;
    import java.util.Vector;
    public class Menu extends JFrame implements ActionListener {
        JPanel contentPane;
        JTextArea jTextAreaTime = new JTextArea(3,10);
        Border border1 = BorderFactory.createEtchedBorder(EtchedBorder.RAISED,
          Color.white, new Color(156, 156, 158));
        private final int DELAY = 1000;
        static DateTimeBean dateTimeBean;
        JPanel jPanel1 = new JPanel();
       // TitledBorder titledBorder1 = new TitledBorder("");
        Border border2 = new TitledBorder(border1, "");
        Border border3 = new TitledBorder(border2, "Buttons");
        JPanel jPanel2 = new JPanel();
        TitledBorder titledBorder2 = new TitledBorder("");
        Border border4 = BorderFactory.createEtchedBorder(Color.white,
                new Color(156, 156, 158));
        Border border5 = new TitledBorder(border4, "Info");
        JPanel jPanel3 = new JPanel();
        Border border6 = BorderFactory.createEtchedBorder(Color.white,
                new Color(156, 156, 158));
        Border border7 = new TitledBorder(border6, "More Buttons");
        Border border8 = BorderFactory.createMatteBorder(6, 6, 6, 6, Color.black);
        Border border9 = BorderFactory.createLineBorder(Color.black, 2);
        JTextArea jTextArea1 = new JTextArea();
        Border border10 = BorderFactory.createLineBorder(Color.black, 2);
        JPanel jPanel4 = new JPanel();
        Border border11 = BorderFactory.createLineBorder(SystemColor.controlText, 2);
        Border border12 = new TitledBorder(border11, "Shit");
        Border border13 = BorderFactory.createLineBorder(SystemColor.controlText, 2);
        Border border14 = new TitledBorder(border13, "Other Shit");
        Border border15 = BorderFactory.createEtchedBorder(EtchedBorder.RAISED,
                Color.white, new Color(156, 156, 158));
        Border border16 = new TitledBorder(border15, "Other Shit");
        Border border17 = BorderFactory.createEtchedBorder(EtchedBorder.RAISED,
                Color.white, new Color(156, 156, 158));
        Border border18 = new TitledBorder(border17, "Shit");
        Border border19 = BorderFactory.createLineBorder(Color.BLACK, 1);
        TitledBorder titledBorder3 = new TitledBorder("");
        Border border20 = BorderFactory.createEtchedBorder(Color.white,
                new Color(156, 156, 158));
        Border border21 = new TitledBorder(border20, "TEXT");
        XYLayout xYLayout1 = new XYLayout();
        JScrollPane jScrollPane1 = new JScrollPane();
        Border border22 = BorderFactory.createEtchedBorder(EtchedBorder.RAISED,
                Color.white, new Color(156, 156, 158));
        Border border23 = new TitledBorder(border22, "Action Log");
        JScrollPane jScrollPane2 = new JScrollPane();
        Border border24 = BorderFactory.createEtchedBorder(EtchedBorder.RAISED,
                Color.white, new Color(156, 156, 158));
        Border border25 = new TitledBorder(border24, "Data");
        JButton jButton1 = new JButton();
        Icon exitButton = new ImageIcon("exit.JPG");
        Calendar clientCal = Calendar.getInstance();
        Iserver s;
        JButton jButton2 = new JButton();
        JButton jButton3 = new JButton();
        JButton jButton4 = new JButton();
        JButton jButton5 = new JButton();
        javax.swing.JTextArea jTextArea3 = new JTextArea();
        javax.swing.JTextArea jTextArea2 = new JTextArea();
        public Vector<Object> contents;
        javax.swing.JRadioButton jRadioButton1 = new JRadioButton();
        javax.swing.JRadioButton jRadioButton2 = new JRadioButton();
        XYLayout xYLayout2 = new XYLayout();
        Border border26 = javax.swing.BorderFactory.createEtchedBorder(Color.white,
          new Color(156, 156, 158));
        Border border27 = new TitledBorder(border26, "View Auctions");
        XYLayout xYLayout3 = new XYLayout();
      XYLayout xYLayout4 = new XYLayout();
      javax.swing.JLabel jLabel1 = new JLabel();
      Border border28 = javax.swing.BorderFactory.createEtchedBorder(Color.white,
          new Color(156, 156, 158));
      Border border29 = new TitledBorder(border28, "Create Auction");
      javax.swing.JRadioButton jRadioButton3 = new JRadioButton();
      javax.swing.JRadioButton jRadioButton4 = new JRadioButton();
      javax.swing.JLabel jLabel2 = new JLabel();
      javax.swing.JTextField jTextField1 = new JTextField();
      javax.swing.JTextArea jTextArea4 = new JTextArea();
      javax.swing.JLabel jLabel3 = new JLabel();
      javax.swing.JTextField jTextField2 = new JTextField();
      javax.swing.JTextField jTextField3 = new JTextField();
      javax.swing.JTextField jTextField4 = new JTextField();
      javax.swing.JLabel jLabel4 = new JLabel();
      javax.swing.JLabel jLabel5 = new JLabel();
      javax.swing.JLabel jLabel6 = new JLabel();
      javax.swing.JButton jButton6 = new JButton();
      Border border30 = javax.swing.BorderFactory.createLineBorder(Color.white, 2);
      Border border31 = javax.swing.BorderFactory.createLineBorder(Color.lightGray,
          2);
      Border border32 = javax.swing.BorderFactory.createLineBorder(SystemColor.
          inactiveCaptionText, 2);
      Border border33 = javax.swing.BorderFactory.createLineBorder(new Color(156, 156, 158), 2);
      Border border34 = javax.swing.BorderFactory.createLineBorder(new Color(156, 156, 158), 2);
      Border border35 = javax.swing.BorderFactory.createLineBorder(new Color(156, 156, 158), 2);
      Border border36 = javax.swing.BorderFactory.createEtchedBorder(EtchedBorder.
          RAISED, Color.white, new Color(156, 156, 158));
      Border border37 = new TitledBorder(border36, "Action Log");
      Border border38 = javax.swing.BorderFactory.createEtchedBorder(Color.white,
          new Color(156, 156, 158));
      Border border39 = new TitledBorder(border38, "Info");
      Border border40 = javax.swing.BorderFactory.createEtchedBorder(Color.white,
          new Color(156, 156, 158));
      Border border41 = javax.swing.BorderFactory.createEtchedBorder(Color.white,
          new Color(156, 156, 158));
      Border border43 = javax.swing.BorderFactory.createEtchedBorder(Color.white,
          new Color(156, 156, 158));
      Border border44 = new TitledBorder(border43, "Bid On An Auction");
      Border border42 = javax.swing.BorderFactory.createEtchedBorder(EtchedBorder.
          RAISED, Color.white, new Color(156, 156, 158));
      Border border45 = new TitledBorder(border42, "tyeryry");
      public Menu()
            super() ;
            enableEvents(AWTEvent.WINDOW_EVENT_MASK);
            dateTimeBean = new DateTimeBean();
            Timer timer = new Timer(DELAY, this);
            timer.start();
            try {
                setDefaultCloseOperation(EXIT_ON_CLOSE);
                setContentPane( new MyPanel() ) ;
                setSize( 1000 , 700 );
                setVisible( true );
                jbInit();
              } catch (Exception exception)
                exception.printStackTrace();
        private void jbInit() throws Exception {
            this.setForeground(Color.lightGray);
            this.setResizable(false);
            setTitle("Assignment - Bidding System");
            jTextAreaTime.setFont(new java.awt.Font("Dialog", Font.BOLD, 12));
            jTextAreaTime.setBorder(border1);
            jTextAreaTime.setOpaque(true);
            jTextAreaTime.setEditable(false);
            contentPane = (JPanel) getContentPane();
            contentPane.setSize(new Dimension(1000, 700));
            contentPane.setLayout(xYLayout1);
            contentPane.setBackground(Color.white);
            contentPane.setEnabled(true);
            contentPane.setDoubleBuffered(false);
            contentPane.setMinimumSize(new Dimension(1000, 700));
            contentPane.setOpaque(true);
            contentPane.setPreferredSize(new Dimension(1000, 700));
            jPanel1.setBorder(border29);
        jPanel1.setLayout(xYLayout4);
        jPanel2.setFont(new java.awt.Font("Arial Black", Font.PLAIN, 11));
        jPanel2.setBorder(border44);
            jPanel2.setLayout(xYLayout3);
        jPanel3.setFont(new java.awt.Font("Dialog", Font.BOLD, 12));
        jPanel3.setBorder(border27);
            jPanel3.setLayout(xYLayout2);
            jTextArea1.setBorder(BorderFactory.createLineBorder(Color.black));
            jTextArea1.setText("");
            jTextArea1.setEditable(false);
        jScrollPane1.setBorder(border37);
        jScrollPane1.setOpaque(false);
            jScrollPane2.setBorder(border25);
            jScrollPane2.setOpaque(false);
            jButton1.setForeground(Color.black);
            jButton1.setRolloverIcon(null);
            jButton1.setIcon(exitButton);
            jButton1.setText("Exit");
            jButton1.addActionListener(new Menu_jButton1_actionAdapter(this));
            jButton2.setText("jButton2");
            jButton3.setText("jButton3");
            jButton4.setText("jButton4");
            jTextArea3.setEditable(false);
            jTextArea3.setText("");
            jTextArea2.setToolTipText("");
        jTextArea2.setEditable(false);
        jTextArea2.setText("");
            jButton5.setText("Go");
            jButton5.setVisible(true);
            ButtonGroup RadioGroupView = new ButtonGroup();
            ButtonGroup RadioGroupCreate = new ButtonGroup();
        jLabel1.setText("Auction Type:");
        jRadioButton3.setText("English");
        jRadioButton4.setText("Vickrey");
        jRadioButton3.setOpaque(false);
        jRadioButton4.setOpaque(false);
        jTextArea4.setBorder(border35);
        jButton6.addActionListener(new Menu_jButton6_actionAdapter(this));
        RadioGroupCreate.add(jRadioButton3);
        RadioGroupCreate.add(jRadioButton4);
        jLabel2.setText("Item Name:");
        jTextField1.addActionListener(new Menu_jTextField1_actionAdapter(this));
        jLabel3.setText("Description:");
        jLabel4.setText("Reserve Price");
        jLabel5.setText("Buy Out");
        jLabel6.setText("Start Price");
        jButton6.setText("Create");
        RadioGroupView.add(jRadioButton1);
            RadioGroupView.add(jRadioButton2);
            jButton5.setToolTipText("");
            jRadioButton1.setOpaque(false);
            jRadioButton1.setToolTipText("");
            jRadioButton1.setText("View All Auctions");
            jRadioButton1.addActionListener(new Menu_jRadioButton1_actionAdapter(this));
            jRadioButton2.setOpaque(false);
            jRadioButton2.setText("View Auction");
        jPanel1.setOpaque(false);
            jPanel2.setOpaque(false);
            jPanel3.setOpaque(false);
        jPanel1.add(jLabel1, new XYConstraints(9, 6, -1, -1));
        jPanel1.add(jLabel2, new XYConstraints(9, 26, -1, -1));
        contentPane.add(jTextAreaTime, new XYConstraints(23, 599, 82, 56));
            contentPane.add(jButton1, new XYConstraints(820, 606, 96, 39));
            contentPane.add(jButton2, new XYConstraints(168, 606, 89, 40));
            contentPane.add(jButton3, new XYConstraints(275, 606, 96, 42));
            contentPane.add(jButton4, new XYConstraints(396, 606, 94, 45));
            jPanel3.add(jRadioButton2, new XYConstraints(9, 24, -1, -1));
            jPanel3.add(jButton5, new XYConstraints(177, 110, -1, -1));
            jPanel3.add(jRadioButton1, new XYConstraints(9, 0, -1, -1));
        jPanel1.add(jTextField1, new XYConstraints(85, 26, 118, -1));
        jPanel1.add(jRadioButton3, new XYConstraints(81, 0, -1, -1));
        jPanel1.add(jRadioButton4, new XYConstraints(144, 0, -1, -1));
        jPanel1.add(jLabel3, new XYConstraints(9, 50, -1, -1));
        jPanel1.add(jTextArea4, new XYConstraints(86, 53, 116, 50));
        jPanel1.add(jButton6, new XYConstraints(308, 107, 102, 22));
        jPanel1.add(jTextField2, new XYConstraints(361, 30, 50, 15));
        jPanel1.add(jTextField3, new XYConstraints(361, 55, 50, 15));
        jPanel1.add(jTextField4, new XYConstraints(361, 79, 50, 15));
        jPanel1.add(jLabel6, new XYConstraints(284, 80, -1, -1));
        jPanel1.add(jLabel4, new XYConstraints(266, 29, -1, -1));
        jPanel1.add(jLabel5, new XYConstraints(296, 56, -1, -1));
        contentPane.add(jPanel1, new XYConstraints(15, 85, 451, 161));
        contentPane.add(jPanel3, new XYConstraints(735, 86, 241, 161));
        contentPane.add(jScrollPane1, new XYConstraints(24, 465, 950, 122));
        jScrollPane1.getViewport().add(jTextArea2);
        contentPane.add(jScrollPane2, new XYConstraints(22, 256, 951, 196));
        jScrollPane2.getViewport().add(jTextArea3);
        contentPane.add(jPanel2, new XYConstraints(478, 88, 245, 161));
        jButton2.setText("Client");
                    jButton2.addActionListener(new java.awt.event.ActionListener() {
             public void actionPerformed(ActionEvent e) {
                jButton2_actionPerformed(e);
          jButton3.setText("From");
                    jButton3.addActionListener(new java.awt.event.ActionListener() {
             public void actionPerformed(ActionEvent e) {
                jButton3_actionPerformed(e);
          jButton4.setText("Server");
                    jButton4.addActionListener(new java.awt.event.ActionListener() {
             public void actionPerformed(ActionEvent e) {
                jButton4_actionPerformed(e);
            jButton5.addActionListener(new java.awt.event.ActionListener() {
             public void actionPerformed(ActionEvent e) {
                try {
                  jButton5_actionPerformed(e);
                catch (ClassNotFoundException ex) {
                catch (RemoteException ex) {
                catch (SQLException ex) {
          try {
             s = (Iserver)Naming.lookup("rmi://192.168.0.3:1099/AuctionService");
          } catch(Exception ex) {
        protected void processWindowEvent(WindowEvent e) {
          super.processWindowEvent(e);
          if (e.getID() == WindowEvent.WINDOW_CLOSING) {
             System.exit(0);
        public void actionPerformed(ActionEvent e) {
           jTextAreaTime.setText("  "+dateTimeBean.getDayName()+"\n"+"  "+dateTimeBean.getDate()+"\n"+ "  "+dateTimeBean.getTime());
           repaint();
        public void jTextField1_actionPerformed(ActionEvent e) {
        public void jButton1_actionPerformed(ActionEvent e) {
            System.exit(0);
        public void jButton2_actionPerformed(ActionEvent e) {
            clientCal.setTime(new Date());
          int hour = clientCal.get(Calendar.HOUR_OF_DAY);
          int minute = clientCal.get(Calendar.MINUTE);
          int secs = clientCal.get(Calendar.SECOND);
          String time = hour + ":" + minute + "." + secs;
                    try {
                            s.setClientTime(time);
                    } catch(java.rmi.RemoteException re) {
        public void jButton3_actionPerformed(ActionEvent e) {
            try {jTextArea2.append(s.getTime() + "\n");
            } catch(java.rmi.RemoteException re) {
        public void jButton4_actionPerformed(ActionEvent e) {
            try {
                            s.setServerTime();
                    } catch(java.rmi.RemoteException re) {
      //Set Image as Background
    public class MyPanel extends JPanel {
                  private Image img ;
                  public MyPanel() {
                          //setLayout( new BorderLayout() ) ;
                          setSize(1000, 700);
                          img = new ImageIcon("test.jpg" ).getImage() ;
                  public void drawBackground( Graphics g ) {
                          int w = getWidth() ;
                          int h = getHeight() ;
                          int iw = img.getWidth( this ) ;
                          int ih = img.getHeight( this ) ;
                          for( int i = 0 ; i < w ; i+=iw ) {
                                  for( int j = 0 ; j < h ; j+= ih ) {
                                          g.drawImage( img , i , j , this ) ;
                  protected void paintComponent(Graphics g) {
                          super.paintComponent(g);
                          drawBackground( g ) ;
    }

    esistsehrkalt wrote:
    Hello,
    I have a menu with several Title Borders, The titles however area appearing in Blue, which i have not set,
    I need to change this back to black but i am unable to do so.
    Has anyone else had this problem or know how to solve it?
    I am using Borland Jbuilder, not sure if that is relevant.
    package rmitest;
    import java.awt.Dimension;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import com.borland.jbcl.layout.XYLayout;
    import com.borland.jbcl.layout.*;
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.border.Border;
    import DateTimeBean.DateTimeBean;
    import javax.swing.border.TitledBorder;
    import javax.swing.border.EtchedBorder;
    import java.rmi.*;
    import java.rmi.Naming;
    import java.net.MalformedURLException;
    import java.rmi.NotBoundException;
    import java.awt.event.*;
    import javax.swing.*;
    import java.util.Calendar;
    import java.util.Date;
    import java.sql.SQLException;
    import java.util.Vector;
    public class Menu extends JFrame implements ActionListener {
    JPanel contentPane;
    JTextArea jTextAreaTime = new JTextArea(3,10);
    Border border1 = BorderFactory.createEtchedBorder(EtchedBorder.RAISED,
    Color.white, new Color(156, 156, 158));
    private final int DELAY = 1000;
    static DateTimeBean dateTimeBean;
    JPanel jPanel1 = new JPanel();
    // TitledBorder titledBorder1 = new TitledBorder("");
    Border border2 = new TitledBorder(border1, "");
    Border border3 = new TitledBorder(border2, "Buttons");
    JPanel jPanel2 = new JPanel();
    TitledBorder titledBorder2 = new TitledBorder("");
    Border border4 = BorderFactory.createEtchedBorder(Color.white,
    new Color(156, 156, 158));
    Border border5 = new TitledBorder(border4, "Info");
    JPanel jPanel3 = new JPanel();
    Border border6 = BorderFactory.createEtchedBorder(Color.white,
    new Color(156, 156, 158));
    Border border7 = new TitledBorder(border6, "More Buttons");
    Border border8 = BorderFactory.createMatteBorder(6, 6, 6, 6, Color.black);
    Border border9 = BorderFactory.createLineBorder(Color.black, 2);
    JTextArea jTextArea1 = new JTextArea();
    Border border10 = BorderFactory.createLineBorder(Color.black, 2);
    JPanel jPanel4 = new JPanel();
    Border border11 = BorderFactory.createLineBorder(SystemColor.controlText, 2);
    Border border12 = new TitledBorder(border11, "Shit");
    Border border13 = BorderFactory.createLineBorder(SystemColor.controlText, 2);
    Border border14 = new TitledBorder(border13, "Other Shit");
    Border border15 = BorderFactory.createEtchedBorder(EtchedBorder.RAISED,
    Color.white, new Color(156, 156, 158));
    Border border16 = new TitledBorder(border15, "Other Shit");
    Border border17 = BorderFactory.createEtchedBorder(EtchedBorder.RAISED,
    Color.white, new Color(156, 156, 158));
    Border border18 = new TitledBorder(border17, "Shit");
    Border border19 = BorderFactory.createLineBorder(Color.BLACK, 1);
    TitledBorder titledBorder3 = new TitledBorder("");
    Border border20 = BorderFactory.createEtchedBorder(Color.white,
    new Color(156, 156, 158));
    Border border21 = new TitledBorder(border20, "TEXT");
    XYLayout xYLayout1 = new XYLayout();
    JScrollPane jScrollPane1 = new JScrollPane();
    Border border22 = BorderFactory.createEtchedBorder(EtchedBorder.RAISED,
    Color.white, new Color(156, 156, 158));
    Border border23 = new TitledBorder(border22, "Action Log");
    JScrollPane jScrollPane2 = new JScrollPane();
    Border border24 = BorderFactory.createEtchedBorder(EtchedBorder.RAISED,
    Color.white, new Color(156, 156, 158));
    Border border25 = new TitledBorder(border24, "Data");
    JButton jButton1 = new JButton();
    Icon exitButton = new ImageIcon("exit.JPG");
    Calendar clientCal = Calendar.getInstance();
    Iserver s;
    JButton jButton2 = new JButton();
    JButton jButton3 = new JButton();
    JButton jButton4 = new JButton();
    JButton jButton5 = new JButton();
    javax.swing.JTextArea jTextArea3 = new JTextArea();
    javax.swing.JTextArea jTextArea2 = new JTextArea();
    public Vector<Object> contents;
    javax.swing.JRadioButton jRadioButton1 = new JRadioButton();
    javax.swing.JRadioButton jRadioButton2 = new JRadioButton();
    XYLayout xYLayout2 = new XYLayout();
    Border border26 = javax.swing.BorderFactory.createEtchedBorder(Color.white,
    new Color(156, 156, 158));
    Border border27 = new TitledBorder(border26, "View Auctions");
    XYLayout xYLayout3 = new XYLayout();
    XYLayout xYLayout4 = new XYLayout();
    javax.swing.JLabel jLabel1 = new JLabel();
    Border border28 = javax.swing.BorderFactory.createEtchedBorder(Color.white,
    new Color(156, 156, 158));
    Border border29 = new TitledBorder(border28, "Create Auction");
    javax.swing.JRadioButton jRadioButton3 = new JRadioButton();
    javax.swing.JRadioButton jRadioButton4 = new JRadioButton();
    javax.swing.JLabel jLabel2 = new JLabel();
    javax.swing.JTextField jTextField1 = new JTextField();
    javax.swing.JTextArea jTextArea4 = new JTextArea();
    javax.swing.JLabel jLabel3 = new JLabel();
    javax.swing.JTextField jTextField2 = new JTextField();
    javax.swing.JTextField jTextField3 = new JTextField();
    javax.swing.JTextField jTextField4 = new JTextField();
    javax.swing.JLabel jLabel4 = new JLabel();
    javax.swing.JLabel jLabel5 = new JLabel();
    javax.swing.JLabel jLabel6 = new JLabel();
    javax.swing.JButton jButton6 = new JButton();
    Border border30 = javax.swing.BorderFactory.createLineBorder(Color.white, 2);
    Border border31 = javax.swing.BorderFactory.createLineBorder(Color.lightGray,
    2);
    Border border32 = javax.swing.BorderFactory.createLineBorder(SystemColor.
    inactiveCaptionText, 2);
    Border border33 = javax.swing.BorderFactory.createLineBorder(new Color(156, 156, 158), 2);
    Border border34 = javax.swing.BorderFactory.createLineBorder(new Color(156, 156, 158), 2);
    Border border35 = javax.swing.BorderFactory.createLineBorder(new Color(156, 156, 158), 2);
    Border border36 = javax.swing.BorderFactory.createEtchedBorder(EtchedBorder.
    RAISED, Color.white, new Color(156, 156, 158));
    Border border37 = new TitledBorder(border36, "Action Log");
    Border border38 = javax.swing.BorderFactory.createEtchedBorder(Color.white,
    new Color(156, 156, 158));
    Border border39 = new TitledBorder(border38, "Info");
    Border border40 = javax.swing.BorderFactory.createEtchedBorder(Color.white,
    new Color(156, 156, 158));
    Border border41 = javax.swing.BorderFactory.createEtchedBorder(Color.white,
    new Color(156, 156, 158));
    Border border43 = javax.swing.BorderFactory.createEtchedBorder(Color.white,
    new Color(156, 156, 158));
    Border border44 = new TitledBorder(border43, "Bid On An Auction");
    Border border42 = javax.swing.BorderFactory.createEtchedBorder(EtchedBorder.
    RAISED, Color.white, new Color(156, 156, 158));
    Border border45 = new TitledBorder(border42, "tyeryry");
    public Menu()
    super() ;
    enableEvents(AWTEvent.WINDOW_EVENT_MASK);
    dateTimeBean = new DateTimeBean();
    Timer timer = new Timer(DELAY, this);
    timer.start();
    try {
    setDefaultCloseOperation(EXIT_ON_CLOSE);
    setContentPane( new MyPanel() ) ;
    setSize( 1000 , 700 );
    setVisible( true );
    jbInit();
    } catch (Exception exception)
    exception.printStackTrace();
    private void jbInit() throws Exception {
    this.setForeground(Color.lightGray);
    this.setResizable(false);
    setTitle("Assignment - Bidding System");
    jTextAreaTime.setFont(new java.awt.Font("Dialog", Font.BOLD, 12));
    jTextAreaTime.setBorder(border1);
    jTextAreaTime.setOpaque(true);
    jTextAreaTime.setEditable(false);
    contentPane = (JPanel) getContentPane();
    contentPane.setSize(new Dimension(1000, 700));
    contentPane.setLayout(xYLayout1);
    contentPane.setBackground(Color.white);
    contentPane.setEnabled(true);
    contentPane.setDoubleBuffered(false);
    contentPane.setMinimumSize(new Dimension(1000, 700));
    contentPane.setOpaque(true);
    contentPane.setPreferredSize(new Dimension(1000, 700));
    jPanel1.setBorder(border29);
    jPanel1.setLayout(xYLayout4);
    jPanel2.setFont(new java.awt.Font("Arial Black", Font.PLAIN, 11));
    jPanel2.setBorder(border44);
    jPanel2.setLayout(xYLayout3);
    jPanel3.setFont(new java.awt.Font("Dialog", Font.BOLD, 12));
    jPanel3.setBorder(border27);
    jPanel3.setLayout(xYLayout2);
    jTextArea1.setBorder(BorderFactory.createLineBorder(Color.black));
    jTextArea1.setText("");
    jTextArea1.setEditable(false);
    jScrollPane1.setBorder(border37);
    jScrollPane1.setOpaque(false);
    jScrollPane2.setBorder(border25);
    jScrollPane2.setOpaque(false);
    jButton1.setForeground(Color.black);
    jButton1.setRolloverIcon(null);
    jButton1.setIcon(exitButton);
    jButton1.setText("Exit");
    jButton1.addActionListener(new Menu_jButton1_actionAdapter(this));
    jButton2.setText("jButton2");
    jButton3.setText("jButton3");
    jButton4.setText("jButton4");
    jTextArea3.setEditable(false);
    jTextArea3.setText("");
    jTextArea2.setToolTipText("");
    jTextArea2.setEditable(false);
    jTextArea2.setText("");
    jButton5.setText("Go");
    jButton5.setVisible(true);
    ButtonGroup RadioGroupView = new ButtonGroup();
    ButtonGroup RadioGroupCreate = new ButtonGroup();
    jLabel1.setText("Auction Type:");
    jRadioButton3.setText("English");
    jRadioButton4.setText("Vickrey");
    jRadioButton3.setOpaque(false);
    jRadioButton4.setOpaque(false);
    jTextArea4.setBorder(border35);
    jButton6.addActionListener(new Menu_jButton6_actionAdapter(this));
    RadioGroupCreate.add(jRadioButton3);
    RadioGroupCreate.add(jRadioButton4);
    jLabel2.setText("Item Name:");
    jTextField1.addActionListener(new Menu_jTextField1_actionAdapter(this));
    jLabel3.setText("Description:");
    jLabel4.setText("Reserve Price");
    jLabel5.setText("Buy Out");
    jLabel6.setText("Start Price");
    jButton6.setText("Create");
    RadioGroupView.add(jRadioButton1);
    RadioGroupView.add(jRadioButton2);
    jButton5.setToolTipText("");
    jRadioButton1.setOpaque(false);
    jRadioButton1.setToolTipText("");
    jRadioButton1.setText("View All Auctions");
    jRadioButton1.addActionListener(new Menu_jRadioButton1_actionAdapter(this));
    jRadioButton2.setOpaque(false);
    jRadioButton2.setText("View Auction");
    jPanel1.setOpaque(false);
    jPanel2.setOpaque(false);
    jPanel3.setOpaque(false);
    jPanel1.add(jLabel1, new XYConstraints(9, 6, -1, -1));
    jPanel1.add(jLabel2, new XYConstraints(9, 26, -1, -1));
    contentPane.add(jTextAreaTime, new XYConstraints(23, 599, 82, 56));
    contentPane.add(jButton1, new XYConstraints(820, 606, 96, 39));
    contentPane.add(jButton2, new XYConstraints(168, 606, 89, 40));
    contentPane.add(jButton3, new XYConstraints(275, 606, 96, 42));
    contentPane.add(jButton4, new XYConstraints(396, 606, 94, 45));
    jPanel3.add(jRadioButton2, new XYConstraints(9, 24, -1, -1));
    jPanel3.add(jButton5, new XYConstraints(177, 110, -1, -1));
    jPanel3.add(jRadioButton1, new XYConstraints(9, 0, -1, -1));
    jPanel1.add(jTextField1, new XYConstraints(85, 26, 118, -1));
    jPanel1.add(jRadioButton3, new XYConstraints(81, 0, -1, -1));
    jPanel1.add(jRadioButton4, new XYConstraints(144, 0, -1, -1));
    jPanel1.add(jLabel3, new XYConstraints(9, 50, -1, -1));
    jPanel1.add(jTextArea4, new XYConstraints(86, 53, 116, 50));
    jPanel1.add(jButton6, new XYConstraints(308, 107, 102, 22));
    jPanel1.add(jTextField2, new XYConstraints(361, 30, 50, 15));
    jPanel1.add(jTextField3, new XYConstraints(361, 55, 50, 15));
    jPanel1.add(jTextField4, new XYConstraints(361, 79, 50, 15));
    jPanel1.add(jLabel6, new XYConstraints(284, 80, -1, -1));
    jPanel1.add(jLabel4, new XYConstraints(266, 29, -1, -1));
    jPanel1.add(jLabel5, new XYConstraints(296, 56, -1, -1));
    contentPane.add(jPanel1, new XYConstraints(15, 85, 451, 161));
    contentPane.add(jPanel3, new XYConstraints(735, 86, 241, 161));
    contentPane.add(jScrollPane1, new XYConstraints(24, 465, 950, 122));
    jScrollPane1.getViewport().add(jTextArea2);
    contentPane.add(jScrollPane2, new XYConstraints(22, 256, 951, 196));
    jScrollPane2.getViewport().add(jTextArea3);
    contentPane.add(jPanel2, new XYConstraints(478, 88, 245, 161));
    jButton2.setText("Client");
    jButton2.addActionListener(new java.awt.event.ActionListener() {
    public void actionPerformed(ActionEvent e) {
    jButton2_actionPerformed(e);
    jButton3.setText("From");
    jButton3.addActionListener(new java.awt.event.ActionListener() {
    public void actionPerformed(ActionEvent e) {
    jButton3_actionPerformed(e);
    jButton4.setText("Server");
    jButton4.addActionListener(new java.awt.event.ActionListener() {
    public void actionPerformed(ActionEvent e) {
    jButton4_actionPerformed(e);
    jButton5.addActionListener(new java.awt.event.ActionListener() {
    public void actionPerformed(ActionEvent e) {
    try {
    jButton5_actionPerformed(e);
    catch (ClassNotFoundException ex) {
    catch (RemoteException ex) {
    catch (SQLException ex) {
    try {
    s = (Iserver)Naming.lookup("rmi://192.168.0.3:1099/AuctionService");
    } catch(Exception ex) {
    protected void processWindowEvent(WindowEvent e) {
    super.processWindowEvent(e);
    if (e.getID() == WindowEvent.WINDOW_CLOSING) {
    System.exit(0);
    public void actionPerformed(ActionEvent e) {
    jTextAreaTime.setText("  "+dateTimeBean.getDayName()+"\n"+"  "+dateTimeBean.getDate()+"\n"+ "  "+dateTimeBean.getTime());
    repaint();
    public void jTextField1_actionPerformed(ActionEvent e) {
    public void jButton1_actionPerformed(ActionEvent e) {
    System.exit(0);
    public void jButton2_actionPerformed(ActionEvent e) {
    clientCal.setTime(new Date());
    int hour = clientCal.get(Calendar.HOUR_OF_DAY);
    int minute = clientCal.get(Calendar.MINUTE);
    int secs = clientCal.get(Calendar.SECOND);
    String time = hour + ":" + minute + "." + secs;
    try {
    s.setClientTime(time);
    } catch(java.rmi.RemoteException re) {
    public void jButton3_actionPerformed(ActionEvent e) {
    try {jTextArea2.append(s.getTime() + "\n");
    } catch(java.rmi.RemoteException re) {
    public void jButton4_actionPerformed(ActionEvent e) {
    try {
    s.setServerTime();
    } catch(java.rmi.RemoteException re) {
    //Set Image as Background
    public class MyPanel extends JPanel {
    private Image img ;
    public MyPanel() {
    //setLayout( new BorderLayout() ) ;
    setSize(1000, 700);
    img = new ImageIcon("test.jpg" ).getImage() ;
    public void drawBackground( Graphics g ) {
    int w = getWidth() ;
    int h = getHeight() ;
    int iw = img.getWidth( this ) ;
    int ih = img.getHeight( this ) ;
    for( int i = 0 ; i < w ; i+=iw ) {
    for( int j = 0 ; j < h ; j+= ih ) {
    g.drawImage( img , i , j , this ) ;
    protected void paintComponent(Graphics g) {
    super.paintComponent(g);
    drawBackground( g ) ;
    Aiyo! Would it have killed you to post a short example rather than that whole thing? Anyhowdy, have you checked to see if TitleBorder has a constructor that takes a color? Alternately, you can play with UIManager defaults:
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.border.*;
    public class BorderDefaults {
        public static void main(String[] args) {
            EventQueue.invokeLater(new Runnable(){
                public void run() {
                    UIManager.put("TitledBorder.border",new LineBorder(Color.ORANGE));
                    UIManager.put("TitledBorder.titleColor", Color.RED);
                    JLabel label = new JLabel("I am a label");
                    label.setBorder(BorderFactory.createTitledBorder("border title"));
                    JFrame f = new JFrame();
                    f.getContentPane().add(label);
                    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                    f.pack();
                    f.setLocationRelativeTo(null);
                    f.setVisible(true);
    }

  • Changing a String to a byte

    Here is my problem. I read from the keyboard and I build a String. I need to take this String and change it to bytes so I can store it in an array of bytes. Please help
    Thanks
    Spoon

    This any good to you?/*          The program gets info from the in-built ASCII files. binary characters
    *          65 to 91 (01000001 to 01011011) and then writes them to a new file
    *          called "Alphabet.txt" - (65 to 91 are the alphabet characters in upper case
    import java.io.*;
    class TextWrite2 {
            public static void main (String args[]) throws IOException {
                FileWriter text = new FileWriter("Alphabet.txt");
                     for (int i=97; i<123;i++) {
                  text.write((char)i);
            text.close();
    }

  • I need to change the gallery captions.... How?

    I am working on a presentation of artworks. I have three albums, "Collages," "Mountain Series," "Additional Paintings." In the gallery, these are displayed with the subtitles, "35 photos" etc. How can I change "photos" to "artworks"?

    the image count is part of iweb language localization, so the easiest way is to change them with a few lines of javascript... but I no longer post code here, so you are on your own.
    the alternative is to modify the albums_page.js file and change these localization strings, in your case are these two files:
    http://www.lindadurkeeart.com/LindaDurkeeArt/LindaDurkee_Art/Linda_Durkee_Art_files/Linda_DurkeeArt.js
    http://www.yourstrategy.org/Campaigns/CampaignLibrary/Our_Posters/Our_Posters_files/OurPosters.js
    search for: IWCreateMediaCollection
    in the same line, you need to change words photo inside the square brackets [ ] to your own word.
    note: you will have to do this every time you publish entire site, because iweb over these js files.

  • MM Change Value String from new Movement Type. (URGENT)

    Dear friends ,
    We have copied moviment type 501 and we need to change the value string to this movement.
    So after copy to 933 and creates value string ZA01 copied from WA01 , which tables should I change to value string of movment type use it ?
    We are using ECC 5.0.
    Best regards,
    Alessandro

    Could you please tell us what you want to achive with this setting though iam 99% sure that what you told in this thread cannot be done. WE always try to create the new movement types using exisiting movement types. So , transaction key/ Value string are copied over . So, i highly doubt if you can even change those fields as they are defined by SAP and used as part of their code and highly recommends not to attempt to play with them.
    If you want, you can check in OMWN and OMJJ to see that they are uneditable..
    please let us know what you want to achive with this so that we can try to help you.
    Please revert back to us if you have achived in creating a copy of WA01 and also let us know how you did it . Iam just curios.
    AH

  • Need to change word file name

    hi,
    I am uploading the word file into application server from a SAP CRM transaction using the method cl_crm_documents=>get_with_file.
    My requirement is while uploading the file into app server I need to change the file name to differentiate the files. Is there any way so that I can change the word file name?
    Thanks,
    Kumar

    Hi,
    Do this way ..
    i.e, use METHOD CL_GUI_FRONTEND_SERVICES=>FILE_DELETE
        DATA: W_WFD_FILE01 TYPE STRING,
              W_WFD_RC01   TYPE I.
              W_WFD_FILE01 = P_OUT1.
        CALL METHOD CL_GUI_FRONTEND_SERVICES=>FILE_DELETE
             EXPORTING
                  FILENAME             = W_WFD_FILE01
             CHANGING
                  RC                   = W_WFD_RC01
             EXCEPTIONS
                  FILE_DELETE_FAILED   = 1
                  CNTL_ERROR           = 2
                  ERROR_NO_GUI         = 3
                  FILE_NOT_FOUND       = 4
                  ACCESS_DENIED        = 5
                  UNKNOWN_ERROR        = 6
                  NOT_SUPPORTED_BY_GUI = 7
                  WRONG_PARAMETER      = 8
                  others               = 9  .
             IF SY-SUBRC <> 0.
    *             MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
             ENDIF.

  • Change Short String Version

    Re: DPS Marketing version issue
    I have same problem as a lot of other people - the marketing version of my app is 1.0 but my old bundle short version is 1.5. Hence Apple is rejecting my file as CFbundle short string must contain a higher version. I can't find any other help email address than this one. I need my CFbundle short string version changed up to 2.0.
    The DPS discussion says that Adobe are the only ones that can change bundle short string version.

    Please post this issue in the DPS forum here http://forums.adobe.com/community/dps. Adobe employees working on DPS monitor that forum.

  • Trying to drag pdf files i have and combine them into one pdf file in the account i just purchased with Adobe. when i drag a pdf file over Adobe doesn't accept it. says it can not convert this type of file. but it is an Adobe file. Do I need to change it?

    Trying to drag pdf files i have and combine them into one pdf file in the account i just purchased with Adobe. when i drag a pdf file over Adobe doesn't accept it. says it can not convert this type of file. but it is an Adobe file. Do I need to change it in some other form befor dragging it?

    Hello djensen1x,
    Could you please let me know what version of Acrobat are you using.
    Also, tell me your workflow of combining those PDF files?
    Please share the screenshot of the error message that you get.
    Hope to get your response.
    Regards,
    Anubha

  • HT5622 I have been using one apple ID for my family as it makes it easier to manage itunes purchases/rentals on all of our devices.  Now that my kids are getting old and my wife has recently purchased an Iphone, I can see that I need to change my strategy

    I have been using one apple ID for my family as it makes it easier to manage itunes purchases/rentals on all of our devices.  Now that my kids are getting old and my wife has recently purchased an Iphone, I can see that I need to change my strategy. I plan to add a few more iphones to the family very soon.  What is your recommendation to manage all of our devices (iphones, itouch, apple tv) for my family?  Can I continue to function with one apple ID or is it time to take the leep into attempting to manage multi-apple ID's? 

    There's a few ways of managing multiple devices on a single computer (and keeping seperate content on each). The following document is worth checking through:
    How to use multiple iPods, iPads, or iPhones with one computer

  • How can I change my icloud account . the one my ipad recognizes is not my appleid and I need to change it

    when I upgraded to IOS5 and got icloud, for some reason the account email is wrong and I need to change it to my apple id. how do I do that?

    iCloud FAQs
    Creating an iCloud account: Frequently Asked Questions
    iCloud Help
    http://help.apple.com/icloud/?lang=en

  • When I first attached a cable from iphone6 to hdmi on tv, I was able to read kindle on tv. After watching movies and playing Pandora from iphone to tv through the cable, I can no longer read kindle through it. What settings do I need to change?

    When I first attached a cable from iphone6 to hdmi on tv, I was able to read kindle on tv. After watching movies and playing Pandora from iphone to tv through the cable, I can no longer read kindle through it. What settings do I need to change?

    Hi,
    Already mentioned on the following post:
       http://h30434.www3.hp.com/t5/Other-Notebook-PC-Que​stions/VGA-on-laptop-HDMI-on-TV-needs-connected/m-​...
    You need a CONVERTER, not ADAPTER The setup:
    The following list may help:
         http://www.ebay.com.au/sch/sis.html?_kw=HDMI+To+VG​A+COMPONENT+Adaptor+A+V+Digital+Converter
    Laptop (VGA) ---- Converter from VGA to HDMI ------ TV
    You also need sound, you can buy a converter with sound OR connect sound directly from laptop to TV.
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Need to change my main BT email address, but how?

    I'd prefer a reply from an OFFICIAL BT Forum Mod if possible, please.
    I need to change my main BT email address, but how do I go about doing this?
    The address is being used as a spoofed address by spammers and I am getting non-delivery notices from the intended receipients' mail servers. Not the end of the world, but it's a PITA.
    Normally, I'd just dump the address and create a new one, but this is the main address attached to my account, which I cannot just change.
    Advice and/or help (FROM A MOD ONLY) would be appreciated. I've already tried the Contact Us from BT and the Online Chat thing, but both times got idiots from India who had no idea what I was talking about.
    TIA.
    OB
    I'm a Private person; I respect those who respect my Privacy.

    is that not for your MY BT account not your btyahoo email address
    normally you need to conatact the mods for that change 
    contact mods
    can take up to 3 working days for mods to contact you
    If you like a post, or want to say thanks for a helpful answer, please click on the Ratings star on the left-hand side of the post.
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

Maybe you are looking for