SlideShare a Scribd company logo
1 of 10
Download to read offline
________
ICT
PROJECT
--------
Happy Nezza B. Aranjuez
Shaica S. Cordez
10 – Einstein
VISUAL BASIC 6.0
INTRODUCTION
In today's generation, people are surrounded by technology. Technology
is ubiquitous and we can see it everywhere. We use it in our everyday lives for
communication, transportation and in getting information. We also use
technology to make difficult tasks simpler. Specifically we use programming in
solving problems encountered by the people. We find ways so that we could
experience convenience and we can easily go on with our lives.
In order to apply the lessons we have learned in our subject Information
and Communication Technology 10, we students of 10-Einstein are required to
make our own program that could help us in our studies. We need to make
calculators involving our three subjects namely Math, Science and Health and
incorporate what we learned in the MDAS activity in Visual Basic. We thought of
computations and problems needed in our subjects. We chose the problems
that will use the help of calculator and will involve very large numbers. Inputting
very large numbers in the calculator can be confusing so we found a way to
make things easier. This can help students in their subjects especially in the
incoming quarters.
These programs wouldn’t only be beneficial to our fellow students but also
to the people around us. We made a program that could compute for the
average water requirement a person should intake in a day. This could be of
great help to reduce the case of dehydration especially on dry season. This
computes also for the conversion of ounce, millilitres and glass. We also made
the Base-Percentage-Rate conversion so it would be easier for students to
understand the concept of getting the n% of a number and then getting the
percentage of a percent. Lastly, we also made a program that could compute
for the number of moles and molar mass, a project dedicated to chemistry
students and enthusiasts who would like to further understand the lesson of
molar mass and moles.
As we study more about the other features of Visual Basic, surely it
wouldn’t be impossible anymore for us to make complicated calculators and
formula machines. If we could make this happen we wouldn’t be far from the
super-modernistic future we imagine. But behind all this, let’s not forget to look
back and be grateful to the people who contributed their gifts of talents for the
better of the people today.
PROCESS
PLANNING
We made plans in our program and all of the plans are based on our
lessons in the past years. We chose topics from these, analyzed the flow of the
program and visualize the kind of programs we will make. We thought of harder
topics and tried to make it simpler for a user. Instead of the user doing it
manually in just a simple calculator and always saving the answer, we made a
more convenient way of doing things and had the formulas set in our code so
that in one click, the user can get the information he needs. For our science. We
planned to do about the computation of number of moles and molar masses,
which is obviously part of chemistry. For Math, we planned to do the process of
percentage, base and rate that could help in investments. Lastly, for Health, we
planned to compute the average amount of water a person has to drink in a
day with three different unit of measurement for volume so that they could
easily measure the volume of water depending on the unit they use mostly.
CREATING THE GRAPHICAL INTERFACE
In creating the graphical interface, we tried it also in a way that the user
can operate the program easily and he will not get confused. We also put some
pictures and color schemes to add to the aesthetics. In each program there is
just one button and hopefully that one button can show all the outputs or results
already. We thought of how the user can best manipulate the system of the
program. We tried using a colourful scheme so that whenever the user uses the
programs he/she wouldn’t get bored easily and will really try out the program.
Since the graphical interface has also great influence on user’s enthusiasm to
use the program we made sure that it would get the attention of the user and
would really be a satisfactory to the eye of the user.
For us, it is easier if you work on the design and layout last so you would
have enough time to think of what color combinations you would like to use for
your program.
CODING AND TESTING
In coding, we already knew how we could do the algorithm without really
much help and problem. We just based the codes based on our MDAS activity
where we used a combination of the four operations. We also added other
things we learned in our first quarter and somehow incorporate it with our
output. It is also important that the programs run and there should be no
problems that will be encountered by the users.
Since we’re just basing it from a past lesson we could follow the pattern
and try experimenting the pattern that we already have. We could add more
operations and try combining different concepts with each other. Even though
we had a lot of trials in running the project that’s fine because we were able to
make smoothly running programs. We made sure that there would be no error
anymore on the command, operation and the control.
MAINTENANCE
The programs we made could still be modified and improved. For the
water requirement we recommend using a combo list on the weight part and
try taking in pounds as one of the choices there. Also try adding more
conversion factors like pint, quart, tablespoon etc.
BENEFITS
1. The students. The students can readily use the programs that we made if they
have assignments especially in our Science program. Or they can just use this to
check their answers after answering their problem sets in chemistry. Students
who will be using our program in math could also understand their lesson better
by using out calculator as basis for their answers while computing.
2. The other users. Besides students, other people could also use these programs.
In our Math program, normal people could use our calculator to find
percentage, base and rate. It could be used by executives or small store owners
and business involves lot of numbers with the percent sign always. Another is the
program in Health. Water belonging to the category of food is one of the basic
needs of people. People need to know if they still maintain the appropriate
amount of water in their body. The correct measurement of amount in liters can
be converted into number of glasses and it would be easier for a person to
monitor the amount of water he should be drinking.
3. Maker and programmer. We, as the programmers also benefitted because
we were able to apply what we learned from those three subjects and
especially what we understood in ICT. It shows that when someone is learning, it
could be a source of a new idea or a new thought which would lead to more
beneficial and useful innovations in the future.
CODE
Private Sub cmdMass_Click()
elem1 = Val(txt1) * Val(txt2)
elem2 = Val(txt3) * Val(txt4)
elem3 = Val(txt5) * Val(txt6)
mass = elem1 + elem2 + elem3
lblGrams.Caption = mass
End Sub
Private Sub cmdNext_Click()
Form2.Show
End Sub
Private Sub Command1_Click()
eleme1 = Val(txt1) * Val(txt7)
eleme2 = Val(txt2) * Val(txt8)
eleme3 = Val(txt3) * Val(txt9)
summ = eleme1 + eleme2 + eleme3
grams = Val(txt)
result = grams / summ
lblMoles.Caption = result
lblName.Text = txt5
End Sub
Private Sub cmdHowmany_Click()
eleme1 = Val(txt1) * Val(txt7)
eleme2 = Val(txt2) * Val(txt8)
eleme3 = Val(txt3) * Val(txt9)
summ = eleme1 + eleme2 + eleme3
grams = Val(txt4) result = grams /
summ
lblMoles.Caption = result
End Sub
CODE
Private Sub
Command1_Click()
ans = 1.1 * weight
Text2.Text = ans
milli.Text = ans * 30
glass.Text = ans * 0.125
End Sub
Private Sub
Command2_Click()
Text2.Text = " "
milli.Text = " "
glass.Text = " "
weight.Text = " "
End Sub
CODE
Private Sub Command1_Click(Index As Integer)
base = percent / rate
base.Text = base
End Sub
Private Sub Command2_Click(Index As Integer)
base.Text = " "
percent.Text = " "
rate.Text = " "
End Sub
Private Sub Command3_Click(Index As Integer)
percent = base * rate
percent.Text = percent
End Sub
Private Sub Command4_Click(Index As Integer)
rate = percent / base
rate.Text = rate
End Sub

More Related Content

Viewers also liked

RVM - NHRuby Nov 2009
RVM - NHRuby Nov 2009RVM - NHRuby Nov 2009
RVM - NHRuby Nov 2009bturnbull
 
Social Media Governance with Brandle
Social Media Governance with BrandleSocial Media Governance with Brandle
Social Media Governance with BrandleJanet Church
 
Merchandising voor 2020
Merchandising voor 2020Merchandising voor 2020
Merchandising voor 2020Jerry J. Stam
 
Teacher lecture lesson 1
Teacher lecture lesson 1Teacher lecture lesson 1
Teacher lecture lesson 1msmurphydance
 
Bahasan 2 klasifikasi dan pemilihan media pembelajaran
Bahasan 2 klasifikasi dan pemilihan media pembelajaranBahasan 2 klasifikasi dan pemilihan media pembelajaran
Bahasan 2 klasifikasi dan pemilihan media pembelajaranjamilbrou
 
Companies financial result updated on 17 september 2015
Companies financial result updated on 17 september 2015Companies financial result updated on 17 september 2015
Companies financial result updated on 17 september 2015RAFI SECURITIES (PVT.)LTD.
 
Best baby cribs
Best baby cribsBest baby cribs
Best baby cribsSeo Expert
 
Power of prizes to drive innovation
Power of prizes to drive innovationPower of prizes to drive innovation
Power of prizes to drive innovationcraigslist_fndn
 
Companies financial result updated on 25 february 2016
Companies financial result updated on 25 february 2016Companies financial result updated on 25 february 2016
Companies financial result updated on 25 february 2016RAFI SECURITIES (PVT.)LTD.
 
Studie proveditelnosti institucionálního zajištění navrhovaného systému hodno...
Studie proveditelnosti institucionálního zajištění navrhovaného systému hodno...Studie proveditelnosti institucionálního zajištění navrhovaného systému hodno...
Studie proveditelnosti institucionálního zajištění navrhovaného systému hodno...MEYS, MŠMT in Czech
 

Viewers also liked (16)

RVM - NHRuby Nov 2009
RVM - NHRuby Nov 2009RVM - NHRuby Nov 2009
RVM - NHRuby Nov 2009
 
Social Media Governance with Brandle
Social Media Governance with BrandleSocial Media Governance with Brandle
Social Media Governance with Brandle
 
Merchandising voor 2020
Merchandising voor 2020Merchandising voor 2020
Merchandising voor 2020
 
Teacher lecture lesson 1
Teacher lecture lesson 1Teacher lecture lesson 1
Teacher lecture lesson 1
 
Příklad bibliometrické zprávy
Příklad bibliometrické zprávyPříklad bibliometrické zprávy
Příklad bibliometrické zprávy
 
Bahasan 2 klasifikasi dan pemilihan media pembelajaran
Bahasan 2 klasifikasi dan pemilihan media pembelajaranBahasan 2 klasifikasi dan pemilihan media pembelajaran
Bahasan 2 klasifikasi dan pemilihan media pembelajaran
 
Companies financial result updated on 17 september 2015
Companies financial result updated on 17 september 2015Companies financial result updated on 17 september 2015
Companies financial result updated on 17 september 2015
 
Best baby cribs
Best baby cribsBest baby cribs
Best baby cribs
 
35 k+ñre gyldenl+©ve_fuglsangudgravningen
35 k+ñre gyldenl+©ve_fuglsangudgravningen35 k+ñre gyldenl+©ve_fuglsangudgravningen
35 k+ñre gyldenl+©ve_fuglsangudgravningen
 
Power of prizes to drive innovation
Power of prizes to drive innovationPower of prizes to drive innovation
Power of prizes to drive innovation
 
26 michael borrelund+©_tietgenbyen
26 michael borrelund+©_tietgenbyen26 michael borrelund+©_tietgenbyen
26 michael borrelund+©_tietgenbyen
 
Companies financial result updated on 25 february 2016
Companies financial result updated on 25 february 2016Companies financial result updated on 25 february 2016
Companies financial result updated on 25 february 2016
 
Distribution Planning
Distribution PlanningDistribution Planning
Distribution Planning
 
Studie proveditelnosti institucionálního zajištění navrhovaného systému hodno...
Studie proveditelnosti institucionálního zajištění navrhovaného systému hodno...Studie proveditelnosti institucionálního zajištění navrhovaného systému hodno...
Studie proveditelnosti institucionálního zajištění navrhovaného systému hodno...
 
Financial Ratios
Financial RatiosFinancial Ratios
Financial Ratios
 
Ict activities of Third Quarter
Ict activities of Third QuarterIct activities of Third Quarter
Ict activities of Third Quarter
 

Similar to By two project ict

CSCI-383 Lecture 5-6-7: Object-Oriented Design
CSCI-383 Lecture 5-6-7: Object-Oriented DesignCSCI-383 Lecture 5-6-7: Object-Oriented Design
CSCI-383 Lecture 5-6-7: Object-Oriented DesignJI Ruan
 
Week 4 Assignment - Software Development PlanScenario-Your team has be.docx
Week 4 Assignment - Software Development PlanScenario-Your team has be.docxWeek 4 Assignment - Software Development PlanScenario-Your team has be.docx
Week 4 Assignment - Software Development PlanScenario-Your team has be.docxestefana2345678
 
A Development of Android-based Mobile Application for Getting Ideal Weight
A Development of Android-based Mobile Application for Getting Ideal WeightA Development of Android-based Mobile Application for Getting Ideal Weight
A Development of Android-based Mobile Application for Getting Ideal WeightTELKOMNIKA JOURNAL
 
A SECURITY ALERT SYSTEM USING GSM.pptx
A SECURITY ALERT SYSTEM USING GSM.pptxA SECURITY ALERT SYSTEM USING GSM.pptx
A SECURITY ALERT SYSTEM USING GSM.pptxshubhammaurya714034
 
Durgesh o level_2nd_part
Durgesh o level_2nd_partDurgesh o level_2nd_part
Durgesh o level_2nd_partDurgesh Singh
 
osd ncc education assingment l4dc
osd ncc education assingment l4dcosd ncc education assingment l4dc
osd ncc education assingment l4dcDavid Parker
 
BYOD Implementation Plan
BYOD Implementation PlanBYOD Implementation Plan
BYOD Implementation Planrachelmx
 
Computational Aptitude of Handheld Calculator
Computational Aptitude of Handheld CalculatorComputational Aptitude of Handheld Calculator
Computational Aptitude of Handheld Calculatormathsmasters
 
How to design and build great apps (with moderator notes)
How to design and build great apps (with moderator notes)How to design and build great apps (with moderator notes)
How to design and build great apps (with moderator notes)Andreas Weder
 
Minor Project Synopsis on Data Structure Visualizer
Minor Project Synopsis on Data Structure VisualizerMinor Project Synopsis on Data Structure Visualizer
Minor Project Synopsis on Data Structure VisualizerRonitShrivastava057
 
HCI LAB MANUAL
HCI LAB MANUAL HCI LAB MANUAL
HCI LAB MANUAL Um e Farwa
 
Latest proposal project info zakat
Latest proposal project info zakatLatest proposal project info zakat
Latest proposal project info zakatUmmi Zakiah
 
HCI Group Project Report
HCI Group Project ReportHCI Group Project Report
HCI Group Project Reportweilong1113
 
Ch9visualtech
Ch9visualtechCh9visualtech
Ch9visualtechdawklein
 
Email first a lean strategy & a workflow lens
Email first  a lean strategy & a workflow lensEmail first  a lean strategy & a workflow lens
Email first a lean strategy & a workflow lensMike Biggs GAICD
 
Running Head HUMAN-COMPUTER INTERFACE 1HUMAN-COMPUTER IN.docx
Running Head HUMAN-COMPUTER INTERFACE 1HUMAN-COMPUTER IN.docxRunning Head HUMAN-COMPUTER INTERFACE 1HUMAN-COMPUTER IN.docx
Running Head HUMAN-COMPUTER INTERFACE 1HUMAN-COMPUTER IN.docxwlynn1
 

Similar to By two project ict (20)

Senior Design Final Report
Senior Design Final ReportSenior Design Final Report
Senior Design Final Report
 
2ND REPORT
2ND REPORT2ND REPORT
2ND REPORT
 
CSCI-383 Lecture 5-6-7: Object-Oriented Design
CSCI-383 Lecture 5-6-7: Object-Oriented DesignCSCI-383 Lecture 5-6-7: Object-Oriented Design
CSCI-383 Lecture 5-6-7: Object-Oriented Design
 
Week 4 Assignment - Software Development PlanScenario-Your team has be.docx
Week 4 Assignment - Software Development PlanScenario-Your team has be.docxWeek 4 Assignment - Software Development PlanScenario-Your team has be.docx
Week 4 Assignment - Software Development PlanScenario-Your team has be.docx
 
A Development of Android-based Mobile Application for Getting Ideal Weight
A Development of Android-based Mobile Application for Getting Ideal WeightA Development of Android-based Mobile Application for Getting Ideal Weight
A Development of Android-based Mobile Application for Getting Ideal Weight
 
A SECURITY ALERT SYSTEM USING GSM.pptx
A SECURITY ALERT SYSTEM USING GSM.pptxA SECURITY ALERT SYSTEM USING GSM.pptx
A SECURITY ALERT SYSTEM USING GSM.pptx
 
Durgesh o level_2nd_part
Durgesh o level_2nd_partDurgesh o level_2nd_part
Durgesh o level_2nd_part
 
osd ncc education assingment l4dc
osd ncc education assingment l4dcosd ncc education assingment l4dc
osd ncc education assingment l4dc
 
BYOD Implementation Plan
BYOD Implementation PlanBYOD Implementation Plan
BYOD Implementation Plan
 
Computational Aptitude of Handheld Calculator
Computational Aptitude of Handheld CalculatorComputational Aptitude of Handheld Calculator
Computational Aptitude of Handheld Calculator
 
How to design and build great apps (with moderator notes)
How to design and build great apps (with moderator notes)How to design and build great apps (with moderator notes)
How to design and build great apps (with moderator notes)
 
Minor Project Synopsis on Data Structure Visualizer
Minor Project Synopsis on Data Structure VisualizerMinor Project Synopsis on Data Structure Visualizer
Minor Project Synopsis on Data Structure Visualizer
 
HCI LAB MANUAL
HCI LAB MANUAL HCI LAB MANUAL
HCI LAB MANUAL
 
Latest proposal project info zakat
Latest proposal project info zakatLatest proposal project info zakat
Latest proposal project info zakat
 
HCI Group Project Report
HCI Group Project ReportHCI Group Project Report
HCI Group Project Report
 
UX Strategy
UX StrategyUX Strategy
UX Strategy
 
TO DO list APP Called Do It
TO DO list APP Called Do ItTO DO list APP Called Do It
TO DO list APP Called Do It
 
Ch9visualtech
Ch9visualtechCh9visualtech
Ch9visualtech
 
Email first a lean strategy & a workflow lens
Email first  a lean strategy & a workflow lensEmail first  a lean strategy & a workflow lens
Email first a lean strategy & a workflow lens
 
Running Head HUMAN-COMPUTER INTERFACE 1HUMAN-COMPUTER IN.docx
Running Head HUMAN-COMPUTER INTERFACE 1HUMAN-COMPUTER IN.docxRunning Head HUMAN-COMPUTER INTERFACE 1HUMAN-COMPUTER IN.docx
Running Head HUMAN-COMPUTER INTERFACE 1HUMAN-COMPUTER IN.docx
 

More from Happy Nezza Aranjuez

UCSP: Social and Political Stratification
UCSP: Social and Political StratificationUCSP: Social and Political Stratification
UCSP: Social and Political StratificationHappy Nezza Aranjuez
 
Exhibit 3 Earth Science: Effects of Human Activities to the Water Resources
Exhibit 3 Earth Science: Effects of Human Activities to the Water ResourcesExhibit 3 Earth Science: Effects of Human Activities to the Water Resources
Exhibit 3 Earth Science: Effects of Human Activities to the Water ResourcesHappy Nezza Aranjuez
 
Photography and Image Image Manipulation Programs
Photography and Image Image Manipulation ProgramsPhotography and Image Image Manipulation Programs
Photography and Image Image Manipulation ProgramsHappy Nezza Aranjuez
 
The Hypothalamus and Pituitary Gland
The Hypothalamus and Pituitary GlandThe Hypothalamus and Pituitary Gland
The Hypothalamus and Pituitary GlandHappy Nezza Aranjuez
 
The Hypothalamus and Pituitary Gland
The Hypothalamus and Pituitary GlandThe Hypothalamus and Pituitary Gland
The Hypothalamus and Pituitary GlandHappy Nezza Aranjuez
 
Reaksiyon para sa pagtatangha na "May Pag-asa"
Reaksiyon para sa pagtatangha na "May Pag-asa"Reaksiyon para sa pagtatangha na "May Pag-asa"
Reaksiyon para sa pagtatangha na "May Pag-asa"Happy Nezza Aranjuez
 

More from Happy Nezza Aranjuez (20)

Photoshop
PhotoshopPhotoshop
Photoshop
 
Photoshop
PhotoshopPhotoshop
Photoshop
 
Ucsp presentation
Ucsp presentationUcsp presentation
Ucsp presentation
 
UCSP: Social and Political Stratification
UCSP: Social and Political StratificationUCSP: Social and Political Stratification
UCSP: Social and Political Stratification
 
Exhibit 3 Earth Science: Effects of Human Activities to the Water Resources
Exhibit 3 Earth Science: Effects of Human Activities to the Water ResourcesExhibit 3 Earth Science: Effects of Human Activities to the Water Resources
Exhibit 3 Earth Science: Effects of Human Activities to the Water Resources
 
Convection Current
Convection CurrentConvection Current
Convection Current
 
Jupiter
JupiterJupiter
Jupiter
 
Pagbabago sa Wika sa kasalukyan
Pagbabago sa Wika sa kasalukyanPagbabago sa Wika sa kasalukyan
Pagbabago sa Wika sa kasalukyan
 
Calcium isotopes
Calcium isotopesCalcium isotopes
Calcium isotopes
 
Payong sa tuwing umuulan
Payong sa tuwing umuulanPayong sa tuwing umuulan
Payong sa tuwing umuulan
 
Photography and Image Image Manipulation Programs
Photography and Image Image Manipulation ProgramsPhotography and Image Image Manipulation Programs
Photography and Image Image Manipulation Programs
 
Visual basic menu
Visual basic menuVisual basic menu
Visual basic menu
 
The Hypothalamus and Pituitary Gland
The Hypothalamus and Pituitary GlandThe Hypothalamus and Pituitary Gland
The Hypothalamus and Pituitary Gland
 
The Hypothalamus and Pituitary Gland
The Hypothalamus and Pituitary GlandThe Hypothalamus and Pituitary Gland
The Hypothalamus and Pituitary Gland
 
Microphone Bearer
Microphone BearerMicrophone Bearer
Microphone Bearer
 
Reaksiyon para sa pagtatangha na "May Pag-asa"
Reaksiyon para sa pagtatangha na "May Pag-asa"Reaksiyon para sa pagtatangha na "May Pag-asa"
Reaksiyon para sa pagtatangha na "May Pag-asa"
 
Filipino sanaysay
Filipino sanaysayFilipino sanaysay
Filipino sanaysay
 
Ict paired project (2nd Quarter)
Ict paired project (2nd Quarter)Ict paired project (2nd Quarter)
Ict paired project (2nd Quarter)
 
Dish Gardening Documentation
Dish Gardening DocumentationDish Gardening Documentation
Dish Gardening Documentation
 
Argumentative Essay
Argumentative EssayArgumentative Essay
Argumentative Essay
 

Recently uploaded

Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphThiyagu K
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpinRaunakKeshri1
 
General AI for Medical Educators April 2024
General AI for Medical Educators April 2024General AI for Medical Educators April 2024
General AI for Medical Educators April 2024Janet Corral
 
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...PsychoTech Services
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfAyushMahapatra5
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDThiyagu K
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Sapana Sha
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfJayanti Pande
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAssociation for Project Management
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...christianmathematics
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 

Recently uploaded (20)

Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpin
 
General AI for Medical Educators April 2024
General AI for Medical Educators April 2024General AI for Medical Educators April 2024
General AI for Medical Educators April 2024
 
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdf
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SD
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across Sectors
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 

By two project ict

  • 1. ________ ICT PROJECT -------- Happy Nezza B. Aranjuez Shaica S. Cordez 10 – Einstein VISUAL BASIC 6.0
  • 2. INTRODUCTION In today's generation, people are surrounded by technology. Technology is ubiquitous and we can see it everywhere. We use it in our everyday lives for communication, transportation and in getting information. We also use technology to make difficult tasks simpler. Specifically we use programming in solving problems encountered by the people. We find ways so that we could experience convenience and we can easily go on with our lives. In order to apply the lessons we have learned in our subject Information and Communication Technology 10, we students of 10-Einstein are required to make our own program that could help us in our studies. We need to make calculators involving our three subjects namely Math, Science and Health and incorporate what we learned in the MDAS activity in Visual Basic. We thought of computations and problems needed in our subjects. We chose the problems that will use the help of calculator and will involve very large numbers. Inputting very large numbers in the calculator can be confusing so we found a way to make things easier. This can help students in their subjects especially in the incoming quarters. These programs wouldn’t only be beneficial to our fellow students but also to the people around us. We made a program that could compute for the average water requirement a person should intake in a day. This could be of great help to reduce the case of dehydration especially on dry season. This computes also for the conversion of ounce, millilitres and glass. We also made the Base-Percentage-Rate conversion so it would be easier for students to understand the concept of getting the n% of a number and then getting the percentage of a percent. Lastly, we also made a program that could compute for the number of moles and molar mass, a project dedicated to chemistry students and enthusiasts who would like to further understand the lesson of molar mass and moles. As we study more about the other features of Visual Basic, surely it wouldn’t be impossible anymore for us to make complicated calculators and formula machines. If we could make this happen we wouldn’t be far from the super-modernistic future we imagine. But behind all this, let’s not forget to look back and be grateful to the people who contributed their gifts of talents for the better of the people today.
  • 3. PROCESS PLANNING We made plans in our program and all of the plans are based on our lessons in the past years. We chose topics from these, analyzed the flow of the program and visualize the kind of programs we will make. We thought of harder topics and tried to make it simpler for a user. Instead of the user doing it manually in just a simple calculator and always saving the answer, we made a more convenient way of doing things and had the formulas set in our code so that in one click, the user can get the information he needs. For our science. We planned to do about the computation of number of moles and molar masses, which is obviously part of chemistry. For Math, we planned to do the process of percentage, base and rate that could help in investments. Lastly, for Health, we planned to compute the average amount of water a person has to drink in a day with three different unit of measurement for volume so that they could easily measure the volume of water depending on the unit they use mostly. CREATING THE GRAPHICAL INTERFACE In creating the graphical interface, we tried it also in a way that the user can operate the program easily and he will not get confused. We also put some pictures and color schemes to add to the aesthetics. In each program there is just one button and hopefully that one button can show all the outputs or results already. We thought of how the user can best manipulate the system of the program. We tried using a colourful scheme so that whenever the user uses the programs he/she wouldn’t get bored easily and will really try out the program. Since the graphical interface has also great influence on user’s enthusiasm to use the program we made sure that it would get the attention of the user and would really be a satisfactory to the eye of the user. For us, it is easier if you work on the design and layout last so you would have enough time to think of what color combinations you would like to use for your program. CODING AND TESTING In coding, we already knew how we could do the algorithm without really much help and problem. We just based the codes based on our MDAS activity where we used a combination of the four operations. We also added other things we learned in our first quarter and somehow incorporate it with our
  • 4. output. It is also important that the programs run and there should be no problems that will be encountered by the users. Since we’re just basing it from a past lesson we could follow the pattern and try experimenting the pattern that we already have. We could add more operations and try combining different concepts with each other. Even though we had a lot of trials in running the project that’s fine because we were able to make smoothly running programs. We made sure that there would be no error anymore on the command, operation and the control. MAINTENANCE The programs we made could still be modified and improved. For the water requirement we recommend using a combo list on the weight part and try taking in pounds as one of the choices there. Also try adding more conversion factors like pint, quart, tablespoon etc. BENEFITS 1. The students. The students can readily use the programs that we made if they have assignments especially in our Science program. Or they can just use this to check their answers after answering their problem sets in chemistry. Students who will be using our program in math could also understand their lesson better by using out calculator as basis for their answers while computing. 2. The other users. Besides students, other people could also use these programs. In our Math program, normal people could use our calculator to find percentage, base and rate. It could be used by executives or small store owners and business involves lot of numbers with the percent sign always. Another is the program in Health. Water belonging to the category of food is one of the basic needs of people. People need to know if they still maintain the appropriate amount of water in their body. The correct measurement of amount in liters can be converted into number of glasses and it would be easier for a person to monitor the amount of water he should be drinking. 3. Maker and programmer. We, as the programmers also benefitted because we were able to apply what we learned from those three subjects and especially what we understood in ICT. It shows that when someone is learning, it could be a source of a new idea or a new thought which would lead to more beneficial and useful innovations in the future.
  • 5.
  • 6.
  • 7. CODE Private Sub cmdMass_Click() elem1 = Val(txt1) * Val(txt2) elem2 = Val(txt3) * Val(txt4) elem3 = Val(txt5) * Val(txt6) mass = elem1 + elem2 + elem3 lblGrams.Caption = mass End Sub Private Sub cmdNext_Click() Form2.Show End Sub Private Sub Command1_Click() eleme1 = Val(txt1) * Val(txt7) eleme2 = Val(txt2) * Val(txt8) eleme3 = Val(txt3) * Val(txt9) summ = eleme1 + eleme2 + eleme3 grams = Val(txt) result = grams / summ lblMoles.Caption = result lblName.Text = txt5 End Sub Private Sub cmdHowmany_Click() eleme1 = Val(txt1) * Val(txt7) eleme2 = Val(txt2) * Val(txt8) eleme3 = Val(txt3) * Val(txt9) summ = eleme1 + eleme2 + eleme3 grams = Val(txt4) result = grams / summ lblMoles.Caption = result End Sub
  • 8. CODE Private Sub Command1_Click() ans = 1.1 * weight Text2.Text = ans milli.Text = ans * 30 glass.Text = ans * 0.125 End Sub Private Sub Command2_Click() Text2.Text = " " milli.Text = " " glass.Text = " " weight.Text = " " End Sub
  • 9.
  • 10. CODE Private Sub Command1_Click(Index As Integer) base = percent / rate base.Text = base End Sub Private Sub Command2_Click(Index As Integer) base.Text = " " percent.Text = " " rate.Text = " " End Sub Private Sub Command3_Click(Index As Integer) percent = base * rate percent.Text = percent End Sub Private Sub Command4_Click(Index As Integer) rate = percent / base rate.Text = rate End Sub