Portfolio
Income Tax Sender Application
Program Description
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
- Sends tax returns from different email clients
- Checks for network availibility.
- Complete front-end for the database or xml files.
- File chooser for html templates and tax returns.
- Can send multiple pdf documents at one time.
- File chooser has preview of html and pdf files
- Update contact information either through database or xml
- Status bar which is updated in real-time
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
« Back to desktop applications