Vehich Store Project
Vehich Store Project
Introduction of Project
About VB.Net
About .Net Framework
About Access
Hardware & Software specification
SDLC
E-R Diagram
DFD
Table Design
Testing
Screen Design & Coding
Bibliography
About Project
Introduction to Sudarshan Motor’s Sales Management
In today’s modern world all the work is down in computer. The project
Automation for Sudarshan Motor’s Sales management has been developed for the
purpose Of maintaining records in organized and proper way .this software
developed for the member to maintain the records. In this software company have
keep all records of customer, order, view etc. There are following task in the
project-
Visual basic is the language that many developers-including Microsoft themselves- are using
to write new applications software. At the last count there were over a million Visual Basic
applications in commercial use! Look closely at any modern Windows database, spreadsheet or
word-processing package, whether from Microsoft or other leading software house, and you will
find that its macro language is either a variety of Visual Basic, or almost identical to it. For this
reason, anyone who wants to become a Windows ‘expert’ should master this language, and all
Windows users, beyond the most casual, should have a grasp of it.Visual Basic is substantially
different from traditional Basics, though are similarities. If you are already competent in Basic, it
will help. Visual Basic requires a different approach to developing programs and to learning the
language. In other Basics, you could develop a program line by, testing each command as you
write it. You can take the same linear approach to learning the language, mastering one
command at a time, and steadily building your knowledge Programming in Visual Basic was
written around Visual Basic 3.0, Standard edition but virtually all of the techniques and concepts
apply equally well to Visual Basic 2.0. It does not attempt to cover the more advanced features
or the development of free-standing commercial applications, for which the Professional Edition
is essential. While there is a version of Visual Basic form DOS, it seems to be falling out of use
and has been ignored in this book. Windows is the natural medium form Visual Basic.
.NET FRAMEWORK
This is the first tutorial as part of the Visual Basic .NET 2005 Training. In this tutorial
we will be learning about the basics of the .NET Framework Architecture, The .NET
vision, Common Language Runtime (CLR), .NET Framework Class Library and
Microsoft Intermediate Language (MSIL). It's very important to learn the basics before
we actually start with the Programming. The .NET framework is a software technology
that is directed towards connecting information, people, systems and devices seamlessly.
The high level of software integration that has been attempted through use of XML web
services enables the creation of small, discrete, building block types of applications.
These applications are connected to other applications over the Internet.
Central to the .NET framework architecture is the effort to provide support to for the next
generation solutions. The direction of change is to ensure that software deployment and
versioning conflicts are avoided or minimized in the .NET Framework. User defined
codes are released from the confines of the local storage systems and can be stored
anywhere on a network and executed from any point in the network. Performance
problems associated with scripted and interpreted environments are removed. Codes can
be safely executed and the developer experience is consistent across widely varying types
of applications, such as Windows based applications and web based applications. The
thrust of design is towards creating a standard communication facility that is standardized
so that .NET codes can be integrated with other codes easily and seamlessly.
At the core of the .NET infrastructure is the Common Language Runtime (CLR) and
the .NET Framework class l
The runtime functions, like an agent, managing code at execution time. It provides core
services such as memory management, thread management and ‘remoting’. It enforces
strict type safety and ensures code accuracy. This makes for security and robustness and
provides a platform for running managed code.
The .NET Framework provides several runtime hosts. It also supports the development of
third-party runtime hosts. For example, ASP.NET hosts the runtime to provide a scalable,
server-side environment for managed code. ASP.NET works directly with the runtime to
enable ASP.NET applications and XML Web services.
The .NET Framework can be hosted by unmanaged components such as the Internet
Explorer. These load the common language runtime into their processes and initiate the
execution of managed code. This creates a software environment that can exploit both
managed and unmanaged features. This makes for mobility of the code.
MS ACCESS
Access can be used for personal information management (PIM), in a small business to
organize and manage all data, or in an enterprise to communicate with servers. Microsoft
Access is a powerful program to create and manage your databases. It has many built in
features to assist you in constructing and viewing your information. Access is much more
involved and is a more genuine database application than other programs such as
Microsoft Works. This tutorial will help you get started with Microsoft Access and may
solve some of your problems, but it is a very good idea to use the Help Files that come
with Microsoft Access, or go to Microsoft's web site located at for further assistance.
First of all you need to understand how Microsoft Access breaks down a database. Some
keywords involved in this process are: Database File, Table, Record, Field, Data-type.
Here is the Hierarchy that Microsoft Access uses in breaking down a database.
HARDWARE SPECIFICATION
Hardware Requirement
PERSONAL COMPUTER – INTEL PC with minimum following
configuration
Software Requirement
Feasibility Study
The data collection that occurs during the initial investigation examines
system feasibility. There are three tests of feasibility namely technical, operational and economic.
1. Technical feasibility :-
It involves determining whether or not system can actually be
constructed to solve the problem at hand technically the system is feasible due to the following.
The necessary technology exists that is needed for the system
The system has technical capacity to hold the required data. If the system is
developed, it can be further expanded.
There is data security in the system.
2. Operational feasibility :-
E-r
diagram
E-R Diagram
Model
Price
date
UserI Passwor
D d name
address
Order cont
no
Order Scooty
Model
Price
date
UserI Passwor
D d name
address
Order cont
no
Bike Order
Data folw
Diagram
O level DFD
User
User Request Response User Home
Login
Response
1 level DFD
Home
User Request Logi Valid Result Output
n
Invalid
Information
Response
Table design
Table Designs
Bike Order
Scooty Order
Screen
&
codding
Main Page
Scooty Login
Maestro
Pleasure
Order Sccoty
Bike Login
Karizma
Ignitor
Passion Xro
Karizmaa ZMR
Bike Order
View Order
View Bike Order
Login
Bike Home
Bike Order
Imports System.Data.OleDb
Public Class orderbike
Dim da As OleDbDataAdapter
Dim ds As New DataSet
Dim con As String =
"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=E:\Hero
Moters\sudarshanMoters\sudarshanMoters\hero.mdb;Persist
Security Info=True"
Private Sub Button1_Click(ByVal sender As
System.Object, ByVal e As System.EventArgs) Handles
Button1.Click
If (TextBox1.Text = "") Then
MsgBox("Insert Order No.")
ElseIf (ComboBox1.Text = "Select Model") Then
MsgBox("Select Model")
ElseIf (TextBox2.Text = "") Then
MsgBox("Enter Prize")
ElseIf (TextBox4.Text = "") Then
MsgBox("Enter Name")
ElseIf (TextBox5.Text = "") Then
MsgBox("Enter Address")
ElseIf (TextBox6.Text = "") Then
MsgBox("Enter Contact No")
Else
da = New OleDbDataAdapter("insrt into sorder
values('" & TextBox1.Text & "','" & ComboBox1.Text & "','"
& TextBox2.Text & "','" & TextBox3.Text & "','" &
TextBox4.Text & "','" & TextBox5.Text & "','" &
TextBox6.Text & "')", con)
da.Fill(ds)
MsgBox("Your Scooty Successfully Booked")
End If
End Sub
Private Sub Button2_Click(ByVal sender As
System.Object, ByVal e As System.EventArgs) Handles
Button2.Click
Me.Hide()
bike.Show()
End Sub
End Class
Scooty Home
Scooty Order
Imports System.Data.OleDb
Public Class odrescooty
Dim da As OleDbDataAdapter
Dim ds As New DataSet
Dim con As String =
"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=E:\Hero
Moters\sudarshanMoters\sudarshanMoters\hero.mdb;Persist
Security Info=True"
Private Sub Button1_Click(ByVal sender As
System.Object, ByVal e As System.EventArgs) Handles
Button1.Click
If (TextBox1.Text = "") Then
MsgBox("Insert Order No.")
ElseIf (ComboBox1.Text = "Select Model") Then
MsgBox("Select Model")
ElseIf (TextBox2.Text = "") Then
MsgBox("Enter Prize")
ElseIf (TextBox4.Text = "") Then
MsgBox("Enter Name")
ElseIf (TextBox5.Text = "") Then
MsgBox("Enter Address")
ElseIf (TextBox6.Text = "") Then
MsgBox("Enter Contact No")
Else
da = New OleDbDataAdapter("insrt into sorder
values('" & TextBox1.Text & "','" & ComboBox1.Text & "','"
& TextBox2.Text & "','" & TextBox3.Text & "','" &
TextBox4.Text & "','" & TextBox5.Text & "','" &
TextBox6.Text & "')", con)
da.Fill(ds)
Private Sub
ViewScootyOrderToolStripMenuItem_Click(ByVal sender As
System.Object, ByVal e As System.EventArgs) Handles
ViewScootyOrderToolStripMenuItem.Click
DataGridView1.Visible = True
DataGridView2.Visible = False
End Sub
Scooty Login
End Sub
End Sub
End Class
STEVEN HOLZNER
4. www.google.co.in