0% found this document useful (0 votes)
24 views9 pages

Umesh Gad Micro3

The document describes a book shop management system project built using VB.NET. It includes an introduction, course outcomes, skills developed, code snippets and output, and conclusions about learning experiences from the project.

Uploaded by

ayushnale
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)
24 views9 pages

Umesh Gad Micro3

The document describes a book shop management system project built using VB.NET. It includes an introduction, course outcomes, skills developed, code snippets and output, and conclusions about learning experiences from the project.

Uploaded by

ayushnale
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/ 9

Maharashtra State Board of Technical Education

Government Polytechnic Murtizapur

Computer Engineering Department


2023-24

Subject
GUI Applications Development Using VB.Net (Subject code:- 22034)

Micro-Project Topic
Book Shop Management System
Guided by
Mr.P.R.Satav Sir

Submitted By
Sr.No. Roll No. Enrollment No. Name
1 46 2212410186 Umesh Motising Patil
2 47 2212410187 Sharvari Vinod Rase
3 48 2212410188 Guddu Namdev Rathod
4 49 2212410189 Ayush Prashant Raut
5 50 2212410190 Harshal Sunil Raut

1
MAHARASHTRA STATE
BOARD OF TECHNICAL EDUCATION
Certificate
This is to Verify That
Mr./Ms………………………………………………...Roll No…………of Fourth
Semester of Diploma in ......................................................................................... of
Institute………………………………..…………………..……………………………
(Code :………….……..) Has completed the Micro-Project Satisfactory in course
GUI Application development Using VB.net (22034) for the academic year
2023-2024 as prescribed in the curriculum.

Place…………………. Enrollment no…………………...


Date………………….. Exam Seat No.…………………..

Course Teacher Head of the Department Principal

2
----Index----
Sr. Topic Page
No. No.
1 Introduction 04

2 Cource outcome 05

3 Skill Develop 05

4 Code & Output 06-08

6 Conclusion 09

7 References 09

3
----INTRODUCTION----
Visual Basic .NET (VB.NET) is a powerful programming language
developed by Microsoft. It is widely used for building Windows-based
applications, web applications, and web services. VB.NET is an object-oriented
programming language that provides a framework for developing various types of
software solutions.
It is an online web application where the customer can purchase book online. This
software is developed to maintain records of sales, purchase and staff records. The
online book shop website provides customer with online shopping through a web
browser. The purpose of this software is to manage the books in the bookshop. It
includes the order processing, stock management and we developed this software to
maintain records of sales, purchase and staff records. Here, We are try to developed
this system which is provide the automation on the any type of the bookshop. Visual
Basic 6.0 is Microsoft latest and greatest version of the Visual Basic programming
language. Although writing programs can be a tedious chore at times Visual Basic
educes the efforts required on your part and marks programming enjoyable About
Visual Basic 6.0 Visual Basic marks many aspects of programming as
simple as dragging.

4
----COURSE OUTCOME----

 Use Visual Studio IDE to design application.


 Develop GUL Application using Text box,Lable,Button.
 Develop GUI Application Using From Control and its events.
 Applied Object Oriented concepts in GUI application

----SKILL DEVELOP----

1. Programming Proficiency: Building a Book Shop Mangement System involves


writing code in VB.NET, which improves your proficiency in the language. You'll
gain experience in handling variables, control structures, event handling, and
object-oriented programming concepts.

2. User Interface Design: Designing the login page's user interface (UI) requires
understanding of UI design principles and proficiency in using Visual Studio's GUI
designer tools. This includes arranging controls, setting properties, and creating an
intuitive layout for users.

4. Error Handling: Implementing robust error handling mechanisms is crucial for


providing a seamless user experience. This project allows you to practice error
handling techniques such as displaying informative error messages and gracefully
handling exceptions.

6.Software Testing: Testing the login page helps improve your skills in software
testing and quality assurance. You'll learn to identify and fix bugs, perform usability
testing, and ensure the application functions correctly under various scenarios.

7.Documentation: Writing documentation for the login page, including


requirements, design decisions, and user instructions, enhances your
communication skills and helps you articulate technical concepts effectively.

5
----CODE----
Public Class Form1
Dim total As Double
Dim cost, discount, nobook As Integer
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
ComboBox1.Items.Add("Mathemetics")
ComboBox1.Items.Add("Accounting")
ComboBox1.Items.Add("Economics")
ComboBox1.Items.Add("English")
ComboBox1.Items.Add("Marketing")
ComboBox2.Items.Add("Student")
ComboBox2.Items.Add("Teacher")
ComboBox2.Items.Add("Others")
End Sub

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


Button1.Click
nobook = Val(TextBox1.Text)
If ComboBox1.Text = "Mathemetics" Then
cost = 600
ElseIf ComboBox1.Text = "Marketing" Then
cost = 350
ElseIf ComboBox1.Text = "Accounting" Then
cost = 652
ElseIf ComboBox1.Text = "Economics" Then
cost = 510
Else
cost = 350
End If
If ComboBox2.Text = "Student" Then
discount = 65
ElseIf ComboBox2.Text = "Teacher" Then
discount = 85
Else
discount = 40

End If
total = (nobook * cost) - (nobook * discount)
TextBox2.Text = "Rs." & "" & FormatNumber(total)
6
End Sub

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


Button3.Click
Me.Close()
End Sub

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


Button2.Click
ComboBox1.Text = ""
ComboBox2.Text = ""
TextBox1.Text = ""
TextBox2.Text = ""
End Sub
End Class

7
----OUTPUT----

8
----CONCLUSION----
We are developing a Book Shop Management System in VB.NET using
Visual Studio is a rewarding project that offers developers a comprehensive
learning experience. Through this project, developers can enhance their
programming proficiency in VB.NET, improve their skills in user interface design,
database integration, error handling, security implementation, software testing, and
documentation.

By successfully completing this project, developers not only gain practical


experience in building a real-world application but also acquire valuable skills that
are applicable across various software development projects. Additionally, this
project serves as a foundation for further exploration and advancement in the field of
software development, empowering developers to tackle more complex challenges
and contribute meaningfully to the creation of innovative solutions.

Overall, developing a Book Shop Management System in VB.NET is an


excellent opportunity for developers to hone their skills, expand their knowledge,
and build a strong foundation for future endeavors in software development.

----REFERENCE----

 [https://docs.microsoft.com/en-us/dotnet/visual-
basic/](https://docs.microsoft.com/en-us/dotnet/visual-basic/)
 [https://docs.microsoft.com/en-
us/visualstudio/](https://docs.microsoft.com/en-us/visualstudio/)
 Books on VB.NET and Visual Studio development

You might also like