Dhanjal Solution with the base at India is a professional Web
Designing/Programing Company. Our Web Designers focus on quality
features of Web Design, Email Marketing and Multimedia Presentation.
Company confers services such as Logo Designing and Search Engine
Optimisation (SEO) in order to enhance the overall look of the Brand.
Offshore software development company Dhanjal Solution provides custom software development services. As a leader in outsourcing software development, we provide high quality offshore development services. We have over 200 skilled software developers in custom software programming.
Monday, 19 March 2012
Dhanjal Solution Offshore software development company
Who We Are? Are you in search for a Web Design / Custom Web Design,
Ecommerce Systems so on and so forth then you certainly have arrived at
right place. Dhanjal Solution is a leading effective web design services
and other related services in India and all over the world.
Dhanjal Solution with the base at India is a professional Web Designing/Programing Company. Our Web Designers focus on quality features of Web Design, Email Marketing and Multimedia Presentation. Company confers services such as Logo Designing and Search Engine Optimisation (SEO) in order to enhance the overall look of the Brand.
Dhanjal Solution with the base at India is a professional Web Designing/Programing Company. Our Web Designers focus on quality features of Web Design, Email Marketing and Multimedia Presentation. Company confers services such as Logo Designing and Search Engine Optimisation (SEO) in order to enhance the overall look of the Brand.
Income Tax Calculator
Here is the java code:
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import java.applet.*;
public class IncomeTaxCalculator extends Applet
implements ActionListener,WindowListener{
private Label label,label1,label2,label3;
private JTextField txt,txt1,txt3,txt4;
private JButton btn1,btn2;
public void init(){
Frame f=new Frame();
Frame f1=new Frame();
f.setLayout(new BorderLayout());
f.setSize(1000, 300);
Panel p=new Panel();
Panel pc1=new Panel();
//pc.setLayout(new BorderLayout());
f.add(pc1,"South");
f.add(p,"North");
label=new Label("Enter Income :");
label1=new Label("Tax To Be Paid :");
label2=new Label("Cess");
label3=new Label("Income Tax");
txt1=new JTextField(10);
txt3=new JTextField(10);
txt4=new JTextField(10);
txt=new JTextField(10);
p.add(label);
p.add(txt);
p.add(label3);
p.add(txt4);
p.add(label2);
p.add(txt3);
p.add(label1);
p.add(txt1);
btn1= new JButton("SUBMIT");
btn2= new JButton("EXIT");
pc1.add(btn1);
pc1.add(btn2);
f.setVisible(true);
btn1.addActionListener(this);
btn2.addActionListener(this);
}
public static void main(String args[]){
new IncomeTaxCalculator().init();
}
@Override
public void actionPerformed(ActionEvent e) {
// TODO Auto-generated method stub
JButton btn=(JButton)e.getSource();
if(btn==btn1){
double a=Integer.parseInt(txt.getText());
double tax=0,b=0;
if(a>0 && a<=160000){ //Change the Income here
txt1.setText("0");
txt4.setText("0");
txt3.setText("0");
}else if(a>160000 && a<=300000){ //Change the Income here
a=a-160000;
tax=0.1*a; //Change the rate % here
txt4.setText(String.valueOf(tax));
txt3.setText(String.valueOf(tax*.03));
tax+=tax*.03;
txt1.setText(String.valueOf(tax));
}else if(a>300000 && a<=500000){ //Change the Income here
a=a-300000;
tax=0.2*a+14000; //Change the rate % here
txt4.setText(String.valueOf(tax));
txt3.setText(String.valueOf(tax*.03));
tax+=tax*.03;
txt1.setText(String.valueOf(tax));
}else if(a>500000){ //Change the Income here
a=a-500000;
tax=0.3*a+54000; //Change the rate % here
txt4.setText(String.valueOf(tax));
txt3.setText(String.valueOf(tax*.03));
tax+=tax*.03;
txt1.setText(String.valueOf(tax));
}
}else if(btn==btn2){
System.exit(0);
}
}
@Override
public void windowActivated(WindowEvent e) {
// TODO Auto-generated method stub
}
@Override
public void windowClosed(WindowEvent e) {
// TODO Auto-generated method stub
}
@Override
public void windowClosing(WindowEvent e) {
// TODO Auto-generated method stub
}
@Override
public void windowDeactivated(WindowEvent e) {
// TODO Auto-generated method stub
}
@Override
public void windowDeiconified(WindowEvent e) {
// TODO Auto-generated method stub
}
@Override
public void windowIconified(WindowEvent e) {
// TODO Auto-generated method stub
}
@Override
public void windowOpened(WindowEvent e) {
// TODO Auto-generated method stub
}
}
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import java.applet.*;
public class IncomeTaxCalculator extends Applet
implements ActionListener,WindowListener{
private Label label,label1,label2,label3;
private JTextField txt,txt1,txt3,txt4;
private JButton btn1,btn2;
public void init(){
Frame f=new Frame();
Frame f1=new Frame();
f.setLayout(new BorderLayout());
f.setSize(1000, 300);
Panel p=new Panel();
Panel pc1=new Panel();
//pc.setLayout(new BorderLayout());
f.add(pc1,"South");
f.add(p,"North");
label=new Label("Enter Income :");
label1=new Label("Tax To Be Paid :");
label2=new Label("Cess");
label3=new Label("Income Tax");
txt1=new JTextField(10);
txt3=new JTextField(10);
txt4=new JTextField(10);
txt=new JTextField(10);
p.add(label);
p.add(txt);
p.add(label3);
p.add(txt4);
p.add(label2);
p.add(txt3);
p.add(label1);
p.add(txt1);
btn1= new JButton("SUBMIT");
btn2= new JButton("EXIT");
pc1.add(btn1);
pc1.add(btn2);
f.setVisible(true);
btn1.addActionListener(this);
btn2.addActionListener(this);
}
public static void main(String args[]){
new IncomeTaxCalculator().init();
}
@Override
public void actionPerformed(ActionEvent e) {
// TODO Auto-generated method stub
JButton btn=(JButton)e.getSource();
if(btn==btn1){
double a=Integer.parseInt(txt.getText());
double tax=0,b=0;
if(a>0 && a<=160000){ //Change the Income here
txt1.setText("0");
txt4.setText("0");
txt3.setText("0");
}else if(a>160000 && a<=300000){ //Change the Income here
a=a-160000;
tax=0.1*a; //Change the rate % here
txt4.setText(String.valueOf(tax));
txt3.setText(String.valueOf(tax*.03));
tax+=tax*.03;
txt1.setText(String.valueOf(tax));
}else if(a>300000 && a<=500000){ //Change the Income here
a=a-300000;
tax=0.2*a+14000; //Change the rate % here
txt4.setText(String.valueOf(tax));
txt3.setText(String.valueOf(tax*.03));
tax+=tax*.03;
txt1.setText(String.valueOf(tax));
}else if(a>500000){ //Change the Income here
a=a-500000;
tax=0.3*a+54000; //Change the rate % here
txt4.setText(String.valueOf(tax));
txt3.setText(String.valueOf(tax*.03));
tax+=tax*.03;
txt1.setText(String.valueOf(tax));
}
}else if(btn==btn2){
System.exit(0);
}
}
@Override
public void windowActivated(WindowEvent e) {
// TODO Auto-generated method stub
}
@Override
public void windowClosed(WindowEvent e) {
// TODO Auto-generated method stub
}
@Override
public void windowClosing(WindowEvent e) {
// TODO Auto-generated method stub
}
@Override
public void windowDeactivated(WindowEvent e) {
// TODO Auto-generated method stub
}
@Override
public void windowDeiconified(WindowEvent e) {
// TODO Auto-generated method stub
}
@Override
public void windowIconified(WindowEvent e) {
// TODO Auto-generated method stub
}
@Override
public void windowOpened(WindowEvent e) {
// TODO Auto-generated method stub
}
}
Friday, 9 March 2012
http://myluckyfriend.com/
myluckyfriend.com
my
lucky friend social networking sites other social networking sites make
friends. social network site in india.social network site in the world
Tuesday, 6 March 2012
magento themes free Link
http://www.splashnology.com/article/20-most-beautiful-free-magento-themes/353/
http://www.magentocommerce.com/boards/viewthread/9575/
http://www.templatemela.com/?gclid=CLDd26uJ0q4CFQ966wodyzd0AQ
http://www.magentocommerce.com/magento-connect/free-magento-theme-3419.html
http://www.magentocommerce.com/magento-connect/magento-theme-absolute-theme-10-colors-included.html
http://www.magentocommerce.com/boards/viewthread/9575/
http://www.templatemela.com/?gclid=CLDd26uJ0q4CFQ966wodyzd0AQ
http://www.magentocommerce.com/magento-connect/free-magento-theme-3419.html
http://www.magentocommerce.com/magento-connect/magento-theme-absolute-theme-10-colors-included.html
Monday, 27 February 2012
slider jquery examples
http://vandelaydesign.com/blog/web-development/jquery-image-galleries/
http://www.noupe.com/design/sliding-content.html
http://jqueryui.com/demos/slider/
http://wowslider.com/
http://www.designyourway.net/blog/resources/28-useful-jquery-sliders-you-need-to-download/
http://www.roseindia.net/tutorialsearch/?t=++JQUERY+SLIDER
http://www.noupe.com/design/sliding-content.html
http://jqueryui.com/demos/slider/
http://wowslider.com/
http://www.designyourway.net/blog/resources/28-useful-jquery-sliders-you-need-to-download/
http://www.roseindia.net/tutorialsearch/?t=++JQUERY+SLIDER
Wordpress Themes Free
http://www.elegantthemes.com/
http://themespack.com/
http://wordpressthemesbase.com/
http://www.wordpressthemes.com/
http://themespack.com/
http://wordpressthemesbase.com/
http://www.wordpressthemes.com/
Subscribe to:
Posts (Atom)
-
Beyond Proof , by Angie Corbett-Kuiper, is a space for healing and hope—exploring grief, loss, and the afterlife through science, metaphysi...
-
Web Development company India, Web Design Company India, Web Development Company Chandigarh, Web Design Company Chandigarh, SEO Company...
-
Squarespace web development company specializing in the Squarespace platform. Squarespace Designers, Squarespace Specialist