String welcomeTitle = new String();
welcomeTitle =
"Welcome To The Programmer's Lair
- Your Source For All Java and Flash Programming.";
String welcomeParagraph = new String();
welcomeParagraph =
"This site offers you custom programs by special order. Business application programs such as invoicing, enhanced graphics, and custom websites, all at discounted prices.";
String theQuestion = new String(
"Wondering about the code segments all around the site?\n" +
"The reason for that is to show you what code looks like."
);
String[] options = new String[3];
options[0] =
"Visit the [DOWNLOADS] page for some free content such as my MLA Citation Generator!";
options[1] =
"You can take a look at the [SERVICES] page for any questions about my pricing (as nothing of good quality is free ;-).";
options[2] =
"Stop by the [CONTACT] page if you woud like to send me a message or if you have a JAVA or FLASH programming order.";
String[] answers = {"Yes", "No"};
int answer = JOptionPane.showOptionsDialog(null, JOptionPane.INFORMATION_DIALOG,"Request?" ,
"Would you like to request a program?",options, 0);
if (answer == 0)
System.out.println("VISIT THE CONTACT PAGE");
else System.exit(0);
|