0% found this document useful (0 votes)
13 views13 pages

Ajp Ob

The document appears to be a project report for developing a currency conversion program from Indian Rupees (INR) to US Dollars. It includes an introduction describing the use of Java Swing framework to create GUI applications. It then provides the program code for the converter application with explanations of the code. Finally, it concludes that the project provides a useful tool for business and shares knowledge of Java programming.

Uploaded by

Omkar Bankar ob
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
13 views13 pages

Ajp Ob

The document appears to be a project report for developing a currency conversion program from Indian Rupees (INR) to US Dollars. It includes an introduction describing the use of Java Swing framework to create GUI applications. It then provides the program code for the converter application with explanations of the code. Finally, it concludes that the project provides a useful tool for business and shares knowledge of Java programming.

Uploaded by

Omkar Bankar ob
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 13

‘ A’

Project Report

On

“ Develop a program converter into INR to Dollar”


Submitted & Present in the fulfillment of the
requirement for the award of
Diploma In Information Technology By

1. Mr.Bankar Omkar Arjun

2. Mr.Kulkarni Chaitanya Umesh

3. Mr.Khilare Pratik Balasaheb

Under the Guidance of

Ms.Kamble K.S

DEPARTMENT OF INFORMATIONTECHNOLOGY

NEW SATARA COLLEGE OF ENGINEERING & MANAGEMENT


POLY(2023-2024
NEW SATARA COLLEGE OF ENGINEETING AND MANAGEMENT KORTI-
PANDARPUR

certificate

This is to certify that the project “develop a program converter into INR to
Dollar” has been presented successfully and submitted by.

Name of the Student.

1. Mr.Bankar Omkar Arjun

2. Mr.Kulkarni Chaitanya Umesh


3. Mr.Khilare Pratik Balasaheb

Exam Seat No: - ( )

Student of Information Technologi(IF) class in the fulfillment For the


award of Diploma in Information Technology Engineering as per curriculum
laid by Maharashtra State Board Of Technical Education, Mumbai during the
academic year 2023-2024.

Project Guide H.O.D Principal


( Ms.kamble K.S) (Prof. Puri S.B.) (Prof.Londhe.V.H.)
Declaration
We hereby declare that the project report “develop a program converter into INR
to Dollar” is completed and submitted by me for the award of diploma engineering
in, NSCOEM, College, Korti, Pandarpur.
The partial fulfillment of the requirement for the award of the diploma of
INFORMATION TECHNOLOGY is a project work carried out by me under
the guidance of Ms.Kamble K.S further declare that the work reported in this
project has not submitted and will not be submitted, either in part or full, for
the award of diploma engineering in Information Technologi this institute or
any other university or examination body.

PLACE- KORTI,
PANDARPUR-

DATE-
Acknowledgement

I hereby declare that the work presented in this Mini project report entitled,
“develop a program converter into INR to Dollar” in partial fulfillment for the
Diploma of " INFORMATION TECHNOLOGY " in Our extreme gratitude
Ms.Kamble K.S who guided us throughout the project. Without his willing
disposition, spirit of accommodation, frankness, timely clarification and above all
faith in us, this project could not have been completed in due time.

Project student name

1. Mr.Bankar Omkar Arjun


2. Mr.Kulkarni Chaitanya Umesh
3. Mr.Khilare Pratik Balasaheb
Abstraction

Is web based application for Music evaluation. Online


Music Player System not only web app between sing a Song
With Your Felling.. It fulfills the requirements of the User to
Sing the Songs online. User’s can Sing Song without the need of
gose to any Third Party Website.

They can view the result at the same time. Thus the purpose
of the site is to provide a system that saves the efforts
INDEX

Sr.No Content Page No

1. Introduction 1

2. Program Code 2

3. Output 3

6. Conclusion 8

7. Reference 12

1.Introduction

Swing is apart of the JFC(Java Foundation Classes) . Building GraphicalUser


Interface in java requires the use of Swing.Swing Freamworkcontinsca largeset of
components which allow a high level of customizationand provide rich
functionalities and is used to used creat window-basedapplication. Java swing
components are lightweight, platformindependet,provide powerful components
like tables, scroll panels, button, list, colorchooser, ect.In this article, we’ll see how
to make a currency convertar which includesconversion berween INR and Dollar.
Tow textfield are implemented with thelable Ruppes and Doller.
2.Program Code :

packagecom.AJP;
importjavax.swing.*;
importjava.awt.event.ActionEvent;
importjava.awt.event.ActionListener;
importjava.awt.event.WindowAdapter;
importjava.awt.event.WindowEvent;
public class CFG{
public static voidConverter()
{
JFrame f=newJFrame("CONVERTER");
JLabel l1,l2;
JTextField t1,t2;
JButton b1,b2,b3;
l1 =newJLabel("Rupees"); l1.setBounds(20,40,60,30);
l2 =newJLabel("Dollars"); l2.setBounds(170,40,60,30);

t1 =newJTextField("0");
t1.setBounds(80,40,50,30);
t2 =newJTextField("0");
t2.setBounds(240,40,50,30);
b1 =newJButton("INR");
b1.setBounds(50,80,80,15);
b2 =newJButton("Dollar");
b2.setBounds(190,80,75,15);
b3 =newJButton("close");
b3.setBounds(130,130,75,30);

b1.addActionListener(newActionListener()
{
public voidactionPerformed(ActionEvent e)
{
doubled =Double.parseDouble(t1.getText());
doubled1 = (d /75.13);
String str1 = String.valueOf(d1);
t2.setText(str1); } });

b2.addActionListener(newActionListener()

{
public voidactionPerformed(ActionEvent e)
{
doubled2 = Double.parseDouble(t2.getText());
doubled3 = (d2 *75.13);
String str2 = String.
valueOf(d3); t1.setText(str2); } });

b3.addActionListener(newActionListener()

{
public voidactionPerformed(ActionEvent e)

{
f.dispose(); } });
f.addWindowListener(newWindowAdapter()

{
public voidwindowClosing(WindowEvent e)
{
System.exit(0); }
});
f.add(l1);
f.add(t1);
f.add(l2);
f.add(t2);
f.add(b1);
f.add(b2);
f.add(b3);
f.setLayout(null);
f.setSize(400,300);
f.setVisible(true);
}
public static voidmain(String args[]) {
Converter();
}

3.Output:
4.Conclusion
The project involves a good knowledge of javaprogramming language. The
developer will be able toimplement it easily as it doesn’t require any database and
thesourse code is also available for free. This project is veryaffordable and useful
for the people who are inbusiness,shares or finance. As it is a web-based
program,itwill update automatically.

5.References
www.google.com
www.java.toturial.com

www.javatpoint.com

You might also like