Portfolio

Line

Income Tax Sender Application


Program Description

Conctact view.


A software application written completely in Java for an accountant's private business. It was created to change his previous methods in sending tax returns and reminders to his clients.
It allows the user to add contacts by name and e-mail address. The user can change to their preferred email client. Using the MVC design pattern it allows for additions to the application to be configured swiftly.


Features

 

Code Snippet

 

	public void actionPerformed(ActionEvent e) {

			JComboBox comboBox = (JComboBox) e.getSource();

			switch (comboBox.getSelectedIndex()) {
			case 0:
				googleSettings();
				break;

			case 1:
				hotmailSettings();
				break;
			case 2:
				aolSettings();
				break;
			case 3:
				yahooSettings();
				break;
			}

		}



 

screenshots

Email Client Preference. Sending Email Template File Chooser.



« Back to desktop applications