Dean McDowell

Greenhorn
+ Follow
since Nov 17, 2005
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Dean McDowell

Hi all, first of all nice forum. I have a task that i need to perform. I need to create and array which will store medicine when entered in by a user. the code i have so far is:

import javax.swing.JOptionPane;

public class ArrayDemo {
public static void main(String[] args) {
String[] anArray; // declare an array of integers

anArray = new String[10]; // create an array of integers

// assign a value to each array element and print
for (int i=0; i<anArray.length; i++) {
anArray[i] = JOptionPane.showInputDialog("Please enter the medicine"); // setting the element number i
System.out.print(anArray[i] + " "); // showing it
}
System.out.println();
}
}

BUT i need to change it so that when a user enters the medicine a YES_NO_CANCEL_OPTION window appears. i have been playin around wit the code but because i suck at java i jus cant get it. can someone please solve this or advise me please. thanks.
18 years ago