Gui 67

Download as pdf or txt
Download as pdf or txt
You are on page 1of 14

Maharashtra Board of Technical Education,

Mumbai

GOVERNMENT POLYTECHNIC, SOLAPUR

DIPLOMA IN COMPUTER TECHNOLOGY


Academic year 2023-24

GAD(22034)

A
MICRO-PROJECT
ON

“Grocery Shop Management System”

Submitted by:

Enrollment no. Name Roll No.


2200150199 Samarth S Alandkar 67

Submitted to:

Miss . Varsha Mangalaram Ma’am.

1
CERTIFICATE

This is to certify that the following student Samarth

Suresh Alandkar, Roll No. 67 of Branch CM4I of the institute

Government Polytechnic, Solapur (0015) has completed the

micro-project work satisfactorily under my supervision/guidance

for the subject GAD (22034) in the academic year 2023-2024 as

prescribed in the curriculum.

Guide Name – Miss. Varsha Mangalaram Ma’am.

Date & Sign –

HOD PRINCIPAL

2
INDEX

Sr.No Page
Title
. No.
1. Acknowledgement 4
2. Abstract 5
3. Introduction 6
4. Computer System Used 7
Code 8-10
5. Program
Output 11-12
6. Conclusion 13
7. Reference 14

3
ACKNOWLEDGEMENT

In the accomplishment of this micro-project successfully,


many people have best owned upon me their blessings and
heart-privileged support. Primarily, I would like to express a
special thanks of gratitude to the Principal Sir of the Government
Polytechnic, Solapur for giving this golden opportunity with all the
required facilities for completing this micro-project of our group.

I would like to extend my gratitude to our sir, whose


valuable guidance has been the ones that helped us patch this
project and make it full proof success. Their suggestions and
instructions have served as the major contributor towards the
completion of the micro-project.

I would also like to thank my parents who have helped with


their valuable suggestions and provided the required resources
needed for the micro-project.

4
ABSTRACT
The purpose of the Micro-project is develop new skills in
an individual and enhance this skill by using it at industry level.
A Graphical User Interface (GUI) is a digital interface in
which a user interacts with graphical components such as icons,
buttons, and menus. In a GUI, the visuals displayed in the user
interface convey information relevant to the user, as well as
actions that they can take.
In this project, I’ve created a Cafe Management System
GUI interface using Vb.net language by applying coding and
drag and drop methods.

5
INTRODUCTION

A Graphical User Interface (GUI) is a digital interface in


which a user interacts with graphical components such as icons,
buttons, and menus. In a GUI, the visuals displayed in the user
interface convey information relevant to the user, as well as
actions that they can take.
This microproject highlights the course outcome to develop
GUI Application using Form Controls Using Vb.net. I have
basically made a grocery management shop using different
controls.
This microproject is made in such a way that it is user
friendly and easy to navigate between all the functions of the
vb.net.

6
SIGNIFICANCE OF PROJECT

First I’ve have created Grocery Shop Software.I’ve have used


various websites so as to gather the information of gui
applications and applied them in our project as per the project
requirement and use.

SCOPE OF PROJECT

I’ve developed the project such that the Grocery shop software
will help to buy the grocery online and help to ease and store
billing system.

SOFTWARE REQUIREMENTS USED

1.Operating System

Windows11

2.Web browsers.

HARDWARE EQUIPMENTS

1. Personal laptop.

2. 8GB RAM Windows-11 intel i5

7
PROGRAM CODE
 Login Page Coding :

Public Class Login

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


Handles Button1.Click
If Unametb.text = " " Or Passwordtb.text = " " Then
MsgBox("Enter username and password");
ElseIf Unametb.text = "Admin" And Passwordtb.text =
"Password" Then
Dim obj = New billing
obj.Show()
Me.Hide()
Else
MsgBox("Wrong username or Password")
Unametb.text = ""
Passwordtb.text = ""
End If

End Sub

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


Label4.Click
Dim obj = New billing
obj.Show()
Me.Hide()
End Sub
End Class

 Items Page Coding :

Public class Items

8
Private Sub Button1_Click(Sender As Object, e Aa
EventArgs)Handles Button1.Click
If Itnametb.Text=” “ or Qtytb.Text =” “ or CatCb.SelectedIndex=-1
or PriceTb.Text=” “ Then
MsgBox(“Missing Information”)
Else
Try
Con.Open()
Dim.query=”insert into Itemtb1 values(“ “ & Itnametb.text &
“Otytb.Text “,” &Pricetb.Text&”,”&Catchcb.Selected Text ()&”)
Dim Cmd As SqlCommand
Cmd=new SqlCommand(query,con)
Cmd.ExecuteQuery()
MsgBox(“Items Saved Successfully”)
Con.Close()
Catch ex As Exception

End Try
End If
End Sub
End Class

 Billing Page Coding


Public Class Billing
Private Sub Button1_Click(sender As Object, e As
EventArgs)Handles Button1.Click
If PriceTb.Text=” “ Or Qtytrb.Text=” “ Then
MsgBox(“Enter the Quantity”)
ElseIf Itnametb.text =” “ Or Qtytb.text=” “ Then
MSgBox(“Select the Item”)
Else
Dim rnum As Integer = BillDGV.Rows.Add()
I=i+1
Dim total=Convert.ToInt32(Qtytb.text)*
9
Convert.ToInt32(PriceTb.Text)
BillDGV.Rows.Item(rnum).Cells(“Column1”).Value=i
BillDGV.Rows.Item(rnum).Cells(“Column2”).Value=Itnametb.text
BillDGV.Rows.Item(rnum).Cells(“Column3”).Value=Pricetb.Text
BillDGV.Rows.Item(rnum).Cells(“Column4”).Value=total
GrdTotal=GrdTotal+total

End If
End Sub
End Class

10
OUTPUT

11
12
CONCLUSION

The main course outcome behind this micro-project


was to develop the GUI application using Form Controls
using Vb.net. Hence completing this micro-project, we think
that this course outcome is successfully achieved.

This microproject mainly shows us how to


implement VB.net functions into real world and how to
utilize them perfectly.VB.net supports many classes and
properties but utilizing those properties correctly to get
required output is important.

This project was helpful increasing vocabulary in the


classes and properties we know in this language.

13
REFERENCES

 www.google.com
 www.youtube.com
 www.geekforgeeks.org
 www.w3schools.in

14

You might also like