You are on page 1of 25

APPLICATION FORM.

OM SOFTWARE INFOTECH.
CHOTALIYA SHIVANGI ARVIND.
DEPT. INFORMATION TECHNOLOGY.
3rd SEMESTER.
GOVERNMENT POLYTECHNIC FOR GIRLS.
FROM,
12 – 09 – 22
TO,
28 – 09 – 22.

MENTOR:- ROSHAN ROHIT SIR.

CONTENTS:-
1. ACKNOWLEDGEMENT.
2. ABSTRACTION.
3. INFORMATION ABOUT THE
COMPANY.
4. DESCRIPTION OF INTERNSHIP
EXPERIENCE.
5. WEEKLY OVERVIEW OF INTERNSHIP
ACTIVITIES.
6. DETAIL VIEW OF INTERNSHIP
ACTIVITIES.
7. CONCLUSION.

1. ACKNOWLEDGEMENT.
I want to thank my advisor (Nimesh sir) at a
company for their patience and assistance
during my onsite training. Thanks to their
guidance, I was able to develop .net and learn
about visual studio(so). These skills will help me
to expand my resume and advance my career.
I would like to thank my mentor (Roshan Rohit
sir) at a college, dept. Information Technology
for their support and advices to complete
internship in mentioned organization.

I am extremely grateful to my department staff


members and friends who helped me in
successful completion of this internship.

2. ABSTRACTION.

As an intern with OM SOFTWARE INFOTECH, I


worked as a STUDENT under the responsible
task. I was part of the INFORMATION
TECHNOLOGY DEPARTMENT. Worked on visual
studio(C#), .net to accomplish the project on
APPLICATION FORM.
3. INFORMATION ABOUT
THE COMPANY.

Established in 2010, OM SOFTWARE


INFOTECH is in the business of providing
computer training. They are well known in
the field for their development and
professional training. Their mission is to
provide high skilled asset for the industry.
The company plays role in promoting web
design, web site, C#, .net, etc. for welfare of
the local community. I felt that their
mission was compatible with my world view
and my future career goals, which is the
reason I applied for an internship position
with them.
4. DESCRIPTION OF
INTERNSHIP EXPERIENCE.
During my internship with the company, I
learned C#, .net. I was able to put these skills in
practice in the project of APPLICATION FORM.
The work was challenging and learned the
proper use of coding and basic several changes
we can do and apply about the work and
gained more confidence in myself. It was
valuable experience.

5. WEEKLY OVERVIEW OF
INTERNSHIP ACTIVITIES.

DATE DAY TOPIC


Created a basic form
12 – 09 - 22 MONDAY
in MS access.
Installation of
TUESDAY
13 – 09 - 22 Microsoft Visual
Studio 2012. Created
form designs.
14 – 09 - 22 WEDNESDAY Coding for filling the
values of textboxes, for
the created form. Also
used the conversion of
strings and decimals for
values.
15 – 09 - 22 THURSDAY The correct use of
integer or decimal for
basic mathematical
problem. The conversion
of integer to decimal is
not possible bit the
conversion of decimal to
integer is possible.
16 – 09 – 22 FRIDAY The use of if, else and
& command in the
same form. These
statements are also
useful in the
mathematical
problem.
Holiday in the
17 – 09 - 22 SATURDAY
company.

Holiday in the
18 – 09 - 22 SUNDAY
company.

The coding in created


19 – 09 - 22 MONDAY form to fill the blank
space of username,
password and submit,
reset button.
The coding through
20 – 09 - 22 TUESDAY
the richbox, dialogue
box etc. in the visual
studio. The additional
things are like color,
font, folder, save,
open, cut, copy, paste.
Created an official
21 – 09 – 22 WEDNESDAY
application form
through the coding
and filling in the visual
studio.
The external added
22 – 09 – 22 THURSDAY
items like login page,
web page, menu,
mathematical simple
interest, note pad.
Created a simple form
23 – 09 – 22 FRIDAY
for the above-
mentioned items.
24 – 09 – 22 SATURDAY Holiday in the
company because of
weekend.
25 – 09 – 22 Holiday in the
SUNDAY
company because of
weekend.
26 – 09 – 22 Coded to fill the blank
MONDAY
space in which created
a form of mentioned
items.
Overviewed the whole
27 – 09 – 22 TUESDAY
process and corrected
the mistakes which
may create while
coding.
Done with the project
28 – 09 – 22 WEDNESDAY
and get certified from
the company.
6. DETAIL VIEW OF
INTERNSHIP ACTIVITIES.
DATE:- 12 – 09 – 22.
BASIC MS EXCEL SHEET.

Excel is a spreadsheet program from


Microsoft and a component of its office
product group for business applications.
Microsoft excel enables users of format,
organize and calculate data in a
spreadsheet.
Created a basic excel sheet as a beginner.
Which is also helpful to keep records of
particular information.

For example,
NAME ROLL NO ADDRESS DEPARTMENT
Xyz 67 Athwa Civil
Abc 52 Bhatar Com

DATE:- 13 – 09 – 22.
VISUAL STUDIO 2012.

Installed a Microsoft visual studio 2012, in


the software.

WHAT IS VISUAL STUDIO?


Visual studio is an integrated development
environment from Microsoft. It is used to
develop computer programs, as well as
websites, web apps, web services and
mobile apps.
WHAT IS VISUAL STUDIO USED FOR?
To develop any type of app or learn a
language, you’ll be working in the visual
studio integrated development
environment (IDE). Beyond code editing,
visual studio IDE brings together graphical
designers, compliers, code completion
tools, source control, extensions and many
more features in one place.

DATE :- 14 – 09 – 22.
CREATING A FORM IN C#.

Creating a simple form before coding and


filling. The option of creating a form is get in
visual studio only.
For example,
Value of A
Value of B
Score is

Submit Reset

The form looks like exactly as above shown.

DATE :- 15 – 09 – 22.
CODING FOR FILLING THE FORM.
The coding for filling the value of textbox.
For example,
Button 1,
textBox3.Text = (convert.Tostring
(convert.ToInt16(textBox1.Text) +
Convert.ToInt16(textBox2.Text));
Button 2,
textBox1.Text = “ “;
textBox2.Text = “ “;
textBox3.Text = “ “;

DATE :- 15 – 09 – 22.
CORRECT USE OF STATEMENTS.

The correct use of integer or decimal form


for the basic mathematical problem. The
conversion of integer to decimal is not
possible but the conversion of decimal to
integer is possible.
For example,
Marks of Maths
Marks of Physics
Marks of Science
Total is

Submit Reset

The code for this form is,


Button 1,
textBox4.Text = (convert.Tostring
(convert.ToDecimal(textBox1.Text) +
Convert.ToDecimal(textBox2.Text) +
Convert.ToDecimal(textBox3.Text));
Button 2,
textBox1.Text = “ “;
textBox2.Text = “ “;
textBox3.Text = “ “;
textBox4.Text = “ “;
textBox5.Text = “ “;
Through the button 2, we get blank space
after coding, we can fill it afterwards any
random value.
DATE :- 16 – 09 – 22.
CORRECT USE OF STATEMENTS.
The use of if, else if, else and & statements
in the same form. These statements are
also useful in the mathematical problems.
For example,
Enter a value of A
Enter a value of B
Result is

Submit Reset
The code for this form is,
Button 1,
if (convert.ToDecimal(textbox1.Text) >
convert.ToDecimal(textBox2.Text)
{
textBox3.Text = A is greater than B;
}
else
{
textBox3.Text = B is greater than A;
}
Button 2,
textBox1.Text = “ “;
textBox2.Text = “ “;
textBox3.Text = “ “;
DATE :- 17 – 09 – 22.
SATURDAY.
Weekend holiday in the industry.

DATE :- 18 – 09 – 22.
SUNDAY.
Weekend holiday in the industry.

DATE :- 19 – 09 – 22.
FURTHER CODING FOR FORM.

The creating a form of username, password


and login button. Also using the statement
of if, else if and else statement.
The form is like,
Username
Password

Login

The code is like,


textBox1.Text == “SHIVANGI” &
textBox2.Text == “260702”

DATE :- 20 – 09 – 22.
CODING FOR THE FORM.

The coding for the above form,


if (textBox1.Text == “SHIVANGI” &
textBox2.Text == “260702”)
MessageBox.Show (“LOGIN
SUCCESSFULLY”, “LOGIN”,
MessageBoxButtons.OK,
MessageBoxIcon.Information);
else
MessageBox.Show (“INVALID USERNAME
OR PASSWORD”, “LOGIN”,
MessageBoxButtons.RetryCancel,
MessageBoxIcon.Error);
Message box shows the particular message
for particular text box.

DATE :- 21 – 09 – 22.
NEXT STEP FURTHER IN FORM.
The coding through the richbox, dialogue
box, etc. in visual studio. This we create
through the panel from the properties.
The boxes include the color, font, folder,
save, open, cut, copy, paste, Etc.
The form is like,

color font folder save open cut copy


DATE :- 22 – 09 – 22.
CODING IN ABOVE CREATED FORM.
The code for the above form,

DATE :- 23 – 09 – 22.
SIMPLE INTEREST FORM.

Created a basic calculating simple interest


form. Using simple text box and buttons.

Simple interest
Rate
Time(year)
Total interest
Total amount
Submit Reset
DATE :- 24 – 09 – 22.
SATURDAY.
Weekend holiday in the industry.

DATE :- 25 – 09 – 22.
SUNDAY.
Weekend holiday in the industry.

DATE :- 26 – 09 – 22.
CODE FOR SIMPLE INTEREST FORM.
Coded the simple interest form for filling
the blank text boxes through the buttons.
The code is like,
DATE :- 27 – 09 – 22.
MERGES THE ALL FORMS.

Merged all the created forms in the single


application form. Thus, all these merged
forms are basically known as the application
form. Coded to get all the forms in the
single site.

DATE :- 28 – 09 – 22.
FINAL TOUCHUP.

Cross checked all the forms and codes. Also


did correction and doubts clear related to
visual studio, forms or codes. Merged the
forms in the proper manner and did proper
set up of the application forms. And lastly,
get certified from the internship.

7. CONCLUSION.

The work experiences I encountered during


the internship allowed me to develop
specific skills. I think I still need to work on
my other related skills. However, the overall
experience was positive and everything I
learned will be useful in my future career in
this field.

You might also like