JustAnswer > Programming
Ask A Question|Register|Login|Help
JustAnswer

Programming

Ask a Programming Question, Get an Answer ASAP!

Have your own Programming question?

3 Programmers are Online Now
characters left:
Not a Programming Question?

Related Programming Topics:

  • Add
  • ,
  • Run
  • ,
  • Set
  • ,
  • Top
  • ,
  • Two
  • ,
  • Back
  • ,
  • Chat
  • ,
  • Code
  • ,
  • Dell
  • ,
  • Copy
Bookmark and Share

Question

TO RAJ,
I will need this back by Monday 9:00 MST.

1.Java programmers can use class hierarchies for the purposes of inheritance. For example, given a Tree class, we could define Conifer and Deciduous sub classes that inherit from the parent Tree class as you can see here:

For this learning event, you should develop a similar class hierarchy for Pets. You can have whatever subclasses you think would be useful, but your hierarchy should have at least three levels (the top class, Pet, counts as the first level). Include variables and methods (at least one of each) for each class you design, as in the above example.

2.You have been hired as a Java programmer by Real Estates Solutions Inc. Your task is to write a Java applet for their web site that would enable customers to figure out their monthly mortgage payments.
The applet input will be the loan amount, annual percentage rate or APR, and the number of years to pay out the loan. The output will be:the monthly payment amount, the number of payments, the total paid including interest, and total interest paid.
The calculations were provided to you by a real estate agent:
•     p,loan amount or principal
•     n,number of payments = payments per year * number of years
•     i,interest per period = apr/payments per year = apr/12
•     r,monthly payment amount = principal * interest per period / (1-(1+(interest perperiod)/100)^(number of payments-1)^2)
Hint: In Java syntax the monthly payment calculation is:
r=((p*(i/100))/(1-(Math.pow((1+(i/100)),(n*(-1))))));
Details:
Please note that your program should accept three inputs:
1.     The loan amount,
2.     Annual percentage rate or APR, and
3.     The number of years to pay out the loan
And calculate four outputs:
1.     The monthly payment amount,
2.     Number of payments,
3.     The total paid including interest, and
4.     Total interest paid
When coding your applet, remember the following:
•     Your applet needs to extend the Applet (or JApplet) class. Of course, you need to import the appropriate applet package(s).
•     Your applet needs to have declarations for the fields, labels, components, widgets,etc. that you use in the applet.
•     There are applet methods that are called automatically by browsers (please see your textbook). Make sure you initialize (implement init()) your applet.
•     You need the code that does the calculation of the interest.
•     You need to handle the event of pressing the button. There are some examples in the book (ask your instructor for the specific pages).
•     You may use this sample code for example.
Please create an HTML page that contains the applet tag. In addition to your mortgage calculator commented Java code, you need to provide the HTML page.
Here is the Hello world Java code example to create an applet:
________________________________________
<Title>A Simple Program</Title>
import java.awt.*;
/**
* The HelloWorld class implements anapplet that
* simply displays "HelloWorld!".
*/
public class HelloWorld extends Applet {
public void paint(Graphics g){
// Display "Hello World!"
g.drawString("Hello world!",50, 25);
}
}
________________________________________
Then you would compile the class and create an HTML page called Hello.htm:
________________________________________
<HTML>

<HEAD>

<TITLE>A Simple Program<./TITLE>

</HEAD>

<BODY>

Here is the output of my program:
<APPLET CODE="HelloWorld.class"WIDTH="150" HEIGHT="25">

</APPLET>

</BODY>

</HTML>
________________________________________
Deliverable Details:
Upload the commented source code file of your calculator and the HTML file.
Please add your files.

Submitted: 148 days and 10 hours ago.
Category: Programming
Value: $45
Status: CLOSED
+
Read More

Optional Information

Computer OS: Windows Vista
Browser: IE

Already Tried:
Thank you for your help!!!

Posted by Raj 148 days and 9 hours ago.

Info Request

I haven't done any coding for Java Applet........
So whether i can do the second part or Not i am Not sure........
I can tell you about the second part in about 12 hrs.

Will it be fine??

147 days ago.

Reply

Thanks Let me know and I will have to submit it to someone else. I appreciate what you can do.

Posted by Raj 146 days and 22 hours ago.

Info Request

I am sorry for this but i can not help you with this..........

Its difficult for me to do this in the time interval specified so i will opt out and other expert will help you with this........

146 days and 22 hours ago.

Reply

I much time would you need
?

Posted by Raj 146 days and 22 hours ago.

Info Request

I don't know because i will have to start reading Java Applets from the very basic......(I have no knowledge of Java Applets)
I have just knowledge of core Java........
So i opted out so that someone with knowledge of Java Applets will be able to help you with this Question.........

146 days and 22 hours ago.

Reply

O.k Thanks I appreciate your assistance. I have left the JustAnswer Technical area a message about your Bonus. I will see how I can get it to you.

Thanks

Posted by Raj 146 days and 22 hours ago.

Info Request

You are welcome
Hope to work with you in future.........

146 days and 22 hours ago.

Reply

I am sure you will. I will certainly request your services if I need you.

Thanks

Posted by Raj 146 days and 22 hours ago.

Info Request

You are welcome.....

Posted by Rafael Martins 146 days and 22 hours ago.

Info Request

Hi,

I can help you. How many hours left do we have?

What's your IDE? NetBeans, Eclipse, BlueJ, JGrasp?

Regards,
XXXXXX XXXXXXX

146 days and 22 hours ago.

Reply

I will need this back by Wednesday 9:00 p.m. MST. IDE=NetBeans but I prefer everything in MS-Dos

1.Java programmers can use class hierarchies for the purposes of inheritance. For example, given a Tree class, we could define Conifer and Deciduous sub classes that inherit from the parent Tree class as you can see here:

For this learning event, you should develop a similar class hierarchy for Pets. You can have whatever subclasses you think would be useful, but your hierarchy should have at least three levels (the top class, Pet, counts as the first level). Include variables and methods (at least one of each) for each class you design, as in the above example.

2.You have been hired as a Java programmer by Real Estates Solutions Inc. Your task is to write a Java applet for their web site that would enable customers to figure out their monthly mortgage payments.
The applet input will be the loan amount, annual percentage rate or APR, and the number of years to pay out the loan. The output will be:the monthly payment amount, the number of payments, the total paid including interest, and total interest paid.
The calculations were provided to you by a real estate agent:
•     p,loan amount or principal
•     n,number of payments = payments per year * number of years
•     i,interest per period = apr/payments per year = apr/12
•     r,monthly payment amount = principal * interest per period / (1-(1+(interest perperiod)/100)^(number of payments-1)^2)
Hint: In Java syntax the monthly payment calculation is:
r=((p*(i/100))/(1-(Math.pow((1+(i/100)),(n*(-1))))));
Details:
Please note that your program should accept three inputs:
1.     The loan amount,
2.     Annual percentage rate or APR, and
3.     The number of years to pay out the loan
And calculate four outputs:
1.     The monthly payment amount,
2.     Number of payments,
3.     The total paid including interest, and
4.     Total interest paid
When coding your applet, remember the following:
•     Your applet needs to extend the Applet (or JApplet) class. Of course, you need to import the appropriate applet package(s).
•     Your applet needs to have declarations for the fields, labels, components, widgets,etc. that you use in the applet.
•     There are applet methods that are called automatically by browsers (please see your textbook). Make sure you initialize (implement init()) your applet.
•     You need the code that does the calculation of the interest.
•     You need to handle the event of pressing the button. There are some examples in the book (ask your instructor for the specific pages).
•     You may use this sample code for example.
Please create an HTML page that contains the applet tag. In addition to your mortgage calculator commented Java code, you need to provide the HTML page.
Here is the Hello world Java code example to create an applet:
________________________________________
<Title>A Simple Program</Title>
import java.awt.*;
/**
* The HelloWorld class implements anapplet that
* simply displays "HelloWorld!".
*/
public class HelloWorld extends Applet {
public void paint(Graphics g){
// Display "Hello World!"
g.drawString("Hello world!",50, 25);
}
}
________________________________________
Then you would compile the class and create an HTML page called Hello.htm:
________________________________________
<HTML>

<HEAD>

<TITLE>A Simple Program<./TITLE>

</HEAD>

<BODY>

Here is the output of my program:
<APPLET CODE="HelloWorld.class"WIDTH="150" HEIGHT="25">

</APPLET>

</BODY>

</HTML>
________________________________________
Deliverable Details:
Upload the commented source code file of your calculator and the HTML file.
Please add your files.


Optional Information:
Computer OS: Windows Vista
Browser: IE


Posted by Rafael Martins 146 days and 21 hours ago.

Info Request

No problem, you will have your programs tomorrow. Thanks.

146 days and 21 hours ago.

Reply

Thank you so much!!! I appreacite your assistance.

Posted by Rafael Martins 146 days and 7 hours ago.

Answer

Hi,

Here is the source code for the first program: PetHierarchy.java

I will send you the other program soon.

Thanks.

Posted by Rafael Martins 146 days and 5 hours ago.

Answer

Hi there.

Here you go: MortgageCalculator.zip

Screenshot:
graphic
View Full Image


Let me know if you need further assistance.

If you need my assistance again, just start your question with TO RAFAEL MARTINS.

Thank you.

145 days and 22 hours ago.

Reply

On you MortgageCalculator Screen Schot your information is in it is there any way we can get rid of that or screen shot it with nothing in it. Everything looks great!!! I appreacite your hard work. I will except now.

145 days and 22 hours ago.

Reply

I also need a copy of the code.
Did you do this part.
Please create an HTML page that contains the applet tag. In addition to your mortgage calculator commented Java code, you need to provide the HTML page.
Here is the Hello world Java code example to create an applet:
________________________________________
<Title>A Simple Program</Title>
import java.awt.*;
/**
* The HelloWorld class implements anapplet that
* simply displays "HelloWorld!".
*/
public class HelloWorld extends Applet {
public void paint(Graphics g){
// Display "Hello World!"
g.drawString("Hello world!",50, 25);
}
}
________________________________________
Then you would compile the class and create an HTML page called Hello.htm:
________________________________________
<HTML>

<HEAD>

<TITLE>A Simple Program<./TITLE>

</HEAD>

<BODY>

Here is the output of my program:
<APPLET CODE="HelloWorld.class"WIDTH="150" HEIGHT="25">

</APPLET>

</BODY>

</HTML>
________________________________________

Accepted Answer

Hi, I am glad to hear that you liked it.

The screenshot is just a sample to show you the applet working. When you open it, all fields are blank, ready to use.

The file MortgageCalculator.zip has everything you need:
  • MortgageCalculatorApplet.java - The source code
  • MortgageCalculatorApplet.class - The compiled class
  • MortgageCalculator.html - The page which displays the applet.
The HelloWorld Applet and the HelloWorld page (html) you provided me is just to show how to create an Applet and a HTML page to display an Applet.

So, if you are set, please don't forget to hit the accept button. Feel free to ask me more questions if you have any doubts.

Kind regards,
XXXXXX XXXXXXX.

Picture
Expert: Rafael Martins
Pos. Feedback: 100.0 %
Accepts: 
Answered: 6/30/2009

Programming Tutor

Desktop, Mobile and Web Developer. 6 years of experience. Creative solutions provider.

145 days and 21 hours ago.

Reply

I am on the phone with technical support because I am unable to open the calculator. It keeps opening up in Visual Studios 2005. I am also going to give you a Bonus. I appreciate your help.

Posted by Rafael Martins 145 days and 21 hours ago.

Answer

You need to open the HTML page to show the calculator.

Here is the files again: MortgageCalculator.zip

Hope this helps.

Posted by Rafael Martins 145 days and 21 hours ago.

Answer

Oh, please don't forget to extract ALL files to a folder BEFORE you open the HTML page, MortgageCalculator.html

145 days and 21 hours ago.

Reply

I need to have have an actual hierarchy. I could not post the actual example which was a hierarchy chart for pets. I need a chart for something different. I did I put in a folder and was able to see each file but cannot open them. I think something must be wrong with my computer I dont know.

Posted by Rafael Martins 145 days and 21 hours ago.

Info Request

So do you need a new hierarchy? Would you like to suggest one?
What do you see when you open the HTML page? An empty page?

145 days and 21 hours ago.

Reply

When I open the HTML the page is empty with and error that says Click for details. How about a Bicycle or a computer for a hierachy I don't know what ever you select. I accepted your answer with a bonus. Thank you very much!!!

Posted by Rafael Martins 145 days and 21 hours ago.

Info Request

Ok, what are the details?
I am creating a computer hierarchy for you. Please wait a few minutes.

Posted by Rafael Martins 145 days and 20 hours ago.

Answer

Here you go: ComputerHierarchy.java

Hope this helps.

Regards,
XXXXXX XXXXXXX.

145 days and 17 hours ago.

Reply

When I open the HTML the page is empty with and error that says Click for details.

Posted by Rafael Martins 145 days and 12 hours ago.

Info Request

Ok, so after you click on that message, another window pops up. What is the message now?

145 days and 10 hours ago.

Reply

When I open up the HTML the page it is empty with an error page that says "X errorClick for details". It says the application failed to run.

There was an error while executing the application. Click "details" for more information.

JAVA CONSOLE


load: class MortgageCalculatorApplet.class not found.
java.lang.ClassNotFoundException: MortgageCalculatorApplet.class
     at sun.plugin2.applet.Applet2ClassLoader.findClass(Unknown Source)
     at java.lang.ClassLoader.loadClass(Unknown Source)
     at java.lang.ClassLoader.loadClass(Unknown Source)
     at sun.plugin2.applet.Plugin2ClassLoader.loadCode(Unknown Source)
     at sun.plugin2.applet.Plugin2Manager.createApplet(Unknown Source)
     at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
     at java.lang.Thread.run(Unknown Source)
Caused by: java.io.FileNotFoundException: C:\Users\JESUS\AppData\Local\Temp\Temp1_MortgageCalculator.zip\MortgageCalculatorApplet\class.class (The system cannot find the path specified)
     at java.io.FileInputStream.open(Native Method)
     at java.io.FileInputStream.<init>(Unknown Source)
     at java.io.FileInputStream.<init>(Unknown Source)
     at sun.net.www.protocol.file.FileURLConnection.connect(Unknown Source)
     at sun.net.www.protocol.file.FileURLConnection.getInputStream(Unknown Source)
     at sun.plugin2.applet.Applet2ClassLoader.getBytes(Unknown Source)
     at sun.plugin2.applet.Applet2ClassLoader.access$000(Unknown Source)
     at sun.plugin2.applet.Applet2ClassLoader$1.run(Unknown Source)
     at java.security.AccessController.doPrivileged(Native Method)
     ... 7 more
Exception: java.lang.ClassNotFoundException: MortgageCalculatorApplet.class

Posted by Rafael Martins 145 days and 8 hours ago.

Answer

Hi, the problem is very simple to solve.... I told you before:

"Oh, please don't forget to extract ALL files to a folder BEFORE you open the HTML page, MortgageCalculator.html"

If you just double click the ZIP file and then double click on the HTML page, your ZIP program (Winrar, Winzip, whatever) will extract just the HTML page to a temporary folder, as you can see here:

Caused by: java.io.FileNotFoundException: C:\Users\JESUS\AppData\Local\Temp\Temp1_MortgageCalculator.zip

To see the applet running, you need two files: MortgageCalculator.html AND MortgageCalculatorApplet.class

You really need to extract those files before you open up the HTML page... Please follow these steps:

1. Create a new folder in the root directory (C:\)
2. Copy this file into your new folder: http://ww2.justanswer.com/uploads/fael/2009-06-30_013230_MortgageCalculator.zip
3. Double-click on the ZIP file, and select all files (hold CTRL and then press A)
4. Copy the selected files (hold CTRL and then press C)
5. Go back to the parent folder (you can press BACKSPACE)
6. Paste the files (hold CTRL and press V)
7. Open up the HTML page again.

Can you see the applet now? Let me know.

Regards,
XXXXXX XXXXXXX.

Edited by Rafael Martins on 6/30/2009 at 2:45 PM

144 days and 21 hours ago.

Reply

Thank you so much. You have been a great help. I don't know what I was thinking last night I had the worst headache. Believe me I will be utilizing your services again. I have another question out there for Raj but he had not replied. I don;t know how I could give that question to you so that I can't gget finished. Great work!!!!!

Posted by Rafael Martins 144 days and 21 hours ago.

Info Request

You're welcome and it was a pleasure working with you. RAJ is online now, so you can ask him if he will help you out with the other question...

Kind regards,
XXXXXX XXXXXXX.

144 days and 21 hours ago.

Reply

In order for me to see the Computer ComputerHierarchy.java
do I need to do that one the same way?

Posted by Rafael Martins 144 days and 21 hours ago.

Answer

Yes, you need to extract the file ComputerHierarchy.java into a folder, for example C:\JAVA.

Now take a look at this screenshot:
graphic
View Full Image


Hope this helps.

Regards,
XXXXXX XXXXXXX.

144 days and 20 hours ago.

Reply

Rafael, I need an actual 3 level hirerachy chart similar to this

Java programmers can use class hierarchies for the purposes of inheritance. For example, given a Tree class, we could define Conifer and Deciduous sub classes that inherit from the parent Tree class as you can see here:




                             Tree
                        double height;
                        int numBranches;
                   public Tree cutdown ();
                   public void water ();


   Deciduous                                 Confier
int numLeaves;                            int numNeedles;
String leafColor;                           pinecone () cones;

public void setSeason (String Season);   public Pinecone getCone();

It is a 3 level chat I could not draw the lines in the example. This is what is needed.

Posted by Rafael Martins 144 days and 20 hours ago.

Answer

If Deciduous and Confier extends Tree, then this is a 2 level chart... I sent you a program with 3 levels: Machine, Computer and Laptop. What's your text book?

144 days and 20 hours ago.

Reply

Java How to program is the name of the text book. But what I sent you is what he wants the chart to look like. I apologize. I am very new at programming in java. So what type of code would I need for the example.             
                  Machine

Computer                          Laptop



I really don't want to wear you out with this, because I truly apprecite your service.

Posted by Rafael Martins 144 days and 20 hours ago.

Info Request

Hold on a few minutes...

144 days and 20 hours ago.

Reply

o.k

Posted by Rafael Martins 144 days and 19 hours ago.

Answer

Here you go: ComputerHierarchy.java

Now we have this structure:
  • Machine - top class
  • Computer - extends Machine
  • Laptop - extends Machine

Output:

=== MACHINE ===
Name: ATM
ATM is working...

=== COMPUTER ===
PC Dell I545 is turned on.
Name: PC Dell I545
Is turned on: true
PC Dell I545 is working...
PC Dell I545 turned off.
PC Dell I545 cannot work because it's turned off.

=== LAPTOP ===
Name: DELL LATITUDE D531
Number of batteries: 1
Screen size: 17.0"
DELL LATITUDE D531 is working...


Is that what you need?

144 days and 19 hours ago.

Reply

Should it have public or private classes, int or strings etc. Sort of like the example. What gets us to this output what type of code.

For this learning event, you should develop a similar class hierarchy for Pets. You can have whatever subclasses you think would be useful, but your hierarchy should have at least three levels (the top class, Pet, counts as the first level). Include variables and methods (at least one of each) for each class you design, as in the above example.

Posted by Rafael Martins 144 days and 19 hours ago.

Answer

It's just a sample. You don't need to create something exactly like that... the main purpose of this assignment is show you HIERARCHY. Check it out:

"Java programmers can use class hierarchies for the purposes of inheritance."

144 days and 19 hours ago.

Reply

o.k. thank you for the clarity. So I just need to use the out put that you provided?

Posted by Rafael Martins 144 days and 19 hours ago.

Answer

No, the output doesn't show any class hierarchy! It's to demonstrate that the classes are working fine... You must use the source code (ComputerHierarchy.java) in order to show the class hierarchies...

144 days and 19 hours ago.

Reply

I cannot open the source code file to even see what it looks like. Every time I try to open, it it tries opening up in Visual studios 2005 not java. Can I just get the source code and run it on my machine.

Posted by Rafael Martins 144 days and 19 hours ago.

Answer

Code:

class Machine {
    String name;

    void work() {
        System.out.println(name + " is working...");
    }

    void printInfo() {
        System.out.println("Name: " + name);
    }
}

class Computer extends Machine {
    int diskSizeInGB;
    private boolean isTurnedOn;

    void turnOn() {
        if (isTurnedOn) {
            System.out.println(name + " was already turned on.");
        } else {
            isTurnedOn = true;
            System.out.println(name + " is turned on.");
        }
    }

    void turnOff() {
        if (isTurnedOn) {
            isTurnedOn = false;
            System.out.println(name + " turned off.");
        } else {
            System.out.println(name + " was already turned off.");
        }
    }

    void work() {
        if (isTurnedOn) {
            super.work();
        } else {
            System.out.println(name + " cannot work because it's turned off.");
        }
    }

    void printInfo() {
        super.printInfo();
        System.out.println("Is turned on: " + isTurnedOn);
    }
}

class Laptop extends Machine {
    int numberOfBatteries;
    double screenSizeInInches;

    void printInfo() {
        super.printInfo();
        System.out.println("Number of batteries: " + numberOfBatteries);
        System.out.println("Screen size: " + screenSizeInInches + "\"");
    }
}

public class ComputerHierarchy {
    public static void main(String[] args) {
        System.out.println("=== MACHINE ===");
        Machine machine = new Machine();
        machine.name = "ATM";
        machine.printInfo();
        machine.work();

        System.out.println("\n=== COMPUTER ===");
        Computer computer = new Computer();
        computer.name = "PC Dell I545";
        computer.diskSizeInGB = 320;
        computer.turnOn();
        computer.printInfo();
        computer.work();
        computer.turnOff();
        computer.work();

        System.out.println("\n=== LAPTOP ===");
        Laptop laptop = new Laptop();
        laptop.name = "DELL LATITUDE D531";
        laptop.numberOfBatteries = 1;
        laptop.screenSizeInInches = 17;
        laptop.printInfo();
        laptop.work();
    }
}



Do you use an IDE ?

144 days and 19 hours ago.

Reply

Yes i use NetBean. But I am going to us DOS

Posted by Rafael Martins 144 days and 19 hours ago.

Answer

Well then you should use a simple text editor, like TextPad or Notepad++... open the text editor and go to File, Open, and then select your java source file... But I strongly advise you to use an IDE.

Here's a good one: JGrasp

It's very very simple to use... check it out:

graphic
View Full Image


Hope this helps.

Regards,
XXXXXX XXXXXXX.

Edited by Rafael Martins on 7/1/2009 at 4:10 AM

144 days and 18 hours ago.

Reply

I was going to use Notepad and run your code.

Did you read this question as I was to use pet; if so I am sick about it.

1.Java programmers can use class hierarchies for the purposes of inheritance. For example, given a Tree class, we could define Conifer and Deciduous sub classes that inherit from the parent Tree class as you can see here:

For this learning event, you should develop a similar class hierarchy for Pets. You can have whatever subclasses you think would be useful, but your hierarchy should have at least three levels (the top class, Pet, counts as the first level). Include variables and methods (at least one of each) for each class you design, as in the above example.

143 days and 22 hours ago.

Reply

Rafael,

We had a chat with the professor and I need the chart to look like the example I provided just for pets. No code.. I will pay you extra if you would like. i do apologize for the inconvience. I don't want to take all of your time.
       
                             Tree
                        double height;
                        int numBranches;
                     public Tree cutdown ();
                     public void water ();


   Deciduous                                 Confier
int numLeaves;                            int numNeedles;
String leafColor;                           pinecone () cones;

public void setSeason (String Season);   public Pinecone getCone();

Posted by Rafael Martins 143 days and 21 hours ago.

Info Request

What chart do you need? Pets or Machine/Computer/Laptop?

143 days and 21 hours ago.

Reply

Pets. This is what he said. He was not clear ans other students were concerned about what he wanted.

Greetings Everyone,

We are not working with Java programming in this Unit. We have to design a UML class diagram for Pet class hierarchy. Please note that assignment is seeking three levels in class hierarchy.

We are looking for methods (relevant to particular class -- Dog may bark() but Snake may hiss()) that capture the behavior of its instances. Accessor methods -- getter or setter -- or constructor methods in the classes do not count towards the requirement.

The generalized behavior must be captured in parent class, where as specialized behavior must be captured in child or sub class.

Similarly for variables or attributes. We are seeking at 'least' two instance variables and two methods in each class of the class hierarchy.

Please let me know if there are questions.



Posted by Rafael Martins 143 days and 21 hours ago.

Info Request

Ok, I will send you the Class Diagram soon. Check back in 30-45 minutes.

143 days and 21 hours ago.

Reply

o.k. Thank you so much!!!!!!!!!!!!!!!!!!!!!!!!!

Posted by Rafael Martins 143 days and 20 hours ago.

Answer

Here you go:

graphic
View Full Image


Hope this helps.

I have to leave now, so I will check your reply tomorrow.

Thanks.

143 days and 19 hours ago.

Reply

This is exactly what I need. Thank you so much!!!!! How mush more do I owe you?

AGAIN WITH A GREAT THANKS!!!!!!!!!!!!!!

Posted by Rafael Martins 143 days and 12 hours ago.

Answer

Hey I am glad you like it. And guess what? You do not have to pay anything... Cool

Take care.

Edited by Rafael Martins on 7/2/2009 at 10:27 AM

143 days and 1 hours ago.

Reply

You are wonderful!!!!!!!!

Posted by Rafael Martins 142 days and 22 hours ago.

Info Request

Wink

+
Read More

Related Programming Questions

  • I have just done a multiple retail store physical inventory.
  • Need help writing a algorithm using pseudocode. Assume you
  • 1. Create a new Project file. 2. Enter the WBS data (ta...
  • Using Flash 9C3 professional. I have created an executable
  • I'm using Micrsoft Office Execl to make spreadsheets. I need
  • I am just starting out with PHP. Can I do something like th...
  • JAVA - GUI Prog7.java Write a program that tests the
  • I'm trying to build a page in Dreamweaver where the user can



Disclaimer: Information in questions, answers, and other posts on this site ("Posts") comes from individual users, not JustAnswer; JustAnswer is not responsible for Posts. Posts are for general information, are not intended to substitute for informed professional advice (medical, legal, veterinary, financial, etc.), or to establish a professional-client relationship. The site and services are provided "as is" with no warranty or representations by JustAnswer regarding the qualifications of Experts. To see what credentials have been verified by a third-party service, please click on the "Verified" symbol in some Experts' profiles. JustAnswer is not intended or designed for EMERGENCY questions which should be directed immediately by telephone or in-person to qualified professionals.
Question List | Become an Expert | Terms of Service | Security & Privacy | About Us
© 2003-2009 JustAnswer Corp.