Problem in writing this program

Please can anyone help me in writing this program, i am a student 
Write a C++ program that reads a real variable x, integer variable N, and computes its exponential e<sup>x</sup> using the formula:
 Ex =  1 + x +
x^2/2! + x^3/31 + x^4/4! + x^5/5 +...+ x^N/N!  (for N ≤ 10).
Your program should define a function that computes factorial, which is called in the main function.
Thanks

Hi Kanayo
The following program does
      total = x*0 +  x*1 + x*2 + x*3 + x*4 ...+x*N
You may modify it for your formula. Use a recursive function or 'for' loop to compute a factorial.
Regards
Chong
#include "stdafx.h"
#include <iostream>
using namespace std;
int N;
double x;
float Fn( int n)
 double total=0.0;
 if (n<N)total= Fn(n+1);
 return(total+=x*n);
int main()
 //double x;
 //int N;
 cout<<"Enter x: "; cin >>x;
 cout<<"Enter N: "; cin >>N;
 double total=Fn(0);
 cout<<total<<"\n";

Similar Messages

  • AirDrop. Has anyone had a problem with getting this program to run consistently?

    I have had numerous case openings with this product. I love it when it works, but for some reason, my mac and mac book pro can no longer see each other when the application is opened. Both are running the current 10.8.2 upgrade and both are between 2-3 years old and air drop is supported on both. No one has been able to figure this out! I've gotten to the point where I absolutely need this program because of its simplicity and speed in transferring big files like adobe illustrator files for example. Please help!!

    Review your hardware again from Apple's AirDrop criteria here.
    Supporting information on AirDrop usability and workflow. It uses Wi-Fi. Do you have Wi-Fi interference when it isn't working the way you expect?
    If you would like to enable AirDrop for wired and wireless, here is an article that shows how to do that from the command line in Terminal. This side-steps any issue where the machine has wireless deemed to old for AirDrop support.
    And here is a Bash script that I wrote to implement the above wired/wireless AirDrop solution. Copy and paste this into a text editor. Save it as airdrop.sh. Make it executable, and run it as: ./airdrop.sh ON
    #! /bin/bash
    # airdrop.sh - turn on or off the AirDrop feature in OS X.
    # airdrop.sh ON or airdrop.sh OFF
    case "$1" in
        ON)
        /usr/bin/defaults write com.apple.NetworkBrowser BrowseAllInterfaces 1
        echo "AirDrop facility enabled"
        killall Finder
        OFF)
        /usr/bin/defaults write com.apple.NetworkBrowser BrowseAllInterfaces 0
        echo "AirDrop facility disabled"
        killall Finder
        echo "Usage: $0 {ON|OFF}"
        exit 1
    esac
    exit 0

  • How would I go about writing this program

    I need to write a program that the user input a String and the output should be the count of how many letters are in the String.Ex: the input is: Hello, my name is Ernie. and the output is : 5 letters: 2, 2 letters: 2, 4 letters:1

    I forgot to finish my post.. could someone give me a hint as to where to start or like what i need to do to get this program done? Any help would be gladly appreciated.

  • Really need help on how to write this program some 1 plz help me out here.

    i am new to java and i confused on how to be writing this program.
    i have completed the Part 1 but i am stuck on Part 2 & 3 so it would would be really great if any 1 could help me out on how to write the program.
    Part I
    An algorithm describes how a problem is solved in terms of the actions to be executed, and it specifies the order in which the actions should be executed. An algorithm must be detailed enough so that you can "walk" through the algorithm with test data. This means the algorithm must include all the necessary calculations.
    Here is an algorithm that calculates the cost of a rectangular window. The
    total cost of a window is based on two prices; the cost of the glass plus the cost of the metal frame around the glass. The glass is 50 cents per
    square inch (area) and the metal frame is 75 cents per inch (perimeter).
    The length and width of the window will be entered by the user. The
    output of the program should be the length and width (entered by the user)
    and the total cost of the window.
    FORMULAS:
    area = length times width perimeter = 2 times (length plus width)
    Here is the corresponding algorithm:
    read in the length of the window in inches
    read in the width of the window in inches
    compute the area
    compute the cost of the glass (area times 50 cents)
    compute the perimeter
    compute the cost of the frame (perimeter times 75 cents)
    compute the total cost of the window (cost of glass plus cost of frame)
    display the length, width and total cost
    The next step would be to "desk check" the algorithm. First you would need to make up the "test data". For this algorithm, the test data would involve making up a length and a width, and then calculating the cost of the window based on those values. The results are computing by hand or using a calculator. The results of your test data are always calculated before translating your algorithm into a programming language. Here is an example of the test data for the problem given:
    length = 10
    width = 20
    area = 200, glass cost= 100.00 (area times 50 cents)
    perimeter = 60, frame cost = 45.00 (perimeter times 75 cents)
    total cost =145.00
    Once the test data is chosen, you should "walk" through the algorithm using the test data to see if the algorithm produces the same answers that you obtained from your calculations.
    If the results are the same, then you would begin translating your algorithm into a programming language. If the results are not the same, then you would attempt to find out what part of the algorithm is incorrect and correct it. It is also
    necessary to re-check your hand calculations.
    Each time you revise your algorithm, you should walk through it with your test data again. You keep revising your algorithm until it produces the same answers as your test data.
    ?Now write and submit a Java program that will calculate the cost of a rectangular window according to the algorithm explained. Be sure to prompt for input and label your output.?
    Part II
    Write, compile and execute a Java program that displays the following prompts:
    Enter an integer.
    Enter a second integer
    Enter a third integer.
    Enter a fourth integer.
    After each prompt is displayed, your program should use the nextint method of the Scanner class to accept a number from the keyboard for the displayed
    prompt. After the fourth integer has been entered, your program should calculate and display the average of the four integers and the value of the first integer entered raised to the power of the second integer entered. The average and result of raising to a power should be included in an appropriate messages
    (labels).
    Sample Test Data:
    Set 1: 100 100 100 100
    Set 2: 100 0 100 0
    Be sure to write an algorithm first before attempting to write the Java code. Walk through your algorithm with test data to be sure it works as anticipated.
    Part III
    Repeat Part lI but only calculate the average, not the power. This time, make sure to use the same variable name, number, for each of the four numbers input. Also use the variable sum for the sum of the numbers. (Hint: To do this, you may use the statement sum = sum + number after each number is read.)
    For Part 1 this is what i got
    import java.util.Scanner;
    public class Window
         public static void main(String[] args)
              double length, width, glass_cost, perimeter, frame_cost, area, total;
              Scanner keyboard = new Scanner (System.in);
              System.out.println("Enter the length of the window in inches");
              length = keyboard.nextInt();
              System.out.println("Enter the width of the window in inches");
              width = keyboard.nextInt();
              area = length * width;
              glass_cost = area * .5;
              perimeter = 2 * (length + width);
              frame_cost = perimeter * .75;
              total = glass_cost + frame_cost;
                   System.out.println("The Length of the window is " + length + "inches");
                   System.out.println("The Width of the window is " + length + "inches");
                   System.out.println("The total cost of the window is $ " + total);
         Enter the length of the window in inches
         5
         Enter the width of the window in inches
         8
         The Length of the window is 5.0inches
         The Width of the window is 5.0inches
         The total cost of the window is $ 39.5
    Press any key to continue . . .
    Edited by: Adhi on Feb 24, 2008 10:33 AM

    Adhi wrote:
    i am new to java and i confused on how to be writing this program.
    i have completed the Part 1 but i am stuck on Part 2 & 3 so it would would be really great if any 1 could help me out on how to write the program.Looks like homework to me.
    What have you written so far? Post it.
    Part I
    An algorithm describes how a problem is solved in terms of the actions to be executed, and it specifies the order in which the actions should be executed. An algorithm must be detailed enough so that you can "walk" through the algorithm with test data. This means the algorithm must include all the necessary calculations.
    Here is an algorithm that calculates the cost of a rectangular window. The
    total cost of a window is based on two prices; the cost of the glass plus the cost of the metal frame around the glass. The glass is 50 cents per
    square inch (area) and the metal frame is 75 cents per inch (perimeter).
    The length and width of the window will be entered by the user. The
    output of the program should be the length and width (entered by the user)
    and the total cost of the window.
    FORMULAS:
    area = length times width perimeter = 2 times (length plus width)
    Here is the corresponding algorithm:
    read in the length of the window in inches
    read in the width of the window in inches
    compute the area
    compute the cost of the glass (area times 50 cents)
    compute the perimeter
    compute the cost of the frame (perimeter times 75 cents)
    compute the total cost of the window (cost of glass plus cost of frame)
    display the length, width and total cost
    The next step would be to "desk check" the algorithm. First you would need to make up the "test data". For this algorithm, the test data would involve making up a length and a width, and then calculating the cost of the window based on those values. The results are computing by hand or using a calculator. The results of your test data are always calculated before translating your algorithm into a programming language. Here is an example of the test data for the problem given:
    length = 10
    width = 20
    area = 200, glass cost= 100.00 (area times 50 cents)
    perimeter = 60, frame cost = 45.00 (perimeter times 75 cents)
    total cost =145.00
    Once the test data is chosen, you should "walk" through the algorithm using the test data to see if the algorithm produces the same answers that you obtained from your calculations.
    If the results are the same, then you would begin translating your algorithm into a programming language. If the results are not the same, then you would attempt to find out what part of the algorithm is incorrect and correct it. It is also
    necessary to re-check your hand calculations.
    Each time you revise your algorithm, you should walk through it with your test data again. You keep revising your algorithm until it produces the same answers as your test data.
    &#147;Now write and submit a Java program that will calculate the cost of a rectangular window according to the algorithm explained. Be sure to prompt for input and label your output.&#148;
    Part II
    Write, compile and execute a Java program that displays the following prompts:
    Enter an integer.
    Enter a second integer
    Enter a third integer.
    Enter a fourth integer.
    After each prompt is displayed, your program should use the nextint method of the Scanner class to accept a number from the keyboard for the displayed
    prompt. After the fourth integer has been entered, your program should calculate and display the average of the four integers and the value of the first integer entered raised to the power of the second integer entered. The average and result of raising to a power should be included in an appropriate messages
    (labels).
    Sample Test Data:
    Set 1: 100 100 100 100
    Set 2: 100 0 100 0
    Be sure to write an algorithm first before attempting to write the Java code. Walk through your algorithm with test data to be sure it works as anticipated.So this is where you actually have to do something. My guess is that you've done nothing so far.
    Part III
    Repeat Part lI but only calculate the average, not the power. This time, make sure to use the same variable name, number, for each of the four numbers input. Also use the variable sum for the sum of the numbers. (Hint: To do this, you may use the statement sum = sum + number after each number is read.)Man, this specification writes itself. Sit down and start coding.
    One bit of advice: Nobody here takes kindly to lazy, stupid students who are just trying to con somebody into doing their homework for them. If that's you, better have your asbestos underpants on.
    %

  • Problem with my JBuilder Program

    I have a problem to compile this program with JBuilder 8.0
    He told me, each time like what my import file not working.
    Best regards,
    Nicholas
    First Error Messages: !Class test_rectangle is public; must be declared in a file named test_rectangle.java at line 17
    Second Error Messages: "rectangle.java": Error #: 901 : package . stated in source E:\JBuilder 8\samples\Welcome\rectangle\src\rectangle\rectangle.java does not match directory .
    import java.util.*;
    import java.io.*;
    public class rectangle
    private int a;//lenght variable;
    private int b;//width variable;
    public rectangle (int x, int y){//constructor
    a=x;
    b=y;
    public int surface (int x, int y){//function (method)
    return x*y;
    public class test_rectangle
    public static void main (String[] args)
    throws java.io.IOException //degage les exeptions (rejette se qu<il ne sait pas)
    rectangle rectangle1=new rectangle (3,4);//on a donner le nom du rectangle
    System.out.println (rectangle1.surface (3,4));//on applique une methode a l objets

    Two problems.
    1) You have your rectangle class in src/rectangle which means that it needs to be declared in package 'rectangle'.
    2) You cannot have more than one public class in a file. The file has to have the same name as the class with a ".java" extension.
    You can solve (1) by adding this to the top of your file:
    package rectangle;
    or by moving the file to src.
    You can solve (2) by removing the public modifier from your internal class or moving it to it's own file (test_rectangle.java).

  • I have Adobe premiere 12 elements I have Buy it but this program is Corrupt. the are no sound on the time line. I have sound in my computer, this is no problem, I can listen every another things but NO Elements 12 OK I make ia video take down to the time

    i have Adobe premiere 12 elements I have Buy it but this program is Corrupt. the are no sound on the time line. I have sound in my computer, this is no problem, I can listen every another things but NO Elements 12 OK I make ia video take down to the time line. Video is OK BUT NO sound I have makit in 2 veeks from monday to next vek here whit this very bad program so i go to garbags I think I buy a another program is be better and have a Sound. This is very bad I am not god to English. I Have a pro camera and I will have a god support but this is very bad. I is bad to English. But this Program I buy i think this is very Corrupt. The mast find a sound in this program. I cvan not understan if You can sell this very bad program Videoredigering and this program have nothing sound. This is crazy.

    i have Adobe premiere 12 elements I have Buy it but this program is Corrupt. the are no sound on the time line. I have sound in my computer, this is no problem, I can listen every another things but NO Elements 12 OK I make ia video take down to the time line. Video is OK BUT NO sound I have makit in 2 veeks from monday to next vek here whit this very bad program so i go to garbags I think I buy a another program is be better and have a Sound. This is very bad I am not god to English. I Have a pro camera and I will have a god support but this is very bad. I is bad to English. But this Program I buy i think this is very Corrupt. The mast find a sound in this program. I cvan not understan if You can sell this very bad program Videoredigering and this program have nothing sound. This is crazy.

  • Problem with this program

    I see this board is very young. Well I'm a high school freshman in a java programming class and i have a little problem with my homework.
    My source code is:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.text.DecimalFormat;
    public class DogsHumanAge extends JApplet
    implements ActionListener
    JTextField inputHumanyears, displayDogyears;
    public void init()
    JLabel labelHumanyears = new JLabel("Enter the dog's age in human years:",
    SwingConstants.RIGHT);
    inputHumanyears = new JTextField(5);
    JLabel labelDogyears = new JLabel("Dogyears = ", SwingConstants.RIGHT);
    displayDogyears = new JTextField(5);
    displayDogyears.setEditable(false);
    JButton go = new JButton("Compute age");
    go.addActionListener(this);
    Container c = getContentPane();
    c.setBackground(Color.white);
    JPanel p = new JPanel();
    p.setLayout(new GridLayout(3, 2, 5, 5));
    p.add(labelHumanyears);
    p.add(inputHumanyears);
    p.add(labelDogyears);
    p.add(displayDogyears);
    c.add(p, BorderLayout.CENTER);
    c.add(go, BorderLayout.SOUTH);
    public void actionPerformed(ActionEvent e)
    int Humanyears = Integer.parseInt(inputHumanyears.getText());
    double Dogyears = calculateDogyears(Humanyears);
    DecimalFormat df = new DecimalFormat("00.0");
    displayDogyears.setText(df.format(Dogyears));
    private double calculateDogyears(int Humanyears, int Dogyears)
    return 13 + (int)(16.0 / 3.0 * (Dogyears - 1));
    The error message i get is:
    DogsHumanAge.java:42: calculateDogyears(int, int) cannot be applied to (int)
    double Dogyears = calulateDogyears(Humanyears);
    The intent of this program is to calculate the number of dog years from the given human years that is inputted into the input box.

    Ok I got the solution. A friend helped me out. I had to make a few minor changes. Now the program looks like:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.text.DecimalFormat;
    public class DogsHumanAge extends JApplet
    implements ActionListener
    JTextField inputDogYears, displayHumanYears;
    public void init()
    JLabel labelDogYears = new JLabel("Enter the dog's age in dog years:",
    SwingConstants.RIGHT);
    inputDogYears = new JTextField(5);
    JLabel labelHumanYears = new JLabel("Human years = ", SwingConstants.RIGHT);
    displayHumanYears = new JTextField(5);
    displayHumanYears.setEditable(false);
    JButton go = new JButton("Compute age");
    go.addActionListener(this);
    Container c = getContentPane();
    c.setBackground(Color.white);
    JPanel p = new JPanel();
    p.setLayout(new GridLayout(3, 2, 5, 5));
    p.add(labelDogYears);
    p.add(inputDogYears);
    p.add(labelHumanYears);
    p.add(displayHumanYears);
    c.add(p, BorderLayout.CENTER);
    c.add(go, BorderLayout.SOUTH);
    public void actionPerformed(ActionEvent e)
    int dogYears = Integer.parseInt(inputDogYears.getText());
    double humanYears = calculateHumanYears(dogYears);
    DecimalFormat df = new DecimalFormat("00.0");
    displayHumanYears.setText(df.format(humanYears));
    private double calculateHumanYears(int dogYears)
    return 13 + (int)(16.0 / 3.0 * (dogYears - 1));
    Thanks to all that helped me!

  • There was a problem sending a command to this program. Excel with new templates.

    I have recently deployed these UEV templates for Office 2013.  In particular, I'm having an issue with Excel 2013.  Whenever I let UEV sync settings for this application and I click on a .xlsx file, I get the infamous "There was a problem sending
    a command to this program..." error message.  This drove me nuts for a week thinking there was something wrong with Excel.  I finally figured out it was the Excel UEV settings causing the issue.  I've tried deleing the settings package file,
    but no luck.  I can reproduce the issue pretty easily.

    MS has released hotfix for this issue. http://support.microsoft.com/kb/2927019/. 
    Eswar Koneti | Configmgr blog:
    www.eskonr.com | Linkedin: Eswar Koneti
    | Twitter: Eskonr

  • A problem caused this program to stop interacting with Windows

    I try to run Photoshop.exe, but it doesn't respond. I get this error message. How to fix it? I have no idea where is a problem? I had no problems with it earlier.
    ERROR MESSAGE:
    Description:
    A problem caused this program to stop interacting with Windows.
    Problem signature:
    Problem Event Name: AppHangB1
    Application Name: Photoshop.exe
    Application Version: 8.0.0.0
    Application Timestamp: 3fce5708
    Hang Signature: 1875
    Hang Type: 0
    OS Version: 6.0.6001.2.1.0.256.1
    Locale ID: 1063
    Additional Hang Signature 1: 3732c99c21cdca196fbfee3cc7094b85
    Additional Hang Signature 2: 848c
    Additional Hang Signature 3: 5c7261f725b6a443e8327138a3fe0208
    Additional Hang Signature 4: 1875
    Additional Hang Signature 5: 3732c99c21cdca196fbfee3cc7094b85
    Additional Hang Signature 6: 848c
    Additional Hang Signature 7: 5c7261f725b6a443e8327138a3fe0208
    Read our privacy statement:
    http://go.microsoft.com/fwlink/?linkid=50163&clcid=0x0409

    I suspect a RAM or hardware problem.

  • How do I make this program generate a new problem once the button is hit

    Here is the code... appreciate any help given
    How do I make this program generate a new set of problem when the "NEXT" button is clicked and continue until the END button is hit
    package javaapplication3;
    import java.awt.GridLayout;
    import java.awt.Window;
    import javax.swing.*;
    import java.awt.event.*;
    * @author Sylvester Saulabiu
    class Grid extends JFrame{
        final int score = 0;
        final int total = 0;
        Grid(){
            //Set Layout of Flashcard
            setLayout(new GridLayout(4, 4, 2 , 2));
            //Create Panels
            JPanel p2 = new JPanel();
            JPanel p3 = new JPanel();
            final JPanel p1 = new JPanel();
            //Create Radio buttons & group them
            ButtonGroup group = new ButtonGroup();
            final JRadioButton ADD = new JRadioButton("Addition");
            final JRadioButton SUB = new JRadioButton("Subtraction");
            final JRadioButton MUL = new JRadioButton("Multiplication");
            final JRadioButton DIV = new JRadioButton("Division");
            p2.add(ADD);
            p2.add(SUB);
            group.add(ADD);
            group.add(SUB);
            group.add(MUL);
            group.add(DIV);
            p2.add(ADD);
            p2.add(SUB);
            p2.add(DIV);
            p2.add(MUL);
            //Create buttons
            JButton NEXT = new JButton("NEXT");
            JButton END = new JButton("End");
            //Create Labels
            JLabel l1 = new JLabel("First num");
            JLabel l2 = new JLabel("Second num");
            JLabel l3 = new JLabel("Answer:");
            JLabel l4 = new JLabel("Score:");
            final JLabel l5 = new JLabel("");
            JLabel l6 = new JLabel("/");
            final JLabel l7 = new JLabel("");
            //Create Textfields
            final JTextField number = new JTextField(Generator1());
            final JTextField number2 = new JTextField(Generator1());
            final JTextField answer = new JTextField(5);
            //Add to panels
            p1.add(l1);
            p1.add(number);
            p1.add(l2);
            p1.add(number2);
            p1.add(l3);
            p1.add(answer);
            p1.add(l4);
            p1.add(l5);
            p1.add(l6);
            p1.add(l7);
            p3.add(NEXT);
            p3.add(END);
            //Add panels
            add(p2);
            add(p1);
            add(p3);
            //Create Listners
      NEXT.addActionListener(new ActionListener() {
          public void actionPerformed(ActionEvent e) {
             int answer1 = 0;
             //Grab the numbers entered
             int numm1 = Integer.parseInt(number.getText());
             int numm2 = Integer.parseInt(number2.getText());
             int nummsanswer = Integer.parseInt(answer.getText());
             //Set the score and total into new variabls
             int nummscore = score;
             int nummtotal = total;
             //Check if the add radio button is selected if so add
             if (ADD.isSelected() == true){
                 answer1 = numm1 + numm2;
             //otherwise check if the subtract button is selected if so subtract
             else if (SUB.isSelected() == true){
                 answer1 = numm1 - numm2;
             //check if the multiplication button is selected if so multiply
             else if (MUL.isSelected() == true){
                 answer1 = numm1 * numm2;
             //check if the division button is selected if so divide
             else if (DIV.isSelected() == true){
                 answer1 = numm1 / numm2;
             //If the answer user entered is the same with th true answer
             if (nummsanswer == answer1){
                 //add to the total and score
                 nummtotal += 1;
                 nummscore += 1;
                 //Convert the input back to String
                 String newscore = String.valueOf(nummscore);
                 String newtotal = String.valueOf(nummtotal);
                 //Set the text
                 l5.setText(newscore);
                 l7.setText(newtotal);
             //Otherwise just increase the total counter
             else {
                 nummtotal += 1;
                 String newtotal = String.valueOf(nummtotal);
                 l7.setText(newtotal);
      //Create End listener
    END.addActionListener(new ActionListener() {
          public void actionPerformed(ActionEvent e) {
            // get the root window and call dispose on it
            Window win = SwingUtilities.getWindowAncestor(p1);
            win.dispose();
    String Generator1(){
         int randomnum;
         randomnum = (1 + (int)(Math.random() * 20));
         String randomnumm = String.valueOf(randomnum);
         return randomnumm;
    public class Main {
         * @param args the command line arguments
        public static void main(String[] args) {
            // TODO code application logic here
            JFrame frame = new Grid();
            frame.setTitle("Flashcard Testing");
            frame.setSize(500, 200);
            frame.setLocationRelativeTo(null);
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.setVisible(true);
    }Edited by: SirSaula on Dec 5, 2009 4:39 PM

    Extract code into methods, so that when an action is performed a method is called. That way you can reuse the method for purposes such as resetting textfields to their default values, scores to default values, etc.
    You can go one step further and seperate the GUI layer from the processing layer, by deriving classes that for example maintain and calculate a score.
    Mel

  • Description: A problem caused this program to stop interacting with Windows. Problem signature: Problem Event Name: AppHangB1 Application Name: firefox.exe Application Version: 1.9.2.3855 Application Timestamp: 4c48d5ce Hang Signature: 9962

    I am having this problem, in the first window when I try to do anything.
    Description:
    A problem caused this program to stop interacting with Windows.
    Problem signature:
    Problem Event Name: AppHangB1
    Application Name: firefox.exe
    Application Version: 1.9.2.3855
    Application Timestamp: 4c48d5ce
    Hang Signature: 9962
    Hang Type: 0
    OS Version: 6.0.6002.2.2.0.768.3
    Locale ID: 1033
    Additional Hang Signature 1: 5df72ce88195c0212c542e9c8c172716
    Additional Hang Signature 2: 2b94
    Additional Hang Signature 3: 9acafbb8ad01bf9d2eb258d8fddad3ca
    Additional Hang Signature 4: 9962
    Additional Hang Signature 5: 5df72ce88195c0212c542e9c8c172716
    Additional Hang Signature 6: 2b94
    Additional Hang Signature 7: 9acafbb8ad01bf9d2eb258d8fddad3ca
    == This happened ==
    Every time Firefox opened
    == User Agent ==
    Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4

    I suspect a RAM or hardware problem.

  • I don't know who will see this, but i'm writing this here, because i cound't find any problem report places anywhere.

    I don't know who will see this, but i'm writing this here, because i cound't find any problem report places anywhere. Your site are too confusing. I just wanna say that css3 isn't working properly in mozilla. It lags. Other transitions doesn't work at all. Check this site http://css3exp.com/moon/ on your and on chrome browser to see differences. Could you write me a reply to this... question...? [email protected]

    It appears you have accidentally subscribed to a community and were getting e-mails for all related posts. I have removed the subscriptions, so you should be getting no more e-mails. Thank you for bringing this to our attention. I'm sorry you recieved so many e-mails you did not want.

  • I have a problem with adobe support advisor, how can i reinstall this program

    i have a problem with adobe support advisor, how can i reinstall this program

    hi wie kann ich adobe support advisor reinstalieren mac , ich bekomme fehlermeldung beim photoshop installation
    Von meinem iPhone gesendet
    Am 17.08.2014 um 07:17 schrieb Willi Adelberger <[email protected]>:
    i have a problem with adobe support advisor, how can i reinstall this program
    created by Willi Adelberger in Deutsche Foren - View the full discussion
    Kannst Du mal anfangen Deine Frage zu stellen?
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at https://forums.adobe.com/message/6647388#6647388
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    To unsubscribe from this thread, please visit the message page at . In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Deutsche Foren by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • ITunes error: This program can't start because iAdCore.dll is missing from your computer. Try reinstalling the program to fix this problem.

    iTunes error: This program can't start because iAdCore.dll is missing from your computer. Try reinstalling the program to fix this problem.
    Windows 7 Professional. AMD 64 bit processor. New install of itunes.
    Unable to uninstall. Unable to reinstall. Sigh.

    THANK YOU!   turingest2
    See Troubleshooting issues with iTunes for Windows updates.
    This Fix WORKED!!!!!  And had aready tried MANY others first... 
    https://discussions.apple.com/docs/DOC-6562#iadcore   <--  This is a direct link to solution...

  • A problem caused this program to stop interacting with Windows.  Problem signature:   Problem Event Name:     AppHangB1

    I have received the following error message with Adobe Acrobat Pro XI when working with Portfolio Files. I am operating Windows 7 Professional.
    Has anyone found a fix for this issue?
    Description:
      A problem caused this program to stop interacting with Windows.
    Problem signature:
      Problem Event Name: AppHangB1
      Application Name: Acrobat.exe
      Application Version: 11.0.10.32
      Application Timestamp: 547e97af
      Hang Signature: 8dc7
      Hang Type: 0
      OS Version: 6.1.7601.2.1.0.256.48
      Locale ID: 1033
      Additional Hang Signature 1: 8dc7ed9d7ff41b8cc5ee35b7294b45e9
      Additional Hang Signature 2: e6d0
      Additional Hang Signature 3: e6d001594873a6b1363ccd82616a4edf
      Additional Hang Signature 4: 8dc7
      Additional Hang Signature 5: 8dc7ed9d7ff41b8cc5ee35b7294b45e9
      Additional Hang Signature 6: e6d0
      Additional Hang Signature 7: e6d001594873a6b1363ccd82616a4edf
    Read our privacy statement online:
      http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409
    If the online privacy statement is not available, please read our privacy statement offline:
      C:\Windows\system32\en-US\erofflps.txt
    Please help
    John Sorkin [email protected]

    jamodi
    What computer operating system is your Premiere Elements 12 installed?
    How far into the opening of the program do you get? Do you get to the Expert or Quick workspaces?
    And, if so, how long can you stay there? What are you doing when you get this message, opening a new project
    or opening an existing one that has been saved/closed or just trying to launch the program from the desktop icon.
    Are you running the program Run As Administrator and from a User Account with Administrative Privileges?
    Do you have the McAfee antivirus program? Do you have the latest version of QuickTime installed on your computer
    with Premiere Elements 12?
    What video card/graphics card does your computer use? Have you verified at the web site of the manufacturer of the
    card that the video card/graphics card driver is up to date?
    If you do not know, check the Device Manager/Display
    Adapters to determine if you have 1 or 2 cards.
    Depending on your answers, the next step will be
    Uninstall the program the usual Control Panel way.
    (If you can get into the program long enough to go to Help Menu/Sign Out, please do that to deactivate the program
    before going to the uninstall in Control Panel area.)
    Do a run through with ccleaner (both the regular cleaner and registry cleaner parts) to get rid of leftovers from
    incomplete uninstalls and reinstalls.
    https://www.piriform.com/ccleaner
    Reinstall the program with the antivirus and firewalls disabled.
    (If you have McAfee as the antivirus, that may be problem, and we can take care of that without having to go
    through this uninstall/ccleaner/reinstall.)
    Let us start here and then decide what next.
    Thank you.
    ATR

Maybe you are looking for

  • How do i sync my itunes music on my computer to my ipod shuffle 2

    how do i syn my itunes music from computer to my ipod shuffle

  • Actions and additional actions

    Dear GuruS Iam aware of the difference between actions and additional actions , Iam not able to understand one thing , when I try to create an action type and try to activate  the update actions infotype coloumn. I get  a mesage upd 0000 ='x' only al

  • Need help with idea

    Hi, I recently replaced my MacBook Pro 13" 2011 model with a new HDD, I had the origional Hitachi, 320GB / 5400RPM HDD removed as it broke and lost everything on my Mac as I had no backup HDD at all. I now have purchased a new Seagate 750GB / 7200.4R

  • Justifying Mac vs PC for business

    I have an iMac at home but my employer is strictly PC-based. I'm the manager of communications and marketing, and we use a creative agency to develop our materials. I'm due for a laptop upgrade and some in our IT group support my desire to switch to

  • Restriction on MFBF Transaction Screen

    Hi All.. I would like to know how to restict some of the push buttons in  MFBF screen..? The push buttons required to be restricted are, "post with correction", and remaining push buttons on this row... user shud not be able to use these buttons. And