full source code for mobile shop management system in vb net
#1

Hi am Sudiksha i would like to get full source code for mobile shop managemeent system in vb net..My friend justin said full source code for mobile shop management system in vb net will be available here and now i am living at bhopal and i last studied in the college sagar institute of research and technology and now am doing project work i need help on this project urgently.kindly provide me the source code.
Reply
#2
This Project explains about Online Mobile store system where database created with SQL Server.

create database Mobile
use Mobile

create table agent (AID numeric primary key,AName varchar(30),Contact varchar(50),PhMb varchar(30))
select * from agent

create table Payment (AID numeric,AName varchar(30),Contact varchar(50),PhMb varchar(30),SID Numeric,Scheme1 Varchar(30),UID varchar(30),Amount varchar(10))
select * from Payment

create table Regscheme (UID varchar(30),SID numeric,Scheme1 Varchar(30),Amount varchar(10))
select * from Regscheme

create table schemes (SID numeric primary key,CBY varchar(30),CDT varchar(30),Scheme1 Varchar(30),Amount varchar(10))
select * from schemes

create table UserInfo (UName varchar(30),UPwd varchar(30),loc varchar(50),Accno numeric,Name1 varchar(30),JoinDT varchar(30),OffCode numeric,PhMB Varchar(30),Addr varchar(100))
select * from UserInfo

VB Source code of this Project:
[cc lang=”vb”]
Imports System.Data.sqlclient

Public Class FrmPayments

Private Cn As SqlConnection
Private Cmd As SqlCommand
Private dr As SqlDataReader

Private Sub FrmPayments_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Cn = New SqlConnection(“server=;uid=sa;pwd=sa;database=Mobile;”)
Cn.Open()

Dim S As String
S = “Select * From Regscheme”
Cmd = New SqlCommand(S, Cn)
dr = Cmd.ExecuteReader
CmbUID.Items.Add(“—————-Select————-“)
While dr.Read
CmbUID.Items.Add(dr!UID)
End While
CmbUID.Text = “—————-Select————-”

dr.Close()
Cmd.Dispose()

Dim S1 As String
S1 = “Select * From Agent”
Cmd = New SqlCommand(S1, Cn)
dr = Cmd.ExecuteReader
CmbAID.Items.Add(“—————-Select————-“)
While dr.Read
CmbAID.Items.Add(dr!AID)
End While
CmbAID.Text = “—————-Select————-”

dr.Close()
Cmd.Dispose()

End Sub

Private Sub CmbAID_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CmbAID.SelectedIndexChanged
If CmbAID.Text <> “—————-Select————-” Then
Dim S As String
S = “Select * From Agent Where AID=” & CmbAID.Text & “”
Cmd = New SqlCommand(S, Cn)
dr = Cmd.ExecuteReader
If dr.Read Then
TxtName.Text = dr!AName
TxtContacts.Text = dr!Contact
TxtPhMb.Text = dr!PhMb
End If
dr.Close()
Cmd.Dispose()
End If
End Sub

Private Sub CmbUID_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CmbUID.SelectedIndexChanged
If CmbUID.Text <> “—————-Select————-” Then
Dim S As String
S = “Select * From Regscheme Where UID='” & CmbUID.Text & “‘”
Cmd = New SqlCommand(S, Cn)
dr = Cmd.ExecuteReader
If dr.Read Then
TxtScheme.Text = dr!Scheme1
TxtSID.Text = dr!SID
End If
dr.Close()
Cmd.Dispose()
End If
End Sub

Private Sub CmdNew_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CmdNew.Click
Clear()
End Sub

Public Sub Clear()
CmbUID.Text = “—————-Select————-”
CmbAID.Text = “—————-Select————-”
TxtName.Text = “”
TxtContacts.Text = “”
TxtPhMb.Text = “”
TxtSID.Text = “”
TxtScheme.Text = “”
TxtAmt.Text = “”
End Sub

Private Sub CmdExit_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CmdExit.Click
Me.Close()
End Sub

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Try
Dim Str As String = “”
If CmbUID.Text = “—————-Select————-” Then
Str += “Select The User-ID” & vbLf
End If
If CmbAID.Text = “—————-Select————-” Then
Str += “Select The Agent-ID” & vbLf
End If
If Trim(TxtSID.Text) = “” Then
Str += “Enter The Scheme-ID” & vbLf
End If
If Trim(TxtScheme.Text) = “” Then
Str += “Enter The Scheme” & vbLf
End If
If Trim(TxtName.Text) = “” Then
Str += “Enter The Name” & vbLf
End If
If Trim(TxtContacts.Text) = “” Then
Str += “Enter The Contacts” & vbLf
End If
If Trim(TxtPhMb.Text) = “” Then
Str += “Enter The Contact Number” & vbLf
End If
If Trim(TxtAmt.Text) = “” Then
Str += “Enter The Amount” & vbLf
End If

If Str = “” Then
Dim S As String
S = “Insert Into Payment Values(” & CmbAID.Text & “,'” & TxtName.Text & “‘,'” & TxtContacts.Text & “‘,'” & TxtPhMb.Text & “‘,” & TxtSID.Text & “,'” & TxtScheme.Text & “‘,'” & CmbUID.Text & “‘,” & TxtAmt.Text & “)”
Cmd = New SqlCommand(S, Cn)
Cmd.ExecuteNonQuery()
MsgBox(“Successfully Saved”, MsgBoxStyle.Information, “Mobile Simulation”)
Cmd.Dispose()
Clear()
End If

Catch ex As Exception
MsgBox(ex.Message)
End Try
End Sub
End Class[/cc]
Reply

Important Note..!

If you are not satisfied with above reply ,..Please

ASK HERE

So that we will collect data for you and will made reply to the request....OR try below "QUICK REPLY" box to add a reply to this page
Popular Searches: source code mobile shop management, str dalta strtar daunlod, full source code for mobile shop management system in vb net, sdio cmd sdio ck, how to creating coffee shop billing sysem in vb net with source code, mobile shop management java source code, computer shop management system vb net download,

[-]
Quick Reply
Message
Type your reply to this message here.

Image Verification
Please enter the text contained within the image into the text box below it. This process is used to prevent automated spam bots.
Image Verification
(case insensitive)

Possibly Related Threads...
Thread Author Replies Views Last Post
  Test cases for Attendance management System 0 1,264 12-08-2023, 11:06 AM
Last Post:
  voice vased email system source code 0 3,139 20-04-2021, 07:59 AM
Last Post:
  Cricket club management system 0 926 18-04-2021, 06:01 AM
Last Post:
  ADCA full course 0 1,852 01-08-2020, 07:19 PM
Last Post:
Video tollbooth management system vb with ms access 0 1,034 14-12-2019, 03:31 PM
Last Post:
  Garment management system 0 1,284 16-02-2019, 11:31 PM
Last Post:
  Pseudocode for hotel management system 0 1,223 10-02-2019, 02:13 PM
Last Post:
  code on mobile based attendance system for project 0 1,218 14-01-2019, 12:52 PM
Last Post:
  Regarding help for code on mobile based attendance system 1 1,175 14-01-2019, 12:48 PM
Last Post:
  project on marketing management for class 12 on mobile phones 3 2,734 20-12-2018, 12:22 AM
Last Post:

Forum Jump: