ONLINE SHOPPING SYSTEM
PROBLEM DESCRIPTION
:-
This
project provides the software for ONLINE-SHOPPING.
The purpose of this project is to provide an easy shopping facility online and easy selling facility to the merchants of
all categories.
Scope :-
The
customers register with their details and get authentication for an authorized
Login.
The
software provides the following facilities to the customers :
- Facilitates
easy shopping online any where with free shipping (conditions apply)
- Provides
information about the products in categories
- Customers
are provided with up to date information on the products available
The
objective of this software is to provide easy assistance to both the customer
as well as the merchant with proper database and information.
SYSTEM
INTERFACES:-
Interfaces used :
The software
provides good graphical interface for the front end of the database and a good
informative interface for the rear end.
The system uses
4 main Phases:
1. Login Phase:
The registered user is allowed to log in to the Category Selection Phase.
2. Registration Phase:
A new user
registers here with Personal and Bank Account Details.
3. Category Selection Phase:
A category of the Products is chosen in order to Purchase
4. Purchase Phase:
The products
list along with Cost and Description are presented. The customer is allowed to make a choice of
Products and Shop.
User Interface:-
The user interface must be intuitive
and should be in such a way that it should make the customer to shop with
pleasure and without any assistance.
Hardware
Interface :-
The system
should have these hardware requirements :
·
The
processor should be compatible.
·
The
video device should support graphics
·
RAM
should be or greater than 120 MB
Software
Interfaces :-
The system
requires the support of the following
software:
·
Compatible
Web Browser
·
MySQL
for database for data storage
SITE
ADAPTATION REQUIREMENTS :-
·
The browser should support java.
·
The browser should be at least netscape
navigator v 4.0
USER
CHARACTERISTICS :-
- No pre
knowledge of html
- Should be
familiar with internet
- Should be
able to use and interact with the graphical user interface.
ASSUMPTIONS
AND DEPENDENCIES :-
·
May not support multiple user interface.
DATA STRUCTURE
:-
This Project includes a well defined
data structure that manipulates and stores data in the Database. Oracle is used
at the Backend as the Data Base
PERFORMANCE
REQUIREMENTS :-
Performance
requirements are :
1.
Good
working pc with all the requirements as stated in the hardware interfaces
2.
Works
for medium size information databases
3.
Should
not be overloaded
SAFETY &
RELIABILITY:-
·
The data and user details are highly protected
and the system assures high Reliability through Robust Security.
Only the Authorized, Registered Users are allowed to
Shop.
Login Form
Module Coding
Public cn As New ADODB.Connection
Public rs As New ADODB.Recordset
Public user As String
Login Form
Dim flag As Integer
Private Sub
Command1_Click()
s = "select * from reg where user_name = '" &
Text1.Text & "' and password = '" & Text2.Text &
"'"
If rs.State = 1 Then rs.Close
rs.CursorLocation = adUseClient
rs.Open s, cn, adOpenStatic, adLockBatchOptimistic
If rs.RecordCount = 1 Then
user = Text1.Text
Form2.Show
Unload Me
Else
MsgBox "Invalid Username Or Password..",
vbCritical, "Invalid Login!!"
End If
End Sub
Private Sub
Command2_Click()
Text1.Text = ""
Text2.Text = ""
End Sub
Private Sub
Command3_Click()
Form3.Show
End Sub
Private Sub
Command4_Click()
End
End Sub
Private Sub Form_Load()
If cn.State = 1 Then cn.Close
cn.Open "provider = msdaora.1; user id = scott;
password= tiger"
End Sub
Registration Form
Registered User Login
Registration Form
Private Sub
Command1_Click()
If rs.State = 1 Then rs.Close
rs.CursorLocation = adUseClient
'cn.Open "provider = msdaora.1; user id = scott;
password= tiger"
rs.Open "select * from reg ", cn, adOpenStatic,
adLockBatchOptimistic
rs.AddNew
rs(0) = Text1.Text
rs(1) = Text2.Text
rs(2) = Text3.Text
rs(3) = Text4.Text
rs(4) = Text5.Text
rs(5) = Text6.Text
rs(6) = Text7.Text
rs(7) = Text8.Text
rs.UpdateBatch
MsgBox ("New Member ADDED")
End Sub
Private Sub
Command2_Click()
Text1.Text = ""
Text2.Text = ""
Text3.Text = ""
Text4.Text = ""
Text5.Text = ""
Text6.Text = ""
Text7.Text = ""
Text8.Text = ""
End Sub
Private Sub Command3_Click()
Form1.Show
End Sub
Select Category Form
Select Category Form
Private Sub
Command1_Click()
If Option1.Value = True Then Form4.Show
If Option2.Value = True Then Form5.Show
If Option3.Value = True Then Form6.Show
If Option4.Value = True Then Form7.Show
If Option5.Value = True Then Form8.Show
End Sub
Private Sub
Command3_Click()
Form1.Show
End Sub
Televisions Form
Televisions Form
Dim total As Long
Dim p1 As String
Dim p2 As String
Dim p3 As String
Dim p4 As String
Dim p5 As String
Private Sub
Command1_Click()
rs.AddNew
If Check1.Value = 1 Then
total = total + 8000
rs(2) = p1
End If
If Check2.Value = 1 Then
total = total + 7000
rs(3) = p2
End If
If Check3.Value = 1 Then
total = total + 6000
rs(4) = p3
End If
If Check4.Value = 1 Then
total = total + 9000
rs(5) = p4
End If
If Check5.Value = 1 Then
total = total + 5000
rs(6) = p5
End If
rs(0) = user
rs(1) = DateValue(Now)
rs(7) = total
rs.UpdateBatch
MsgBox (total), 1, "AMOUNT PAYABLE"
MsgBox ("Thank You for your purchase")
End Sub
Private Sub
Command3_Click()
Form2.Show
End Sub
Private Sub Form_Load()
If cn.State = 1 Then cn.Close
If rs.State = 1 Then rs.Close
rs.CursorLocation = adUseClient
cn.Open "provider = msdaora.1; user id = scott;
password= tiger"
rs.Open "select * from lists ", cn, adOpenStatic,
adLockBatchOptimistic
total = 0
p1 = Label5.Caption
p2 = Label7.Caption
p3 = Label9.Caption
p4 = Label11.Caption
p5 = Label13.Caption
End Sub
Cell Phones Form
Cell Phones Form
Dim total As Long
Dim p1 As String
Dim p2 As String
Dim p3 As String
Dim p4 As String
Dim p5 As String
Private Sub
Command1_Click()
rs.AddNew
If Check1.Value = 1 Then
total = total + 15000
rs(2) = p1
End If
If Check2.Value = 1 Then
total = total + 10000
rs(3) = p2
End If
If Check3.Value = 1 Then
total = total + 15000
rs(4) = p3
End If
If Check4.Value = 1 Then
total = total + 10000
rs(5) = p4
End If
If Check5.Value = 1 Then
total = total + 5000
rs(6) = p5
End If
rs(0) = user
rs(1) = DateValue(Now)
rs(7) = total
rs.UpdateBatch
MsgBox (total), 1, "AMOUNT PAYABLE"
MsgBox ("Thank You for your purchase")
End Sub
Private Sub
Command3_Click()
Form2.Show
End Sub
Private Sub Form_Load()
If cn.State = 1 Then cn.Close
If rs.State = 1 Then rs.Close
rs.CursorLocation = adUseClient
cn.Open "provider = msdaora.1; user id = scott;
password= tiger"
rs.Open "select * from lists ", cn, adOpenStatic,
adLockBatchOptimistic
total = 0
p1 = Label5.Caption
p2 = Label7.Caption
p3 = Label9.Caption
p4 = Label11.Caption
p5 = Label13.Caption
End Sub
Apparels Form
Apparels Form
Dim total As Long
Dim p1 As String
Dim p2 As String
Dim p3 As String
Dim p4 As String
Dim p5 As String
Private Sub
Command1_Click()
rs.AddNew
If Check1.Value = 1 Then
total = total + 350
rs(2) = p1
End If
If Check2.Value = 1 Then
total = total + 800
rs(3) = p2
End If
If Check3.Value = 1 Then
total = total + 400
rs(4) = p3
End If
If Check4.Value = 1 Then
total = total + 600
rs(5) = p4
End If
If Check5.Value = 1 Then
total = total + 500
rs(6) = p5
End If
rs(0) = user
rs(1) = DateValue(Now)
rs(7) = total
rs.UpdateBatch
MsgBox (total), 1, "AMOUNT PAYABLE"
MsgBox ("Thank You for your purchase")
End Sub
Private Sub
Command3_Click()
Form2.Show
End Sub
Private Sub Form_Load()
If cn.State = 1 Then cn.Close
If rs.State = 1 Then rs.Close
rs.CursorLocation = adUseClient
cn.Open "provider = msdaora.1; user id = scott;
password= tiger"
rs.Open "select * from lists ", cn, adOpenStatic,
adLockBatchOptimistic
total = 0
p1 = Label5.Caption
p2 = Label7.Caption
p3 = Label9.Caption
p4 = Label11.Caption
p5 = Label13.Caption
End Sub
Laptops Form
Laptops Form
Dim total As Long
Dim p1 As String
Dim p2 As String
Dim p3 As String
Dim p4 As String
Private Sub
Command1_Click()
rs.AddNew
If Check1.Value = 1 Then
total = total + 50000
rs(2) = p1
End If
If Check2.Value = 1 Then
total = total + 60000
rs(3) = p2
End If
If Check3.Value = 1 Then
total = total + 40000
rs(4) = p3
End If
If Check4.Value = 1 Then
total = total + 25000
rs(5) = p4
End If
rs(0) = user
rs(1) = DateValue(Now)
rs(7) = total
rs.UpdateBatch
MsgBox (total), 1, "AMOUNT PAYABLE"
MsgBox ("Thank You for your purchase")
End Sub
Private Sub
Command3_Click()
Form2.Show
End Sub
Private Sub Form_Load()
If cn.State = 1 Then cn.Close
If rs.State = 1 Then rs.Close
rs.CursorLocation = adUseClient
cn.Open "provider = msdaora.1; user id = scott;
password= tiger"
rs.Open "select * from lists ", cn, adOpenStatic,
adLockBatchOptimistic
total = 0
p1 = Label5.Caption
p2 = Label7.Caption
p3 = Label9.Caption
p4 = Label11.Caption
End Sub
Watches Form
Watches Form
Dim total As Long
Dim p1 As String
Dim p2 As String
Dim p3 As String
Dim p4 As String
Private Sub
Command1_Click()
rs.AddNew
If Check1.Value = 1 Then
total = total + 200
rs(2) = p1
End If
If Check2.Value = 1 Then
total = total + 300
rs(3) = p2
End If
If Check3.Value = 1 Then
total = total + 500
rs(4) = p3
End If
If Check4.Value = 1 Then
total = total + 300
rs(5) = p4
End If
rs(0) = user
rs(1) = DateValue(Now)
rs(7) = total
rs.UpdateBatch
MsgBox (total), 1, "AMOUNT PAYABLE"
MsgBox ("Thank You for your purchase")
End Sub
Private Sub
Command3_Click()
Form2.Show
End Sub
Private Sub Form_Load()
If cn.State = 1 Then cn.Close
If rs.State = 1 Then rs.Close
rs.CursorLocation = adUseClient
cn.Open "provider = msdaora.1; user id = scott;
password= tiger"
rs.Open "select * from lists ", cn, adOpenStatic,
adLockBatchOptimistic
total = 0
p1 = Label5.Caption
p2 = Label7.Caption
p3 = Label9.Caption
p4 = Label11.Caption
End Sub
End of Shopping
CONCLUSION:
From this
Project we understand how to create effectively an Interface between the Front
End (Visual Basic) and the Back End (Database) wherein we develop an Online
Shopping System using various Parameters
Great post with very useful information to all thanks for sharing with all of us. I like it very much. Today online shopping is a great way to save our time and money also. Best Online shopping
ReplyDeleteThat is because you can shop with your friends by sharing the discounts. daily deals
ReplyDeleteThere are lots of alternatives to decide from when you are appearing to order printed t shirts for mens that have been made according to your detailed feeling and tastes. These websites present you the choice of expediently ordering a printed t-shirt sitting at home devoid of having to make the attempt of going out to the bazaar and yourself visiting different shops.
ReplyDeleteAt last, we come to the design of the printed t-shirts for couples. For the couple shirt, you are permitted to choice personalized designs. You should confirm that you the grounding to discover what your partner actually likes.
ReplyDeletehttp://www.buyessay-service.net/tips-for-choose-the-best-printed-t-shirts-for-couples/
With the help of an online research you can make the correct website which can assist you to rethink your complete crop tops and that is because, luckily, there are designers who believe in the customer as qualities.
ReplyDeletehttp://a2znewstoday.co.uk/tips-for-renewing-your-wardrobe-choose-the-best-crop-tops/
How can a person define mode. Trendy and manner able apparel , as well as the minimal brain dysfunction -on matching with the newest trend, are printed tees for women called fashion.
ReplyDeletehttps://www.egyptobserver.com/tips-dressing-printed-tees-for-women/
Blacklisted loan no citation checks are the Blacklisted for cash loan
ReplyDeleteleading loaning resourcefulness in the financial market, which are enjoying great popularity among people.
https://www.linkedin.com/pulse/blacklisted-loans-credit-checks-instant-way-manage-cash-for-loans/
Tops have turned quite fashionable among school and college going girls. The fashion apparel sector has brought a broad range of Crop tops for girls clients that merge comfort with style.
ReplyDeletehttps://www.linkedin.com/pulse/shopping-best-crop-tops-girls-rajesh-kumar/
The season of summer is here. It’s right time to style up your dressing sense. When it comes to style and fashion, right selection is important. This year, Crop tops for girls are high in fashion.
ReplyDeleteEveryone needs some kind of loan in life. It may be a smaller or bigger amount that you may require for a host of reasons. Apply for a loan approved and in your bank account is extensive.
ReplyDeleteBest Online Shopping Site in India
ReplyDeleteBest online shopping site xclusiveoffer in india to shop Men, Women, Electronics, Health Care, Home and Kitchen appliances, shoes, jewellery, Kids, Watches and more"
ReplyDeleteWow this amazing post, thanks for sharing.
e gift voucher
gift vouchers india
e gift cards
gift cards in india
gift cards online
online gift cards
e voucher
buy gift cards online
wedding gift vouchers
online vouchers india
Buy Gift Cards
gift vouchers online
online gift vouchers
birthday gift cards
birthday gift vouchers
anniversary gift vouchers
housewarming gifts
corporate gifting
corporate gifts ideas
corporate gift ideas
Baby Shower Gift
It is important for them to make sure that they choose the clothing that best suits their personality. Of many clothing, one which has always been a hit among modern day women is Add elegance to your look by wearing designer tops for ladies. These tops allow you to show off your style and personality in the best possible way.
ReplyDeleteThe reward can be sharing a joke with one more human being or it can be enjoyed exclusively by the wearer of the funny graphic tees .
ReplyDeleteIf you’ve found yourself in horrible financial straits and require cash yesterday, you might be thinking a payday loan . Earlier, you pull to activate on one of these cash loans, here are some things.
ReplyDeleteIf you are a woman who find it difficult to buy the right set of clothing then you can now easily choose to shop from an exclusive rage of Plus size graphic tees.
ReplyDeleteAre you looking for the finest collection of plus size cotton tops? Are you unsure whether or not you will be able to find the best one for you? If yes is what you might be answering then you should know that the modern day market is flooded with plethora of Plas size cotton tops.
ReplyDeleteThis makes it difficult for many people to seek access to quick cash in times of need. If you have issues pertaining to bad credit history then without having to think much you can choose to apply for Blacklisted loans.
ReplyDeleteWhether you desire it for one of the most pressing needs of yours or for shopping and other comfort things, whatever your reason of receiving a loan is, everything will be possible for you with easy Paperless Payday Loans.
ReplyDeleteNo doubt, you are go through wonderful collection of Black Formal Shirt for Women online, one can also look for a sharp pair of trousers, jeans and suits to increase on ensemble choices in the way.
ReplyDeleteThank you very much for sharing this important article with us. Your whole article is very informative also click @ Buy Dildo Online India
ReplyDeleteCotton is a plant fiber with a defensive case that encloses the seeds. The fiber is similar to the cellulose. Cotton fiber is spin to make a yarn or even thread in order to create a fabric and breathable. Cotton tops for Women are not just soft, but comfortable and durable as well. It is also easy and simple to keep.
ReplyDeleteExcellent website you have here, so much cool information!.. 성인용품창업
ReplyDeletei love reading this article so beautiful!!great job!
ReplyDeleteproduct reviews site
This article is an appealing wealth of informative data that is interesting and well-written. I commend your hard work on this and thank you for this information. You’ve got what it takes to get attention. battery powered carts industrial
ReplyDeleteSuch a very useful article. Very interesting to read this article.I would like to thank you for the efforts you had made for writing this awesome article. Shopping Partner in the UK
ReplyDeleteI'm here to share my testimony of what a good trusted loan company did for me. My name is Nikita Tanya, from Russian and I’m a lovely mother of 3 kids I lost my funds on trying to get a loan it was so hard for me and my children, I went online to seek for a loan assistance all hope was lost until one faithful day when I met this friend of mine who recently secured a loan from Le_Meridian Funding Service She introduced me to this honest loan company who helped me get a loan in within 5 working days, I will forever be grateful to Mr Benjamin, for helping me get back on feet again. You can contact Mr Benjamin via email: lfdsloans@lemeridianfds.com, they do not know I’m doing this for them, but i just have to do it because a lot of people are out there who are in need of a loan assistance please come to this company and be saved.WhatsApp:(+1 989-394-3740)
ReplyDeleteInteresting blog. Nice to read something like this. Its great.
ReplyDeleteTop Electronic Gadgets
Online Shopping for Fashion & Lifestyle. Buy Shoes, Clothing, Accessories and lifestyle products for women & men. Browse Fashion, Footwear, Handbags, Jewelry.
ReplyDeleteOnline Shopping for Men
Online Shopping for Women
Buy Clothing for Men Online
Gentle Beast is committed to providing high quality and premium personal care products for men.
ReplyDeleteMen's Grooming
Gentle Beast
Gentle Beast Products
Your post is very much attractive and so much knowledgeful. Thank you very much for sharing it. Buy now sex toys and adult Sex products for men and women in India at Amnaughty.in with secure and discreet packaging delivery.
ReplyDeleteFor buying an erotic, pleasurable and enjoyable sex toy in India online must visit Amnaughty.
Sex Toy in Bangalore
Sex Toy in Chennai
Sex Toy in Delhi
Sex Toy in Hyderabad
Sex Toy in Kolkata
Sex Toy in Mumbai
Sex Toy in Noida
Sex Toy in Pune
This comment has been removed by the author.
ReplyDeletejigsaw puzzle shop melbourne I admire this article for the well-researched content and excellent wording. I got so involved in this material that I couldn’t stop reading. I am impressed with your work and skill. Thank you so much.
ReplyDeleteAmazing Article. Thanks for sharing this useful and interesting information with us. Your whole article is really well written and informative. Also look at our blog @ Buy Dildo Online India
ReplyDeleteHey, thanks for regularly posting these useful posts for all users you always give the right information. Keep posting such useful and right info.
ReplyDeletefemale love doll
Nice post, thanks for sharing with us.
ReplyDeleteImmerse yourself in the electrifying world of wrestling mixed videos with Bae Fight. Witness the fusion of strength and skill as athletes engage in intense battles. Get ready to experience the excitement firsthand!