Desperaqtly need help

Object-Oriented Programming Fundamentals
Semester 1, 2008
Assignment 2
Due Date: 9.30am, 19th May 2008
Delays caused by computer downtime cannot be accepted as a valid reason for a late submission without penalty. Students must plan their work to allow for both scheduled and unscheduled downtime.
Submission Details
You must submit an electronic version of your assignment on latcs6 using the submit command. Ensure you submit all required files. Files should be submitted one file at a time. For example, the file GamesDriver.java would be submitted with the command:
> submit OOF GamesDriver.java
This is an individual assignment. You are not permitted to work as a group when writing this assignment.
Copying, Plagiarism: Plagiarism is the submission of somebody else?s work in a manner that gives the impression that the work is your own. The Department of Computer Science and Computer Engineering treats plagiarism very seriously. When it is detected, penalties are strictly imposed. Refer to the unit guide for further information and strategies you can employ to avoid a charge of academic misconduct. All reports and source code will be electronically checked for plagiarism.
Return of Assignment: You will receive a marking sheet with a mark break down within three weeks of submission.
Please Note: While you are free to develop the code for this assignment on any operating system, your solution must run on the latcs6 system.
Assignment Objectives
This assignment requires analysis, design, implementation and testing of a problem with four (plus one bonus) distinct tasks. Its general aims are:
?     to design programs that conform to given specifications
?     to implement programs in Java
?     to practise combining multiple classes and methods into a whole program.
Problem Description
Computer games are one of the most popular uses of home computers. The development of popular commercial computer games involves large programming projects that take many months, if not years, to complete and employ many programmers. This assignment involves developing several simple games within the context of a text-based menu system to demonstrate a number of programming principles used in large games as well as in many other types of software.
Task 1
In Task 1, you are simply required to set up the framework of the program. In a launcher class called GamesDriver, first create a method that displays the following menu to the screen (exactly as shown).
GAMES MENU
E) Elimination
C) Calculator 21
G) Crag
Y) Yacht
Q) Quit
Please select a game:
Next, create a method that repeatedly displays this menu, and prompts the user for a choice. For each of the choices, a separate method should be called. If the user chooses ?Q?, the program should terminate. If the user inputs any invalid choice, the method should notify the user that it was an invalid choice and display the menu again. The input should not be case sensitive; e.g. to go to the Yacht menu the user can enter either uppercase ?Y? or lowercase ?y?.
For each choice ?E?, ?C?, ?G? and ?Y?, the program must call an appropriate method. Each of these methods will allow the user to play the appropriate game. After the game is completed, it will then ask the user if they wish to play the game again:
Would you like to play a new game?
[N]ew game
[Q]uit
At the moment, the games have not been written and therefore these methods should display a message to the user that the game is not implemented. As you complete Tasks 2 to 5, update the methods to call the appropriate games. Note that in the game of Elimination the player either wins or loses. In the case that they lose the game, they should be asked if they want to replay the same game:
Would you like to play the game again or play a new game?
[P]lay again
[N]ew game
[Q]uit
If they won the game, then the normal choice should be displayed.
As with the main menu, the selections in all cases must be case insensitive. In all cases if the user selects Q or q they should be taken back to the main menu so that they can play a different type of game.
Note that your code should be neat, correctly indented and documented.
Task 2 ? Elimination
In this task you are required to write the program code that allows a player to play a game of Elimination [1].
In the game of Elimination the computer generates a random 5 digit integer. It is the player?s goal to reduce this number to 0 in four steps. The player is allowed to use the subtraction and division operators and 2 digit integers to complete the task.
An example run through the game follows (user input is indicated in bold type):
Playing Elimination ? starting value is 20580
- 80
- 80 = 20500
/ 50
/ 50 = 410
/41
/ 41 = 10
-10
- 10 = 0
You Win!
The program must generate the original five digit number. It then takes input from the user for each of the four rounds. After each correct input from the player, the program shows the player?s choice and calculates and displays the new subtotal. If the user succeeds in reducing the random number to 0 then the program displays that they have won, if not, then it displays that they have lost. As discussed in Task 1, in the case that the user loses they must be given the choice of playing the same game again (that is, with the same starting value).
The program must check numerous things in the process of playing Elimination:
?     The randomly generated number must have 5 digits and no leading zeroes (that is the number could not be 01234).
?     The user?s input must consist of two parts: an operator and a two digit number. The program must check that the first part of the input is a subtraction or division operator and that the integer is indeed a two digit number (in this case leading zeroes are allowed, the number may be between 0 and 99 inclusive). The user?s input may or may not have white space between the operator and the number.
?     In the case of a division operator being input, the program must check that the current value of the number divided by the specified two-digit number results in a whole number. For example, in the example above when dividing by 41, there is no remainder. If the player had entered /40 instead, there would be a remainder from that division and it would not be allowed.
?     In any case of error, the line of user input should be ignored and the player must enter their selection for the step again.
Tips:      Math.random() is a useful method for generating random numbers.
The modulus operator (%) is useful for checking whether a number is divisible by another number.
Note that your code should be neat, correctly indented and documented.
Task 3 ? Calculator 21
In this task you are required to write the program code that allows a player to play a game of Calculator 21 [1].
The game of Calculator 21 uses two dice. (Dice are small cubes with different values on each of their 6 sides. Usually these values are the numbers from 1 to 6). In most dice games, a die is thrown and the value landing face up is used in the game. Write a Die class that represents a single die (singular of dice). Each Die object is constructed with an initial face value. Code using the die class should be able to retrieve the current value showing for a die, and using another method re-throw the die.
In Calculator 21, the user has two dice which they throw. In each round the two dice are thrown and the user must use the addition and subtraction operators and one of the two current face values to try to change a running total (which starts at 0) until it becomes 21. The aim of the game is to reach 21 in the least amount of throws.
An example run through the game follows (user input is indicated in bold type):
Playing Calculator 21
You threw 4 and 5
+ 5
+ 5 = 5
You threw 1 and 5
+5
+ 5 = 10
You threw 5 and 1
+5
+ 5 = 15
You threw 1 and 2
+ 2
+ 2 = 17
You threw 3 and 6
+6
+ 6 = 23
You threw 4 and 1
-1
- 1 = 22
You threw 1 and 5
- 1
- 1 = 21
You Win!
It took you 7 moves
The program must generate and display the dice values in each round. It then takes input from the user for each of the rounds. After each correct input from the player, the program shows the players choice and calculates and displays the new subtotal. When the user succeeds in reaching 21 then the program displays that they have won and the number of moves that it took them.
The Program must check numerous things in the process of playing Calculator 21:
?     The user?s input must consist of two parts: an operator and an integer. The program must check that the first part of the input is an addition or subtraction operator and that the integer entered is indeed one of the two dice values thrown in that round. The user?s input may or may not have white space between the operator and the number.
?     In any case of error, the line of user input should be ignored and the player must enter their selection for the step again.
Note that your code should be neat, correctly indented and documented.
Task 4 ? Crag
In this task you are required to write a class called CragGame that allows a player to play a game of Crag [1].
The game of Crag uses three dice (reuse your Die class from Task 2). There are 13 rounds in crag and the aim is to score the highest possible total value for the 13 rounds. The player has 13 different ways of calculating a round?s score but they can only use each technique once in each game. Each technique therefore will be used exactly once in each game.
In each round the player throws three dice. They can then choose to throw any of the three dice one more time. Once they have the final face values for that round they select which technique will be used to score that round. The possible techniques are as follows:
1.     Ones (add up all the face values displaying one ? maximum is 3)
2.     Twos (add up all the face values displaying two ? maximum is 6)
3.     Threes (add up all the face values displaying three ? maximum is 9)
4.     Fours (add up all the face values displaying four ? maximum is 12)
5.     Fives (add up all the face values displaying five ? maximum is 15)
6.     Sixes (add up all the face values displaying six ? maximum is 18)
7.     Odd straight (If the face values are 1, 3 and 5 score 20, otherwise score 0)
8.     Even straight (If the face values are 2, 4 and 6 score 20, otherwise score 0)
9.     Low straight (If the face values are 1, 2 and 3 score 20, otherwise score 0)
10.     High straight (If the face values are 4, 5 and 6 score 20, otherwise score 0)
11.     Three of a kind (If the face values all show the same number score 25, otherwise score 0)
12.     Thirteen (If the sum of the face values is thirteen and all the face values are different score 26, otherwise score 0)
13.     Crag (If the sum of the face values is thirteen and two of the face values are the same score 50, otherwise score 0)
A partial example run through the game follows (user input is indicated in bold type):
Round: 1
1: Ones -
2: Twos -
3: Threes -
4: Fours -
5: Fives -
6: Sixes -
7: Odd Straight -
8: Even Straight -
9: Low Straight -
10: High Straight -
11: Three of a kind -
12: Thirteen -
13: Crag -
Total: 0
You have thrown:
Die 1: 6
Die 2: 3
Die 3: 4
Do you want to throw die 1 again [Y/N]: n
Do you want to throw die 2 again [Y/N]: n
Do you want to throw die 3 again [Y/N]: n
The dice show:
Die 1: 6
Die 2: 3
Die 3: 4
Record this against which entry [1-13]:
1: Ones -
2: Twos -
3: Threes -
4: Fours -
5: Fives -
6: Sixes -
7: Odd Straight -
8: Even Straight -
9: Low Straight -
10: High Straight -
11: Three of a kind -
12: Thirteen -
13: Crag -
Total: 0
12
Round: 2
1: Ones -
2: Twos -
3: Threes -
4: Fours -
5: Fives -
6: Sixes -
7: Odd Straight -
8: Even Straight -
9: Low Straight -
10: High Straight -
11: Three of a kind -
12: Thirteen 26
13: Crag -
Total: 26
You have thrown:
Die 1: 4
Die 2: 5
Die 3: 3
Do you want to throw die 1 again [Y/N]: y
Do you want to throw die 2 again [Y/N]: n
Do you want to throw die 3 again [Y/N]: n
The dice show:
Die 1: 4
Die 2: 5
Die 3: 3
Record this against which entry [1-13]:
1: Ones -
2: Twos -
3: Threes -
4: Fours -
5: Fives -
6: Sixes -
7: Odd Straight -
8: Even Straight -
9: Low Straight -
10: High Straight -
11: Three of a kind -
12: Thirteen 26
13: Crag -
Total: 26
3
Round: 3
1: Ones -
2: Twos -
3: Threes 3
4: Fours -
5: Fives -
6: Sixes -
7: Odd Straight -
8: Even Straight -
9: Low Straight -
10: High Straight -
11: Three of a kind -
12: Thirteen 26
13: Crag -
Total: 29
You have thrown:
Die 1: 2
Die 2: 5
Die 3: 6
Do you want to throw die 1 again [Y/N]: Y
Do you want to throw die 2 again [Y/N]: y
Do you want to throw die 3 again [Y/N]: N
The dice show:
Die 1: 6
Die 2: 2
Die 3: 6
Record this against which entry [1-13]:
1: Ones -
2: Twos -
3: Threes 3
4: Fours -
5: Fives -
6: Sixes -
7: Odd Straight -
8: Even Straight -
9: Low Straight -
10: High Straight -
11: Three of a kind -
12: Thirteen 26
13: Crag -
Total: 29
6
Record this against which entry [1-13]:
1: Ones 1
2: Twos 4
3: Threes 3
4: Fours 8
5: Fives 5
6: Sixes 12
7: Odd Straight 0
8: Even Straight 20
9: Low Straight 0
10: High Straight 0
11: Three of a kind 0
12: Thirteen 26
13: Crag 0
Total: 79
11
The total score is 79
The program must generate and display the dice values in each round. When you implement the Crag game use separate variables for each of the three dice. It then takes input from the user for each of the rounds. After each correct input from the player, the program shows the updated score card. Each round is labelled with its appropriate value.
The program must do and check numerous things in the process of playing Crag:
?     The user makes two types of input in this game. They must enter a character ?y? or ?n? to determine whether to throw each dice again. After the face values for the dice are finalised for a round they must also select which scoring technique to use for the round. The program must check that only a ?y? or ?n? are selected when choosing to throw the dice again. The program must also check whether or not the scoring technique they select is allowed. That is that the technique number is between 1 and 13 and that the selected scoring technique has not been used already during the game.
?     Calculating the score with each technique may be quite lengthy. Breaking the code down into small helper methods will help to manage the tasks.
Note that your code should be neat, correctly indented and documented.
Bonus Task 5 ? Yacht
(This task is not required. It is a bonus question as you will need to read ahead to cover arrays. It is possible to achieve 100% on the assignment without attempting this task. Bonus marks can carry over into any non-exam component, though it is not possible to achieve more than 100% in the total of the non-exam components.)
In this task you are required to write a class called YachtGame that allows a player to play a game of Yacht [1].
The game of Yacht is similar to Crag but uses five dice (reuse your Die class from Task 2). There are 12 rounds in Yacht and the aim is to score the highest possible total value for the 12 rounds. The player has 12 different ways of calculating a round?s score but they can only use each technique once in each game. Each technique therefore will be used exactly once in each game.
In each round the player throws five dice. They can then choose to throw any of the five dice two more times. Once they have the final face values for that round they select which technique will be used to score that round. The possible techniques are as follows:
1.     Ones (add up all the face values displaying one ? maximum is 5)
2.     Twos (add up all the face values displaying two ? maximum is 10)
3.     Threes (add up all the face values displaying three ? maximum is 15)
4.     Fours (add up all the face values displaying four ? maximum is 20)
5.     Fives (add up all the face values displaying five ? maximum is 25)
6.     Sixes (add up all the face values displaying six ? maximum is 30)
7.     Little straight (If the face values are 1, 2, 3, 4 and 5 score 15, otherwise score 0)
8.     Big straight (If the face values are 2, 3, 4, 5 and 6 score 20, otherwise score 0)
9.     Full house (If three of the face show the same number and the other two face values show the same number add up all the face values, otherwise score 0 (eg. 3, 3, 2, 3, 2 would score 13))
10.     Four of a kind (If four of the dice show the same number, add up the four face values of the similar dice, otherwise score 0 (e.g. 2, 2, 2, 3, 2 would score 8))
11.     Choice (Any face values are allowed, add up the face values)
12.     Yacht (If all five of the dice show the same number score 50,, otherwise score 0)
The first round from an example game follows (user input is indicated in bold type):
Round: 1
1: Ones -
2: Twos -
3: Threes -
4: Fours -
5: Fives -
6: Sixes -
7: Little Straight -
8: Big Straight -
9: Full House -
10: Four of a Kind -
11: Choice -
12: Yacht -
Total: 0
You have thrown:
Die 1: 2
Die 2: 1
Die 3: 4
Die 4: 2
Die 5: 2
Do you want to throw die 1 again [Y/N]: n
Do you want to throw die 2 again [Y/N]: y
Do you want to throw die 3 again [Y/N]: y
Do you want to throw die 4 again [Y/N]: n
Do you want to throw die 5 again [Y/N]: n
You have thrown:
Die 1: 2
Die 2: 4
Die 3: 6
Die 4: 2
Die 5: 2
Do you want to throw die 1 again [Y/N]: n
Do you want to throw die 2 again [Y/N]: y
Do you want to throw die 3 again [Y/N]: n
Do you want to throw die 4 again [Y/N]: n
Do you want to throw die 5 again [Y/N]: n
The dice show:
Die 1: 2
Die 2: 3
Die 3: 6
Die 4: 2
Die 5: 2
Record this against which entry [1-12]:
1: Ones -
2: Twos -
3: Threes -
4: Fours -
5: Fives -
6: Sixes -
7: Little Straight -
8: Big Straight -
9: Full House -
10: Four of a Kind -
11: Choice -
12: Yacht -
Total: 0
2
The program must generate and display the dice values in each round. When you implement the Yacht game you must use an array to store the five dice. It then takes input from the user for each of the rounds. After each correct input from the player, the program shows the updated score card. Each round is labelled with its appropriate value.
The program must do and check numerous things in the process of playing Yacht:
?     The user makes two types of input in this game. They must enter a character ?y? or ?n? to determine whether to throw each dice again. After the face values for the dice are finalised for a round they must also select which scoring technique to use for the round. The program must check that only a ?y? or ?n? are selected when choosing to throw the dice again. The program must also check whether or not the scoring technique they select is allowed. That is that the technique number is between 1 and 12 and that the selected scoring technique has not been used already during the game.
?     Calculating the score with each technique may be quite lengthy. Breaking the code down into small helper methods will help to manage the tasks.
Note that your code should be neat, correctly indented and documented.
Marking Scheme Overview
You must demonstrate your program to a marker during your lab class in Week 13 of semester. This is compulsory, and you will receive 0 for the implementation if you do not demonstrate your program.
Implementation (Execution of code) 70% (Do all parts of the programs execute correctly? Note your programs must compile and run to carry out this implementation marking. )
Code Design and Structure 20% (Does the program conform to specifications? Does the program solve the problem in a well-designed manner? Does the program follow good programming practices?)
Layout and Documentation of Code 10% (Does the indentation of the code follow the Coding Standard? Do the identifiers conform to this standard? Does the code contain appropriate comments?)
Task 5 bonus marks 20% (Does task 5 perform correctly?)
References:
Gyles Brandeth, Everyman?s Indoor Games, Dent Publishing, London, 1981.
Walter Savitch, Java: An introduction to Computer Science and Programming (Third Edition), Pearson Education, 2004.
This assignment constitutes 15% of your overall mark in CSE1OOF.
this is a programm for my assignment i am totally unaware of the assignment as i am really in deep trouble can anybody please help me to complete my assignment it will really help me to pass in my finals please help me

JoachimSauer wrote:
I don't want to give the impression that I find the OPs behaviour to be ok, but did anyone (google for and) look at the Class he takes?
[Look here|http://udb-iasprd.latrobe.edu.au/udb1subprd_public/publicview$p_subjects.queryview?P_SUBJECT_CODE=CSE1OOF&P_SUBJECT_OFFER_YEAR=2008&Z_CHK=54500&P_SUBJECT_CODE_1=CSE1OOF&P_SUBJECT_NAME=&P_SEMESTER=&P_YEAR_LEVEL=&P_FACULTY=&P_CAMPUS=&P_DISCIPLINE_CODE=&P_SUBJECT_OFFER_YEAR_1=2008&Z_START=&Z_ACTION=NEXT]
Unit Description: Students are introduced to computers, object-oriented concepts and programming using Java. Students also gain a working
knowledge of the Unix operating system. Topics covered include classes and objects, primitive data types, flow of control, methods, basic
input/output and arrays. Software engineering principles are introduced, including coding standards, class design and testing strategiesand
Class Requirements: two 1-hour lectures, one 2-hour laboratory class and one 1-hour practice class per week for 12 weeksSo they have 4 hours-per-week for 12 weeks to learn:
* Introduction to computers
* object-oriented concepts
* programming using Java
* working knowledge of UNIX
* sofware engineering principles
* coding standards
* class design
* testing strategies
And I thought Java-in-21-Days was bad ...As this looks pretty familiar with a standard university course/class Im gonna take a shoot at guessing it is.
That means if it is, that those 4hours a week is nothing compared to what the student taking the course is really ment to be putting down into the course. I.e. those 4hours are just the hours covered by teachers assistanse and guidance, the rest of the work is to be done by the student by him/her self, just at like any other university course/class(atleast of those Ive taken so far).
We(at my univ) are expected to put down about 20hours a week per course reading two courses at the time, which makes an full 40 hour a week. What I mean is that besides those 4 hours a week the student is supposed to be putting down atleast another 16hours of work a week. This makes such an course totally possible to make! BUT! deffenetly impossible to just "fix" when theres like 2 weeks left of the course like in this case..
Summary; not 4 hours a week, 20hours+ a week!
edit: sry for being unclear hope u get the point..
Edited by: prigas on May 5, 2008 2:34 PM

Similar Messages

  • Need help to develop Pythagoras theorem-

    Hi i need help to develop proofs 2,3,4
    of pythagoras theorems in java as demonstrations
    These are applets can anyone help me with it or give me an idea of how to go about developing it -
    the site is the following
    http://www.uni-koeln.de/ew-fak/Mathe/Projekte/VisuPro/pythagoras/pythagoras.html
    then double click on the screen to make it start

    Pardon my ASCII art, but I've always liked the following, simple, geometric proof:
         a                   b
    ---------------------------------------+
    |       |                                |
    a|   I   |              II                |
    |       |                                |
    ---------------------------------------+
    |       |                                |
    |       |                                |
    |       |                                |
    |       |                                |
    |       |                                |
    b|  IV   |              III               |
    |       |                                |
    |       |                                |
    |       |                                |
    |       |                                |
    |       |                                |
    |       |                                |
    ---------------------------------------+It almost goes without saying that I+II+III+IV == (a+b)^2, and II == IV == a*b,
    I == a*a and III == b*b, showing that (a+b)^2 == a^2+a*b+a*b+b^2.
    I hope the following sketch makes sense, stand back, ASCII art alert again:     a                   b
    ---------------------------------------+
    |               .             VI         |
    |     .                 .                |a
    | V                               .      |
    |                                        +
    |                                        |
    |   .                                    |
    b|                                     .  |
    |                                        |
    |                  IX                    |
    | .                                      |
    |                                    .   |b
    |                                        |
    +                                        |
    |      .                                 |
    a|               .                  . VII |
    |  VIII                   .              |
    ---------------------------------------+
                     a                    bThe total area equals (a+b)^2 again and equals the sum of the smaller areas:
    (a+b)^2 == V+VI+VII+VIII+IX. Let area IX be c^2 for whatever c may be.
    V+VII == VI+VIII == a*b, so a^2+b^2+2*ab= c^2+2*a*b; IOW a^2+b^2 == c^2
    Given this fundamental result, the others can easily be derived from this one,
    or did I answer a question you didn't ask?
    kind regards,
    Jos

  • I need help to find and open a job app that I exported, was able to fill out and sign and saved and now can't open it? What did I do wrong?

    I need help to find and open a job app that I exported, was able to fill out and sign and saved and now can't open it? What did I do wrong?

    What file format did you export it to?

  • Need help to open audios attached in a PDF file

    Hello
    I just need help. I have ordered a reviewer online that has audios and texts in a pdf file. I was told to download the latest adobe reader on my computer. I have done the same thing on my ipad mini. I am not so technical with regards to these things. Therefore I need help. I can access the audios on my computer but not on my ipad.
    I want to listen to audios with scripts or texts on them so i can listen to them when i am on the go. I was also informed that these files should work in any device. How come the audios doesnt work on my ipad.
    Please help me on what to do.
    Thanks

    Audio and video are not currently support on Adobe Reader. :-<
    You need to buy a PDF reader that supports them. My suggestion is PDF Expert from Readdle ($US 9.99)

  • Need help to open and look for file by name

    Hi,
            Im needing help to open a folder and look for a file (.txt) on this directory by his name ... The user ll type the partial name of file , and i need look for this file on the folder , and delete it ....
    How can i look for the file by his name ?
    Thx =)

    Hi ,
        Sry ,, let me explain again ... I ll set the name of the files in the follow order ... Name_Serial_date_chanel.sxc ..
    The user ll type the serial that he wants delete ...
    I already figured out what i need guys .. thx for the help ^^
    I used List Directory on advanced IO , to list all .. the Name is the same for all ... then i used Name_ concateneted with Serial(typed)* .. this command serial* ll list all serials equal the typed , in my case , ll exist only one , cuz its a count this serial .Then i pass the path to the delete , and its done !
    Thx ^^

  • I need help, my ipod touch is not recognized by windows as a harddisk

    i need help, my ipod touch is not recognized by windows like a memory card or a harddisk.
    i would like to transfer the files from pc to my ipod touch without useing itunes.
    as i see theres some people here that theires ipod touch are recongnzed as a digitl camra, mine is reconzied as nothing, some help plz.
    Message was edited by: B0Om

    B0Om wrote:
    ok but i still dont understed, only my itnes recongnize my ipod, when i go to " my cumputer, it dosent show up there, not even as a digital camra
    Your Touch is working correctly. Currently, without unsupported third party hacks, the Touch has NO disc mode. It will only show up in iTunes.
    how do i put programes and games in my ipod touch
    Right now, you don't. The SDK is scheduled to be released in Feburary. Then developers will be able to write programs that will be loadable.

  • Weird error message need help..

    SO.. i havent updated my itunes in a while because i keep getting this weird message.. it comes up when im almost done installing the newest/newer versions of itunes. it says
    "the feature you are trying to use is on a network resource that is unavailable" "click ok to try again or enter an alternate path to a folder containing the installation package 'iTunes.msi' in the box below"
    now when ever i choose a file from the browse box it replies with this message "the file 'xxx' is not a valid installation package for the product iTunes. try to find the installation package iTunes.msi in a folder from which you can install iTunes."
    no idea need help thanks
    ~~~lake
    Message was edited by: DarkxFlamexCaster
    Message was edited by: DarkxFlamexCaster

    +it comes up when im almost done installing the newest/newer versions of itunes. it says+ +"the feature you are trying to use is on a network resource that is unavailable" "click ok to try again or enter an alternate path to a folder containing the installation package 'iTunes.msi' in the box below"+
    With that one, let's try the following procedure.
    First, head into your Add/Remove programs and uninstall your QuickTime. If it goes, good. If it doesn't, we'll just attend to it when we attend to iTunes.
    Next, download and install the Windows Installer CleanUp utility:
    Description of the Windows Installer CleanUp Utility
    Now launch Windows Installer CleanUp ("Start > All Programs > Windows Install Clean Up"), find any iTunes and/or QuickTime entries in the list of programs in CleanUp, select those entries, and click “remove”.
    Next, we'll manually remove any leftover iTunes or QuickTime program files:
    (1) Open Local Disk (C:) in Computer or whichever disk programs are installed on.
    (2) Open the Program Files folder.
    (3) Right-click the iTunes folder and select Delete and choose Yes when asked to confirm the deletion.
    (4) Right-click the QuickTime folder and select Delete and choose Yes when asked to confirm the deletion. (Note: This folder may have already been deleted if QuickTime was successfully removed using Add/Remove Programs earlier.)
    (5) Delete the QuickTime and QuicktimeVR files located in the C:\Windows\system32\ folder. Click Continue if Windows needs confirmation or permission to continue. (Note: These files may have already been deleted if QuickTime was successfully removed using Add/Remove Programs earlier.)
    (6) Right-click on the Recycle Bin and on the shortcut menu, click Empty Recycle Bin.
    (7) Restart your computer.
    Now try another iTunes install. Does it go through properly now?

  • I got new hard driver for my MacBook I don't have the cd but I do have flash drive that has the software I need help because when I turn on my laptop it shows me a file with question mark how can I install the software from the flash driver?

    I got new hard driver for my MacBook I don't have the cd but I do have flash drive that has the software I need help because when I turn on my laptop it shows me a file with question mark how can I install the software from the flash driver?

    Hold down the Option key while you boot your Mac. Then, it should show you a selection of devices. Click your flash drive and it will boot from that.

  • Need help adobe bridge cc output module

    I need help. I have an assignment I'm held up on completing because the adobe cc bridge does not have the output modue I need. I followed the adobe instructions page to the letter. I copied and pasted the output module folder to the adobe bridge cc extensions folder in programs/commonfiles/adobe. The only thing is the instructions then say to paste the workspace file into the workspace folder located below the bridge extensions folder. I don't have a workspaces folder there or anywhere. I even tried must making one and adding the file to it, but no go. can someone PLEASE help me with this?    I have an assignment due like now that requires the use of the output modue.thanks!

    oh,my system is windows 8.1. sorry, lol.

  • Trying to create a Invoice based on Order need help Error -5002

    the dreaded -5002 error is haunting me too! and I could not find a matching solution for this in the forum....
    I need help quickly on this. I am trying to create invoices for some orders so the Base - Target relationship is retained. The orders I pick are all Open (DocStatus   = O and the lines are all Open LineStatus = O)
    here is my code
    oInvoice.Lines.BaseEntry = 48
    oInvoice.Lines.BaseLine = 0
    oInvoice.Lines.BaseType = SAPbobsCOM.BoObjectTypes.oOrders
    oInvoice.Lines.ItemCode = "A00001"
    oInvoice.Lines.ItemDescription = "IBM Infoprint 1312"
    'adding Line
    oInvoice.Lines.Add
    oInvoice.Lines.BaseEntry = 48
    oInvoice.Lines.BaseLine = 1
    oInvoice.Lines.BaseType = SAPbobsCOM.BoObjectTypes.oOrders
    oInvoice.Lines.ItemCode = "A00002"
    oInvoice.Lines.ItemDescription = "IBM Inforprint 1222"
    'adding Line
    oInvoice.Lines.Add
    lRetCode = oInvoice.Add
    If lRetCode <> 0 Then
        gObjCompany.GetLastError lErrCode, sErrMsg
        MsgBox (lErrCode & " " & sErrMsg)
    End If

    Indika,
    Only set your base types...
    (not items & description)
    oInvoice.Lines.BaseEntry = 48
    oInvoice.Lines.BaseLine = 0
    oInvoice.Lines.BaseType = SAPbobsCOM.BoObjectTypes.oOrders
    oInvoice.Lines.ItemCode = "A00001"
    oInvoice.Lines.ItemDescription = "IBM Infoprint 1312"
    'adding Line (to fill the second item line)
    ' the 1st line item is there by default
    oInvoice.Lines.Add
    oInvoice.Lines.BaseEntry = 48
    oInvoice.Lines.BaseLine = 1
    oInvoice.Lines.BaseType = SAPbobsCOM.BoObjectTypes.oOrders
    oInvoice.Lines.ItemCode = "A00002"
    oInvoice.Lines.ItemDescription = "IBM Inforprint 1222"
    'DO NOT Add THIS line
    ' (only if you want to add a 3rd line item)
    '''oInvoice.Lines.Add -> Don't add this
    lRetCode = oInvoice.Add
    If lRetCode <> 0 Then
        gObjCompany.GetLastError lErrCode, sErrMsg
        MsgBox (lErrCode & " " & sErrMsg)
    End If
    remember to add :
    oInvoice.CardCode = "your BP"
    oInvoice.DocDueDate = Now
    oInvoiceDoc.CardCode = txtDOCBPCode.Text

  • Installation of Photoshop update 13.1.2 for creative cloud fails with error code U44M1P7 I need help

    I need help installing update 13.1.2 for Photoshop creative cloud, installation fails with error code: U44M1P7. Could someone please help?

    Sorry to bother you.
    I could find the answer after searching previous posts about this language problem.
    Had to change my language in AAM profile and then download PS CS6 again ( english version ).
    Then open the actual Photoshop and in preferences > interface you can besides the Dutch also option for English.
    restart application and Voila.
    Greetz, Jeroen

  • Stored DB Procedure - Need help

    Hi. I have a stored database package containing 2 functions. I need help with the function named ret_columns.
    If you look at the code below you will see this function has two different FOR loops. The Select statement in FOR loop that is commented out works just fine, but when I try to use the uncommented select statement in it's place the Function returns NULL (or no records). However, if I run the Select statement in plain old SQL Plus it returns the rows I need. I don't get it.
    Can anyone help me? I'm really stuck on this one.
    -- PACKAGE BODY
    CREATE OR REPLACE package body audit_table_info
    as
    function ret_tables return table_type is
    t_t table_type;
    i integer;
    begin
    i := 1;
    for rec in (select distinct table_name
    from all_triggers
                   where substr(trigger_name,1,9) = upper('tr_audit#')) loop
    t_t(i).tableA := rec.table_name;
    i := i+1;
    end loop;
    return t_t;
    end;
    function ret_columns return column_type is
    c_t column_type;
    i integer;
    begin
    i := 1;
    -- for rec in (select distinct table_name column_name
    -- from all_triggers
    --               where substr(trigger_name,1,9) = upper('tr_audit#')) loop
    for rec in (select distinct b.column_name column_name
    from all_triggers a, all_tab_columns b
                   where a.table_owner = b.owner
                        and a.table_name = b.table_name
                             and substr(a.trigger_name,1,9) = upper('tr_audit#') and rownum < 5) loop                    
    c_t(i).tableB := rec.column_name;
    i := i+1;
    end loop;
    return c_t;
    end;
    end audit_table_info;
    -- PACKAGE DEFINITION
    CREATE OR REPLACE package Audit_Table_Info as
    type table_rec is record( tableA all_tab_columns.TABLE_NAME%type);
    type table_type is table of table_rec index by binary_integer;
    function ret_tables return table_type;
    type column_rec is record( tableB all_tables.TABLE_NAME%type);
    type column_type is table of column_rec index by binary_integer;
    function ret_columns return column_type;
    end Audit_Table_Info;
    /

    It works when I do this!!! I'm so confused.
    Ok...so I did this:
    1 create table test_columns as
    2 (select b.column_name
    3 from all_triggers a,
    4 all_tab_columns b
    5 where a.table_owner = b.owner
    6 and a.table_name = b.table_name
    7 and substr(a.trigger_name,1,9) = upper('tr_audit#')
    8* and rownum < 5)
    SQL> /
    Table created.
    Then altered the Function so the Select statement refers to this table:
    function ret_columns return column_type is
    c_t column_type;
    i integer;
    begin
    i := 1;
    for rec in (select distinct column_name
    from test_columns) loop
    c_t(i).tableB := rec.column_name;
    i := i+1;
    end loop;
    return c_t;
    end;
    Again, any help would be greatly greatly appreciated!

  • Need help with Math related operations...

    I'm learning JAVA for more than 3 weeks and I really need help...
    I'm using SDK1.4 with Elixir IDE Lite (+patch installed).
    In the following screenshot <http://www.geocities.com/jonny_fyy/pics/java1.png>, I've got this error (when I right-click -> Compile) . Do you know what it means & how can I solve it?
    Here's how it should look if correct (pic scan from lab worksheet)... <http://www.geocities.com/jonny_fyy/pics/lab.jpg>
    Here's my java file... <http://www.geocities.com/jonny_fyy/FahToCeltxt.java>
    Thanks for helping :>

    Hi jonny
    One step ahead:
    import java.awt.*;
    import java.applet.*;
    import java.awt.event.*;
    public class FahToCeltxt extends Applet implements ActionListener {
         TextField msgField ;
         String msg = null;
         int msgValue;
         Label title;
         Button b;
         public void init() {
              title = new Label("Enter degrees in Fahrenheit: ");
              add(title);
              msgField = new TextField (10);
              add(msgField);
    //          msgField.addTextListener(this);
              b = new Button("Convert");
              b.addActionListener(this);
              add(b);
    //     public void textValueChanged(TextEvent event) {
    //          msgValue = Integer.parseInt(msgField.getText());
    //          repaint();
         public void paint (Graphics g) {
              int result = (msgValue - 32) * 5/9 ;
              g.drawString("Degree Centigrade is " + result , 50, 50);
      public void actionPerformed(ActionEvent e) {
              msgValue = Integer.parseInt(msgField.getText());
              repaint();
    }Regards.

  • Need help with a currently "in-use" form we want to switch to Adobes hosting service

    Hi, I am in desperate need of help with some issues concerning several forms which we currently use a paid third party (not Adobe) to host and "re-distribute through email"...Somehow I got charged $14.95 for YOUR service, (signed up for a trial, but never used it)..and now I am paying for a year of use of the similar service which Adobe is in control of.  I might want to port my form distribution through Adobe in the hopes of reducing the errors, problems and hassles my customers are experiencing when some of them push our  "submit button". (and I guess I am familiar with these somewhat from reading what IS available in here, and I also know that, Adobe is working to alleviate some of these " submit"  issues, so let's don't start by going backwards, here) I need solutions now for my issues or I can leave it as is, If Adobe's solution will be no better for my end users...
    We used FormsCentral to code these forms and it works for the most part (if the end-user can co-operate, and thats iffy, sometimes), but I need help with how to make it go through your servers (and not the third party folks we use now), Not being cruel or racist here, but your over the phone "support techs" are about horrible & I cannot understand them or work with any of them, so I would definitely need someone who speaks English and can understand the nuances of programming these forms, to please contact me back. (Sorry, but both those attributes will be required to be able to help me, so, no "newbie-interns" or first week trainees are gonna cut it).... If you have anyone who fits the bill on those items and would be willing to help us, please contact me back at your earliest convenience. If we have to communicate here, I will do that & I can submit whatever we need to & to whoever we need to.
    I need to get this right and working for the majority of my users and on any platform and OS.
    You may certainly call me to talk about this, and I have given my number numerous times to your (expletive deleted) time wasting - recording message thingy. So, If it's not available look it up under [email protected]
    (and you will probably get right to me, unlike my and I'm sure most other folks',  "Adobe phone-in experiences")
    Thank You,
    Michael Corman
    VinylCouture
    Phenix City, Alabama  36869

    Well, thanks for writing back...just so you know...I started using Adobe products in 1987, ...yeah...back then...like Illustrator 1 & 9" B&W Macs ...John Warnock's Helvetica's....stuff like that...8.5 x 11 LaserWriters...all that good stuff...I still have some of it working on a mac...much of it was stuff I bought. some stuff I did not...I'm not a big fan of this "cloud" thing Adobe has foisted upon the creatives of the world...which I'm sure you can tell...but the functionality and usefulness of your software can not be disputed, so feel free to do whatever we will continue to pay for, ...I am very impressed with CC PS on the 64 bit PC and perhaps I will end up paying you the stipend that you demand for the other services.
    So  I guess that brings us to our problem.. a few years back and at the height of the recession and near bankruptcy myself,  I was damn lucky and hit on something and began a small arts and crafts supply service to sell my products online to a very "niche market" ...I had a unique product and still sell that product (plus others) online...My website is www.vinylcouture.com...Strange? Yes...but there is a market it seems, for everything now, and this is the market I service...Catagorically, these are 99%+ women that use these "adhesive, sticky backed vinyl products"  to make different "craft items" that are just way too various and numerous to go into... generally older women, women who are computer illiterate for the most part...and all this is irrelevant to my problem, but I want you to have every bit of background on this and especially the demographic we are dealing with, so we can get right to the meat of the problem.
    OK...So about two years ago, I decided to offer a "plain sheet" product of a plain colored "stick back" vinyl... it is available in multiple quantities of packs ( like 5 pieces, 10 pieces, 15 pieces, in a packi  & so on)...and if you are still on my site.. go to any  "GO RIGHT TO OUR ORDER PAGE"  button, scroll down a little...and then to the "PLAIN VINYL" section...you will see the Weebly website order process.) You can back out from here, I think,..but, anyway this product is available in 63 colors + or - a few. So then the problem is,  how do they select their individual colors within that (whatever) pack?... .
    So my initial idea was to enable a "selection form" for these "colors" that would be transmitted to me via email as 'part" of the "order process".. We tried getting our customers to submit a  " a list" ( something my competitiors still do, lol, poor bastards)......but that..is just unbelievable..I can't even begin to tell you what a freakin' nightmare that was...these people cannot even count to 10, much less any higher... figuring out what colors to list and send me... well, lets just say, it wasn't working......I had to figure out a better way...Something had to be done.
    So after thinking this all out,  and yeah...due to my total ignorance, i figured that we could make a form with Live Cycle Designer (Now Forms Central)...(back then something that was bundled with Adobe Acrobat Pro), I believe, and thats what this thing was authored in... and it would be all good...LOL!
    Well not so simple...as you well know, Adobe Acrobat would NOT LET YOU EMAIL anything from itself.....it just wouldn't work (and I know why, and all that hooey), but not being one to take NO for answer,.I started looking for a way to make my little gizmo work.. So I found this company that said they can "hijack" (re-direct actually) the request to email, bypass the wah-wah, and re-transmit it to the proper parties.....for less than $100 a year,  I think...its called http://pdf-fillableforms.com/.
    A nice gentleman named Joseph Silva helped us program the thing to go to his servers and back out. Please dont hassle them...I need them...for now..it basically does work...try it...you should get back a copy of the form that you filled out...good luck however,  if you're on MAC OSX or similar...
    I have included a copy of both of our forms (and feel free to fill it out and play with it)...just put test somewhere on it...(and you must include YOUR email or it will balk)..they are supposed to be mostly identical, except one seems to be twice as large....generating a 1.7 meg file upon submission, while the other one only generates a 600K file or so...thats another issue for another day or maybe you can advise on that also...
    OK so far so good......In our shop, once Grandma buys a 10 pack (or whatever), Only then she gets to the link on her receipt page ro the relevant "selection form" ,(this prevents "Filling and Sending"  with "no order" and "no payment", another early problem we had)... which they can click on and it will usually download and open up on their device if all goes well...Then our little form is supposed to be fillable and is supposed to ADD UP all the quantities, so grandma knows how many she is buying and so forth right on the fly,  and even while she changes her mind..., and IT'S LARGE so grandma can see it, and then it TOTALS it all up for them, ( cause remember, they can NOT add)..,  except there is a programming bug (mouse-click should be a mouse-up probably or something..) which makes you click in the blank spaces to get to a correct TOTAL...about 70-80% of our customers can enable all these features and usually the process completes without problems for them especially on PC's running Windows OS and Acrobat Reader X or XI...at least for most... Unfortunately it is still not the "seamless process" I would like or had envisioned for the other folks out there that do have trouble using our form....  Many folks report to us the following issues that we know of.  First of all it takes too much time to load up...We know its HUGE...is there anyway that you can see, to streamline this thing? I would love for it to be more compact...this really helps on the phones and pads as I'm sure you well know.
    Some just tell us,"it WON'T work"....I believe this is because they are totally out of it and dont even have Adobe Reader on their machine, & don't know how to get it ( yes, we provide the links).....or it's some ancient version....no one can stop this one...
    It almost always generates some kind ( at least one time)  of "error message" which we do warn them about..., telling one,  basically that "Acrobat doesnt even like this happening at all, and it could be detrimental to ones computer files", blah-blah...(this freaks grandma out really bad)...& usually they end up not even trying to send it...  and then I get calls that even you wouldn't believe...& If they DO nut up and push the Red "Submit Form" button, it will usually send the thing to us (and also back to them at the "required email address" they furnished on the form, thats what the folks at the "fillable forms place" do) so, if it's performing it's functions, why it is having to complain?. What are we doing wrong?....and how can I fix it?...Will re-compiling it or saving it as a newer version of "FormsCentral" correct any of these problems ?
    Ok, so that should keep you busy for a minute and we can start out with those problems...but the next thing is, how can I take advantage of YOUR re-direct & hosting services?, And will it get rid of the error messages, and the slowness, and the iOS incompatibilities ? (amazingly,  the last iOS Reader version worked almost OK.. but the newest version doesnt seem to work with my form on my iphone4)  If it will enable any version of the iOS to send my form correctly and more transparently, then it might be worth the money...$14.95 a MONTH you say. hmmmmm...Better be good.
    Another problem is, that I really don't need 5000 forms a month submitted. I think its like 70-100 or less....Got any plans for that?  Maybe I'm just not BIG ENOUGH to use Adobe's services, however in this case, I really don't care whose I do use as long as the product works most correctly for my customers as well as us. Like I said, If I'm doing the best I can, I won't change anything, and still use the other third party, If Adobe has a better solution, then i'm all for that as well. In the meantime, Thanks for any help you can provide on this...
    Michael Corman
    VinylCouture.com
    (706) 326-7911

  • If i reset my ipad can i install paye games for free if i sign back into my apple ID. Please i need help because i need to update my games but i need to put in this billing thing and i want to get rid of it so then i cant buy games with my credit card

    If i reset my ipad can i install paye games for free if i sign back into my apple ID. Please i need help because i need to update my games but i need to put in this billing thing and i want to get rid of it so then i cant buy games with my credit card

    Hello,
    As frustrating as it seems, your best to post any frustrations about the iPhone in the  iPhone discussion here:
    https://discussions.apple.com/community/iphone/using_iphone
    As this discussion is for iBook laptops.
    Best of Luck.

Maybe you are looking for

  • Error while throwing OAException message

    Gurus I have a strange problem while trying to throw an OAException message from ProcessFormRequest method. I have referred so many threads related to this but not getting much idea. I am extending a Standard controllers CO where i am doing some cust

  • Journal Entry Problem

    Hello,            I am using SAP 2007 B  PL 15 and SAP user making a journal entry document but after 115 lines users unable to add new rows its happned more then one user Is there limitation for rows ? if not then how can i solve this issue please t

  • The requested resource (/ShowParameters) is not available.

    hi hope someone can help me cause i'm looking for hours and cannot find my error :( I use a from.jsp with the following action: <form action="/ShowParameters" method="post">as soon as i click on the submit button i do get the following error message:

  • Dock crash and black background after 10.10.1 update

    After updating to 10.10.1, my dock has disappeared. It simply crashes upon startup and never shows up. My background has also disappeared, its just black background and trying to set any backgrounds through system preferences fails. Also, since the d

  • IPad Mini - problem syncing with iTunes

    I've a problem syncing my iPad Mini with iTunes. I've a Macbook Pro 10.8.2 and also iTunes 11.0.1. Everything seems to be right. At the bottom line "how many GB is left", video and music shows sometime, but disappear when I try to sync. I've turned e