0% found this document useful (0 votes)
9 views12 pages

Gad Project

The document describes a Balloon Hitting Game project created by students. The game allows players to pop balloons within a time limit to score points and achieve high scores. The document includes an abstract, introduction, code, output, conclusion and references sections describing the game.

Uploaded by

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

Gad Project

The document describes a Balloon Hitting Game project created by students. The game allows players to pop balloons within a time limit to score points and achieve high scores. The document includes an abstract, introduction, code, output, conclusion and references sections describing the game.

Uploaded by

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

DIPLOMA IN COMPUTER TECHNOLOGY

ACEDAMIC YEAR 2023-2024

GUI Applicaton Development Using VB.net(GAD)


(22034)
MICROPROJECT REPORT ON

Balloon Hitting Game


Submitted by:
Roll
No. Enrolment No. Student Name
01 2200150186 Deshmukh Amit Jaychand

02
2200150195 Gobe Abhijit Santosh

03
2200150202 Kamble Ramesh Suresh

Submi ed to-Prof. Varsha Manglaram

Page | 1
CERTIFICATE
Certfied that this Micro-Project Report

Balloon Hitting Game


Is the work of

Roll
No. Enrolment No. Student Name

01 2200150186 Deshmukh Amit Jaychand

02 2200150195 Gobe Abhijit Santosh

03 2200150202 Kamble Ramesh Suresh

The student of Semester Fourth, Subject Name-GUI Applica on


Development Using VB.net(GAD)(22034) Diploma in Computer Technology,
2022-23.
This report is a par al fulfilment of subject GAD(22034) for the award of the
Diploma in Computer Technology, By MSBTE, and Mumbai.

Guide Name - Prof. Varsha Manglaram


Date & Sign -

Page | 2
INDEX

Sr.no. Content Page.no.

1 Abstract 4

2 Introducion 5

3 code 6

4 Output 9

5 Conclusion 10

6 References 11

Page | 3
Abstract

Our Balloon Hitting Game project offers an engaging


and immersive gaming experience centered around
the timeless joy of popping balloons. Players are
challenged to pop as many balloons as possible
within a set time limit, strategizing to maximize their
score while avoiding penalties. With vibrant visuals
and intuitive controls, the game caters to players of
all skill levels. Special balloons introduce elements of
risk and reward, adding depth to the gameplay.
Through this project, we aim to provide an
accessible and entertaining gaming experience that
fosters creativity and enjoyment. Join us as we
embark on a journey filled with color, excitement,
and endless balloon-popping fun.

Page | 4
introduction
Welcome to our Balloon Hitting Game project,
where fun meets challenge in a burst of
excitement! Prepare to embark on a thrilling
adventure of popping balloons and chasing high
scores. With vibrant visuals and intuitive
controls, players of all ages can enjoy the
excitement. Strategize your moves as you aim
for bonuses and dodge penalties to become the
ultimate balloon-popping champion. Our game
offers an accessible and inclusive experience for
gamers of all skill levels. Join us in this journey
of creativity and innovation as we redefine the
joy of balloon popping. Get ready to unleash
your skills and immerse yourself in a world of
colorful balloons and endless fun.

Page | 5
CODE

Public Class Form1


Public Score As Integer = 0
Dim Ren As New Random
Private Sub Timer1_Tick(sender As Object, e As EventArgs) Handles
Timer1.Tick
PictureBox1.Top -= 5
PictureBox2.Top -= 5
PictureBox3.Top -= 5
End Sub

Private Sub Timer2_Tick (sender As Object, e As EventArgs) Handles


Timer2.Tick
If PictureBox1.Location.Y < -60 Or PictureBox2.Location.Y < -60 Or
PictureBox3.Location.Y < -60 Then Timer1.Enabled = False
Timer2.Enabled = False
MessageBox.Show(“Game Over”)
End
If End
Sub

Private Sub PictureBox1_Click(sender As Object, e As EventArgs)


Handles PictureBox1.Click,
PictureBox2.Click, PictureBox3.Click
Score += 1
Label2.Text = Score

Dim x As Integer = Ren.Next(30, 400)


Sender.Location = New Point(x, 400)
End Sub

Private Sub Button1_Click(sender As Object, e As EventArgs) Handles


Button1.Click

Page | 6
If ComboBox1.Text = “Slow” Then
Timer1.Interval = 1000
End If

If ComboBox1.Text = “Fast” Then


Timer1.Interval = 50
End If
ComboBox1.Text = String.Empty
PictureBox1.Location = New Point(12, 76)
PictureBox2.Location = New Point(133, 234)
PictureBox3.Location = New Point(272, 378)

Timer1.Enabled = True
Timer2.Enabled = True
End Sub

Private Sub Button2_Click(sender As Object, e As EventArgs) Handles


Button2.Click
Timer1.Enabled = False
Timer2.Enabled = False
End Sub

Private Sub Button3_Click(sender As Object, e As EventArgs) Handles


Button3.Click
Timer1.Enabled = True
Timer2.Enabled = True
End Sub End
Class

Page | 7
OUTPUT

Page | 8
Page | 9
Page | 10
Conclusion

In conclusion, our Balloon Hitting Game


project promises an exhilarating and
captivating experience for players of all ages.
With its intuitive gameplay, vibrant visuals,
and strategic elements, the game offers endless
entertainment. We've strived to create a game
that not only entertains but also fosters
creativity and innovation. Through this project,
we've demonstrated the power of collaboration
and dedication in bringing ideas to life. We
invite players to immerse themselves in the
colorful world of balloon popping and embark
on a journey filled with excitement and fun.
Thank you for joining us on this adventure, and
we look forward to seeing you pop your way to
victory!

Page | 11
References

www.google.com
www.youtube.com

Page | 12

You might also like