├── README.md └── vb └── MobilePhoneRecords-main ├── photo.jpg ├── banner1.jpg ├── MAP OUT THE PROJECT.docx ├── MobilePhoneRecords ├── MobilePhoneRecords │ ├── obj │ │ ├── Debug │ │ │ ├── MobilePhoneRecords.vbproj.CoreCompileInputs.cache │ │ │ ├── MobilePhoneRecords.exe │ │ │ ├── MobilePhoneRecords.pdb │ │ │ ├── MobilePhoneRecords.Submit.resources │ │ │ ├── TempPE │ │ │ │ ├── MPRdbDataSet.Designer.vb.dll │ │ │ │ └── My Project.Resources.Designer.vb.dll │ │ │ ├── MobilePhoneRecords.Customer.resources │ │ │ ├── MobilePhoneRecords.Supplier.resources │ │ │ ├── MobilePhoneRecords.LoginAdmin.resources │ │ │ ├── MobilePhoneRecords.Resources.resources │ │ │ ├── MobilePhoneRecords.cellphone.resources │ │ │ ├── MobilePhoneRecords.dashboard.resources │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── MobilePhoneRecords.vbproj.GenerateResource.Cache │ │ │ ├── MobilePhoneRecords.vbprojResolveAssemblyReference.cache │ │ │ ├── MobilePhoneRecords.vbproj.FileListAbsolute.txt │ │ │ └── MobilePhoneRecords.xml │ │ └── Release │ │ │ └── MobilePhoneRecords.vbproj.CoreCompileInputs.cache │ ├── MPRdb.accdb │ ├── cellphone.vb │ ├── bin │ │ └── Debug │ │ │ ├── MPRdb.accdb │ │ │ ├── MobilePhoneRecords.exe │ │ │ ├── MobilePhoneRecords.pdb │ │ │ ├── MobilePhoneRecords.vshost.exe │ │ │ ├── MobilePhoneRecords.vshost.exe.config │ │ │ ├── MobilePhoneRecords.vshost.exe.manifest │ │ │ ├── MobilePhoneRecords.exe.config │ │ │ └── MobilePhoneRecords.xml │ ├── Resources │ │ └── IMG_20210713_070323~3.jpg │ ├── Supplier.vb │ ├── dashboard.vb │ ├── MPRdbDataSet.xsc │ ├── My Project │ │ ├── Application.myapp │ │ ├── Settings.settings │ │ ├── AssemblyInfo.vb │ │ ├── Application.Designer.vb │ │ ├── Resources.Designer.vb │ │ ├── Settings.Designer.vb │ │ └── Resources.resx │ ├── App.config │ ├── LoginAdmin.vb │ ├── Form1.vb │ ├── cellphone.Designer.vb │ ├── MPRdbDataSet.xss │ ├── Customer.vb │ ├── Form1.Designer.vb │ ├── Form1.resx │ ├── Cellphone.resx │ ├── LoginAdmin.Designer.vb │ ├── MobilePhoneRecords.vbproj │ ├── dashboard.Designer.vb │ ├── Supplier.resx │ ├── Customer.resx │ ├── Supplier.Designer.vb │ └── Customer.Designer.vb └── MobilePhoneRecords.sln └── README.md /README.md: -------------------------------------------------------------------------------- 1 | # DAIT25-GROUP-2 2 | FINAL VB ORJECT 3 | -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/africancodes/DAIT25-GROUP-4/HEAD/vb/MobilePhoneRecords-main/photo.jpg -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/banner1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/africancodes/DAIT25-GROUP-4/HEAD/vb/MobilePhoneRecords-main/banner1.jpg -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MAP OUT THE PROJECT.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/africancodes/DAIT25-GROUP-4/HEAD/vb/MobilePhoneRecords-main/MAP OUT THE PROJECT.docx -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/obj/Debug/MobilePhoneRecords.vbproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 630d93f66eb4a47c3ea2dd606ef47e5969659d06 2 | -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/obj/Release/MobilePhoneRecords.vbproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 0f327ff7a2c171f6fe6995082154c3f75cc6c822 2 | -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/README.md: -------------------------------------------------------------------------------- 1 | # MobilePhoneRecords 2 | Administration' Login Details 3 | # Username: DAIT25 4 | # Password: dait 5 | This project was created in visual studio 2017 6 | 7 | -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/MPRdb.accdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/africancodes/DAIT25-GROUP-4/HEAD/vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/MPRdb.accdb -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/cellphone.vb: -------------------------------------------------------------------------------- 1 | Public Class cellphone 2 | Private Sub cellphone_Load(sender As Object, e As EventArgs) Handles MyBase.Load 3 | 4 | End Sub 5 | End Class -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/bin/Debug/MPRdb.accdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/africancodes/DAIT25-GROUP-4/HEAD/vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/bin/Debug/MPRdb.accdb -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/bin/Debug/MobilePhoneRecords.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/africancodes/DAIT25-GROUP-4/HEAD/vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/bin/Debug/MobilePhoneRecords.exe -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/bin/Debug/MobilePhoneRecords.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/africancodes/DAIT25-GROUP-4/HEAD/vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/bin/Debug/MobilePhoneRecords.pdb -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/obj/Debug/MobilePhoneRecords.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/africancodes/DAIT25-GROUP-4/HEAD/vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/obj/Debug/MobilePhoneRecords.exe -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/obj/Debug/MobilePhoneRecords.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/africancodes/DAIT25-GROUP-4/HEAD/vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/obj/Debug/MobilePhoneRecords.pdb -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/Resources/IMG_20210713_070323~3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/africancodes/DAIT25-GROUP-4/HEAD/vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/Resources/IMG_20210713_070323~3.jpg -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/bin/Debug/MobilePhoneRecords.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/africancodes/DAIT25-GROUP-4/HEAD/vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/bin/Debug/MobilePhoneRecords.vshost.exe -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/obj/Debug/MobilePhoneRecords.Submit.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/africancodes/DAIT25-GROUP-4/HEAD/vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/obj/Debug/MobilePhoneRecords.Submit.resources -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/obj/Debug/TempPE/MPRdbDataSet.Designer.vb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/africancodes/DAIT25-GROUP-4/HEAD/vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/obj/Debug/TempPE/MPRdbDataSet.Designer.vb.dll -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/obj/Debug/MobilePhoneRecords.Customer.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/africancodes/DAIT25-GROUP-4/HEAD/vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/obj/Debug/MobilePhoneRecords.Customer.resources -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/obj/Debug/MobilePhoneRecords.Supplier.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/africancodes/DAIT25-GROUP-4/HEAD/vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/obj/Debug/MobilePhoneRecords.Supplier.resources -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/obj/Debug/MobilePhoneRecords.LoginAdmin.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/africancodes/DAIT25-GROUP-4/HEAD/vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/obj/Debug/MobilePhoneRecords.LoginAdmin.resources -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/obj/Debug/MobilePhoneRecords.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/africancodes/DAIT25-GROUP-4/HEAD/vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/obj/Debug/MobilePhoneRecords.Resources.resources -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/obj/Debug/MobilePhoneRecords.cellphone.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/africancodes/DAIT25-GROUP-4/HEAD/vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/obj/Debug/MobilePhoneRecords.cellphone.resources -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/obj/Debug/MobilePhoneRecords.dashboard.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/africancodes/DAIT25-GROUP-4/HEAD/vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/obj/Debug/MobilePhoneRecords.dashboard.resources -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/africancodes/DAIT25-GROUP-4/HEAD/vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/obj/Debug/TempPE/My Project.Resources.Designer.vb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/africancodes/DAIT25-GROUP-4/HEAD/vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/obj/Debug/TempPE/My Project.Resources.Designer.vb.dll -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/africancodes/DAIT25-GROUP-4/HEAD/vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/bin/Debug/MobilePhoneRecords.vshost.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/obj/Debug/MobilePhoneRecords.vbproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/africancodes/DAIT25-GROUP-4/HEAD/vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/obj/Debug/MobilePhoneRecords.vbproj.GenerateResource.Cache -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/obj/Debug/MobilePhoneRecords.vbprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/africancodes/DAIT25-GROUP-4/HEAD/vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/obj/Debug/MobilePhoneRecords.vbprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/Supplier.vb: -------------------------------------------------------------------------------- 1 | Public Class Supplier 2 | Private Sub Supplier_Load(sender As Object, e As EventArgs) Handles MyBase.Load 3 | 4 | End Sub 5 | 6 | Private Sub btnCancel_Click(sender As Object, e As EventArgs) Handles btnCancel.Click 7 | End 8 | End Sub 9 | End Class -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/dashboard.vb: -------------------------------------------------------------------------------- 1 | Public Class dashboard 2 | Private Sub linkCellphone_LinkClicked(sender As Object, e As LinkLabelLinkClickedEventArgs) 3 | 4 | End Sub 5 | 6 | Private Sub Cellphone_Click(sender As Object, e As EventArgs) Handles Cellphone.Click 7 | 8 | End Sub 9 | End Class -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/MPRdbDataSet.xsc: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/My Project/Application.myapp: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | Form1 5 | false 6 | 0 7 | true 8 | 0 9 | 0 10 | true 11 | 12 | -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/bin/Debug/MobilePhoneRecords.vshost.exe.manifest: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/bin/Debug/MobilePhoneRecords.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/LoginAdmin.vb: -------------------------------------------------------------------------------- 1 | Public Class LoginAdmin 2 | Private Sub btnSubmitt_Click(sender As Object, e As EventArgs) Handles btnSubmitt.Click 3 | Dim username As String 4 | Dim password As String 5 | 6 | username = txtName.Text 7 | password = txtPass.Text 8 | 9 | If username.ToUpper = "DAIT25" Then 10 | If password = "dait" Then 11 | Me.Close() 12 | dashboard.Show() 13 | Else 14 | MsgBox("Wrong password") 15 | End If 16 | Else 17 | MsgBox("Wrong username") 18 | End If 19 | End Sub 20 | 21 | Private Sub btnCancell_Click(sender As Object, e As EventArgs) Handles btnCancell.Click 22 | End 23 | End Sub 24 | End Class -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/Form1.vb: -------------------------------------------------------------------------------- 1 | Public Class Submit 2 | Private Sub Submit_Load(sender As Object, e As EventArgs) Handles MyBase.Load 3 | MsgBox("Hello welcome to Mobile Phone Record System " & vbNewLine & "Please Enter your catergory to proceed ") 4 | End Sub 5 | 6 | Private Sub btnAdmin_Click(sender As Object, e As EventArgs) Handles btnAdmin.Click 7 | Me.Hide() 8 | LoginAdmin.Show() 9 | End Sub 10 | 11 | Private Sub btnSupplier_Click(sender As Object, e As EventArgs) Handles btnSupplier.Click 12 | Me.Hide() 13 | Supplier.Show() 14 | End Sub 15 | 16 | Private Sub btnExit_Click(sender As Object, e As EventArgs) Handles btnExit.Click 17 | MsgBox("Hope to see you again. Byee.........") 18 | Threading.Thread.Sleep(3000) 19 | End 20 | End Sub 21 | 22 | Private Sub btnCustomer_Click(sender As Object, e As EventArgs) Handles btnCustomer.Click 23 | Me.Hide() 24 | Customer.Show() 25 | End Sub 26 | End Class -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/My Project/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | <?xml version="1.0" encoding="utf-16"?> 7 | <SerializableConnectionString xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> 8 | <ConnectionString>Provider=Microsoft.ACE.OLEDB.12.0;Data Source=|DataDirectory|\MPRdb.accdb</ConnectionString> 9 | <ProviderName>System.Data.OleDb</ProviderName> 10 | </SerializableConnectionString> 11 | Provider=Microsoft.ACE.OLEDB.12.0;Data Source=|DataDirectory|\MPRdb.accdb 12 | 13 | 14 | -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 14 4 | VisualStudioVersion = 14.0.23107.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "MobilePhoneRecords", "MobilePhoneRecords\MobilePhoneRecords.vbproj", "{3B4586F4-F87D-4EF2-8D29-042007FB3C34}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {3B4586F4-F87D-4EF2-8D29-042007FB3C34}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {3B4586F4-F87D-4EF2-8D29-042007FB3C34}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {3B4586F4-F87D-4EF2-8D29-042007FB3C34}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {3B4586F4-F87D-4EF2-8D29-042007FB3C34}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- 1 | Imports System 2 | Imports System.Reflection 3 | Imports System.Runtime.InteropServices 4 | 5 | ' General Information about an assembly is controlled through the following 6 | ' set of attributes. Change these attribute values to modify the information 7 | ' associated with an assembly. 8 | 9 | ' Review the values of the assembly attributes 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 'The following GUID is for the ID of the typelib if this project is exposed to COM 21 | 22 | 23 | ' Version information for an assembly consists of the following four values: 24 | ' 25 | ' Major Version 26 | ' Minor Version 27 | ' Build Number 28 | ' Revision 29 | ' 30 | ' You can specify all the values or you can default the Build and Revision Numbers 31 | ' by using the '*' as shown below: 32 | ' 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/cellphone.Designer.vb: -------------------------------------------------------------------------------- 1 | 2 | Partial Class cellphone 3 | Inherits System.Windows.Forms.Form 4 | 5 | 'Form overrides dispose to clean up the component list. 6 | 7 | Protected Overrides Sub Dispose(ByVal disposing As Boolean) 8 | Try 9 | If disposing AndAlso components IsNot Nothing Then 10 | components.Dispose() 11 | End If 12 | Finally 13 | MyBase.Dispose(disposing) 14 | End Try 15 | End Sub 16 | 17 | 'Required by the Windows Form Designer 18 | Private components As System.ComponentModel.IContainer 19 | 20 | 'NOTE: The following procedure is required by the Windows Form Designer 21 | 'It can be modified using the Windows Form Designer. 22 | 'Do not modify it using the code editor. 23 | 24 | Private Sub InitializeComponent() 25 | Me.SuspendLayout() 26 | ' 27 | 'cellphone 28 | ' 29 | Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) 30 | Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font 31 | Me.ClientSize = New System.Drawing.Size(284, 261) 32 | Me.Name = "cellphone" 33 | Me.Text = "cellphone" 34 | Me.ResumeLayout(False) 35 | 36 | End Sub 37 | End Class 38 | -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/My Project/Application.Designer.vb: -------------------------------------------------------------------------------- 1 | '------------------------------------------------------------------------------ 2 | ' 3 | ' This code was generated by a tool. 4 | ' Runtime Version:4.0.30319.42000 5 | ' 6 | ' Changes to this file may cause incorrect behavior and will be lost if 7 | ' the code is regenerated. 8 | ' 9 | '------------------------------------------------------------------------------ 10 | 11 | Option Strict On 12 | Option Explicit On 13 | 14 | 15 | Namespace My 16 | 17 | 'NOTE: This file is auto-generated; do not modify it directly. To make changes, 18 | ' or if you encounter build errors in this file, go to the Project Designer 19 | ' (go to Project Properties or double-click the My Project node in 20 | ' Solution Explorer), and make changes on the Application tab. 21 | ' 22 | Partial Friend Class MyApplication 23 | 24 | _ 25 | Public Sub New() 26 | MyBase.New(Global.Microsoft.VisualBasic.ApplicationServices.AuthenticationMode.Windows) 27 | Me.IsSingleInstance = false 28 | Me.EnableVisualStyles = true 29 | Me.SaveMySettingsOnExit = true 30 | Me.ShutDownStyle = Global.Microsoft.VisualBasic.ApplicationServices.ShutdownMode.AfterMainFormCloses 31 | End Sub 32 | 33 | _ 34 | Protected Overrides Sub OnCreateMainForm() 35 | Me.MainForm = Global.MobilePhoneRecords.Submit 36 | End Sub 37 | End Class 38 | End Namespace 39 | -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/MPRdbDataSet.xss: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/Customer.vb: -------------------------------------------------------------------------------- 1 | Public Class Customer 2 | Private Sub Customer_Load(sender As Object, e As EventArgs) Handles MyBase.Load 3 | 'TODO: This line of code loads data into the 'MPRdbDataSet.cellphone' table. You can move, or remove it, as needed. 4 | Me.CellphoneTableAdapter.Fill(Me.MPRdbDataSet.cellphone) 5 | Dim customerName As String 6 | customerName = InputBox("Hello there, Im am Dait and you?") 7 | MsgBox("It's nice to meet you " & customerName & " Below is a list of products we have in stock. Please enjoy your shopping........") 8 | End Sub 9 | 10 | Private Sub CellphoneBindingNavigatorSaveItem_Click(sender As Object, e As EventArgs) Handles CellphoneBindingNavigatorSaveItem.Click 11 | Me.Validate() 12 | Me.CellphoneBindingSource.EndEdit() 13 | Me.TableAdapterManager.UpdateAll(Me.MPRdbDataSet) 14 | End Sub 15 | 16 | Private Sub FillByToolStripButton_Click(sender As Object, e As EventArgs) Handles FillByToolStripButton.Click 17 | Try 18 | Me.CellphoneTableAdapter.FillBy(Me.MPRdbDataSet.cellphone) 19 | Catch ex As System.Exception 20 | System.Windows.Forms.MessageBox.Show(ex.Message) 21 | End Try 22 | 23 | End Sub 24 | 25 | Private Sub FillBy1ToolStripButton_Click(sender As Object, e As EventArgs) Handles FillBy1ToolStripButton.Click 26 | Try 27 | Me.CellphoneTableAdapter.FillBy1(Me.MPRdbDataSet.cellphone) 28 | Catch ex As System.Exception 29 | System.Windows.Forms.MessageBox.Show(ex.Message) 30 | End Try 31 | 32 | End Sub 33 | 34 | Private Sub btnCancel_Click(sender As Object, e As EventArgs) Handles btnCancel.Click 35 | End 36 | End Sub 37 | 38 | 39 | End Class -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/My Project/Resources.Designer.vb: -------------------------------------------------------------------------------- 1 | '------------------------------------------------------------------------------ 2 | ' 3 | ' This code was generated by a tool. 4 | ' Runtime Version:4.0.30319.42000 5 | ' 6 | ' Changes to this file may cause incorrect behavior and will be lost if 7 | ' the code is regenerated. 8 | ' 9 | '------------------------------------------------------------------------------ 10 | 11 | Option Strict On 12 | Option Explicit On 13 | 14 | Imports System 15 | 16 | Namespace My.Resources 17 | 18 | 'This class was auto-generated by the StronglyTypedResourceBuilder 19 | 'class via a tool like ResGen or Visual Studio. 20 | 'To add or remove a member, edit your .ResX file then rerun ResGen 21 | 'with the /str option, or rebuild your VS project. 22 | ''' 23 | ''' A strongly-typed resource class, for looking up localized strings, etc. 24 | ''' 25 | _ 29 | Friend Module Resources 30 | 31 | Private resourceMan As Global.System.Resources.ResourceManager 32 | 33 | Private resourceCulture As Global.System.Globalization.CultureInfo 34 | 35 | ''' 36 | ''' Returns the cached ResourceManager instance used by this class. 37 | ''' 38 | _ 39 | Friend ReadOnly Property ResourceManager() As Global.System.Resources.ResourceManager 40 | Get 41 | If Object.ReferenceEquals(resourceMan, Nothing) Then 42 | Dim temp As Global.System.Resources.ResourceManager = New Global.System.Resources.ResourceManager("MobilePhoneRecords.Resources", GetType(Resources).Assembly) 43 | resourceMan = temp 44 | End If 45 | Return resourceMan 46 | End Get 47 | End Property 48 | 49 | ''' 50 | ''' Overrides the current thread's CurrentUICulture property for all 51 | ''' resource lookups using this strongly typed resource class. 52 | ''' 53 | _ 54 | Friend Property Culture() As Global.System.Globalization.CultureInfo 55 | Get 56 | Return resourceCulture 57 | End Get 58 | Set 59 | resourceCulture = value 60 | End Set 61 | End Property 62 | 63 | ''' 64 | ''' Looks up a localized resource of type System.Drawing.Bitmap. 65 | ''' 66 | Friend ReadOnly Property IMG_20210713_070323_3() As System.Drawing.Bitmap 67 | Get 68 | Dim obj As Object = ResourceManager.GetObject("IMG_20210713_070323~3", resourceCulture) 69 | Return CType(obj,System.Drawing.Bitmap) 70 | End Get 71 | End Property 72 | End Module 73 | End Namespace 74 | -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/My Project/Settings.Designer.vb: -------------------------------------------------------------------------------- 1 | '------------------------------------------------------------------------------ 2 | ' 3 | ' This code was generated by a tool. 4 | ' Runtime Version:4.0.30319.42000 5 | ' 6 | ' Changes to this file may cause incorrect behavior and will be lost if 7 | ' the code is regenerated. 8 | ' 9 | '------------------------------------------------------------------------------ 10 | 11 | Option Strict On 12 | Option Explicit On 13 | 14 | 15 | Namespace My 16 | 17 | _ 20 | Partial Friend NotInheritable Class MySettings 21 | Inherits Global.System.Configuration.ApplicationSettingsBase 22 | 23 | Private Shared defaultInstance As MySettings = CType(Global.System.Configuration.ApplicationSettingsBase.Synchronized(New MySettings()),MySettings) 24 | 25 | #Region "My.Settings Auto-Save Functionality" 26 | #If _MyType = "WindowsForms" Then 27 | Private Shared addedHandler As Boolean 28 | 29 | Private Shared addedHandlerLockObject As New Object 30 | 31 | _ 32 | Private Shared Sub AutoSaveSettings(sender As Global.System.Object, e As Global.System.EventArgs) 33 | If My.Application.SaveMySettingsOnExit Then 34 | My.Settings.Save() 35 | End If 36 | End Sub 37 | #End If 38 | #End Region 39 | 40 | Public Shared ReadOnly Property [Default]() As MySettings 41 | Get 42 | 43 | #If _MyType = "WindowsForms" Then 44 | If Not addedHandler Then 45 | SyncLock addedHandlerLockObject 46 | If Not addedHandler Then 47 | AddHandler My.Application.Shutdown, AddressOf AutoSaveSettings 48 | addedHandler = True 49 | End If 50 | End SyncLock 51 | End If 52 | #End If 53 | Return defaultInstance 54 | End Get 55 | End Property 56 | 57 | _ 61 | Public ReadOnly Property MPRdbConnectionString() As String 62 | Get 63 | Return CType(Me("MPRdbConnectionString"),String) 64 | End Get 65 | End Property 66 | End Class 67 | End Namespace 68 | 69 | Namespace My 70 | 71 | _ 74 | Friend Module MySettingsProperty 75 | 76 | _ 77 | Friend ReadOnly Property Settings() As Global.MobilePhoneRecords.My.MySettings 78 | Get 79 | Return Global.MobilePhoneRecords.My.MySettings.Default 80 | End Get 81 | End Property 82 | End Module 83 | End Namespace 84 | -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/Form1.Designer.vb: -------------------------------------------------------------------------------- 1 | _ 2 | Partial Class Submit 3 | Inherits System.Windows.Forms.Form 4 | 5 | 'Form overrides dispose to clean up the component list. 6 | _ 7 | Protected Overrides Sub Dispose(ByVal disposing As Boolean) 8 | Try 9 | If disposing AndAlso components IsNot Nothing Then 10 | components.Dispose() 11 | End If 12 | Finally 13 | MyBase.Dispose(disposing) 14 | End Try 15 | End Sub 16 | 17 | 'Required by the Windows Form Designer 18 | Private components As System.ComponentModel.IContainer 19 | 20 | 'NOTE: The following procedure is required by the Windows Form Designer 21 | 'It can be modified using the Windows Form Designer. 22 | 'Do not modify it using the code editor. 23 | 24 | Private Sub InitializeComponent() 25 | Me.btnAdmin = New System.Windows.Forms.Button() 26 | Me.btnSupplier = New System.Windows.Forms.Button() 27 | Me.btnCustomer = New System.Windows.Forms.Button() 28 | Me.btnExit = New System.Windows.Forms.Button() 29 | Me.Label1 = New System.Windows.Forms.Label() 30 | Me.SuspendLayout() 31 | ' 32 | 'btnAdmin 33 | ' 34 | Me.btnAdmin.BackColor = System.Drawing.Color.Green 35 | Me.btnAdmin.ForeColor = System.Drawing.SystemColors.ActiveCaptionText 36 | Me.btnAdmin.Location = New System.Drawing.Point(148, 73) 37 | Me.btnAdmin.Name = "btnAdmin" 38 | Me.btnAdmin.Size = New System.Drawing.Size(135, 37) 39 | Me.btnAdmin.TabIndex = 0 40 | Me.btnAdmin.Text = "Admin" 41 | Me.btnAdmin.UseVisualStyleBackColor = False 42 | ' 43 | 'btnSupplier 44 | ' 45 | Me.btnSupplier.BackColor = System.Drawing.Color.Green 46 | Me.btnSupplier.ForeColor = System.Drawing.SystemColors.ActiveCaptionText 47 | Me.btnSupplier.Location = New System.Drawing.Point(148, 132) 48 | Me.btnSupplier.Name = "btnSupplier" 49 | Me.btnSupplier.Size = New System.Drawing.Size(135, 37) 50 | Me.btnSupplier.TabIndex = 1 51 | Me.btnSupplier.Text = "Supplier" 52 | Me.btnSupplier.UseVisualStyleBackColor = False 53 | ' 54 | 'btnCustomer 55 | ' 56 | Me.btnCustomer.BackColor = System.Drawing.Color.Green 57 | Me.btnCustomer.ForeColor = System.Drawing.SystemColors.ActiveCaptionText 58 | Me.btnCustomer.Location = New System.Drawing.Point(148, 188) 59 | Me.btnCustomer.Name = "btnCustomer" 60 | Me.btnCustomer.Size = New System.Drawing.Size(135, 37) 61 | Me.btnCustomer.TabIndex = 3 62 | Me.btnCustomer.Text = "Customer" 63 | Me.btnCustomer.UseVisualStyleBackColor = False 64 | ' 65 | 'btnExit 66 | ' 67 | Me.btnExit.BackColor = System.Drawing.Color.SaddleBrown 68 | Me.btnExit.ForeColor = System.Drawing.SystemColors.ActiveCaptionText 69 | Me.btnExit.Location = New System.Drawing.Point(158, 245) 70 | Me.btnExit.Name = "btnExit" 71 | Me.btnExit.Size = New System.Drawing.Size(104, 37) 72 | Me.btnExit.TabIndex = 4 73 | Me.btnExit.Text = "Exit" 74 | Me.btnExit.UseVisualStyleBackColor = False 75 | ' 76 | 'Label1 77 | ' 78 | Me.Label1.AutoSize = True 79 | Me.Label1.Font = New System.Drawing.Font("Algerian", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) 80 | Me.Label1.ForeColor = System.Drawing.Color.DarkBlue 81 | Me.Label1.Location = New System.Drawing.Point(24, 20) 82 | Me.Label1.Name = "Label1" 83 | Me.Label1.Size = New System.Drawing.Size(432, 21) 84 | Me.Label1.TabIndex = 5 85 | Me.Label1.Text = "Mobile Phone Records Management System" 86 | ' 87 | 'Submit 88 | ' 89 | Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) 90 | Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font 91 | Me.BackColor = System.Drawing.Color.Sienna 92 | Me.ClientSize = New System.Drawing.Size(468, 333) 93 | Me.Controls.Add(Me.Label1) 94 | Me.Controls.Add(Me.btnExit) 95 | Me.Controls.Add(Me.btnCustomer) 96 | Me.Controls.Add(Me.btnSupplier) 97 | Me.Controls.Add(Me.btnAdmin) 98 | Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D 99 | Me.Name = "Submit" 100 | Me.Text = "Form1" 101 | Me.ResumeLayout(False) 102 | Me.PerformLayout() 103 | 104 | End Sub 105 | 106 | Friend WithEvents btnAdmin As Button 107 | Friend WithEvents btnSupplier As Button 108 | Friend WithEvents btnCustomer As Button 109 | Friend WithEvents btnExit As Button 110 | Friend WithEvents Label1 As Label 111 | End Class 112 | -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/obj/Debug/MobilePhoneRecords.vbproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | c:\users\bambo\documents\visual studio 2015\Projects\MobilePhoneRecords\MobilePhoneRecords\bin\Debug\MobilePhoneRecords.exe.config 2 | c:\users\bambo\documents\visual studio 2015\Projects\MobilePhoneRecords\MobilePhoneRecords\bin\Debug\MobilePhoneRecords.exe 3 | c:\users\bambo\documents\visual studio 2015\Projects\MobilePhoneRecords\MobilePhoneRecords\bin\Debug\MobilePhoneRecords.pdb 4 | c:\users\bambo\documents\visual studio 2015\Projects\MobilePhoneRecords\MobilePhoneRecords\bin\Debug\MobilePhoneRecords.xml 5 | c:\users\bambo\documents\visual studio 2015\Projects\MobilePhoneRecords\MobilePhoneRecords\obj\Debug\MobilePhoneRecords.vbprojResolveAssemblyReference.cache 6 | c:\users\bambo\documents\visual studio 2015\Projects\MobilePhoneRecords\MobilePhoneRecords\obj\Debug\MobilePhoneRecords.Resources.resources 7 | c:\users\bambo\documents\visual studio 2015\Projects\MobilePhoneRecords\MobilePhoneRecords\obj\Debug\MobilePhoneRecords.vbproj.GenerateResource.Cache 8 | c:\users\bambo\documents\visual studio 2015\Projects\MobilePhoneRecords\MobilePhoneRecords\obj\Debug\MobilePhoneRecords.exe 9 | c:\users\bambo\documents\visual studio 2015\Projects\MobilePhoneRecords\MobilePhoneRecords\obj\Debug\MobilePhoneRecords.xml 10 | c:\users\bambo\documents\visual studio 2015\Projects\MobilePhoneRecords\MobilePhoneRecords\obj\Debug\MobilePhoneRecords.pdb 11 | C:\Users\TCS Ideapad 110\Desktop\MobilePhoneRecords-main\MobilePhoneRecords\MobilePhoneRecords\obj\Debug\MobilePhoneRecords.vbprojResolveAssemblyReference.cache 12 | C:\Users\TCS Ideapad 110\Desktop\MobilePhoneRecords-main\MobilePhoneRecords\MobilePhoneRecords\obj\Debug\MobilePhoneRecords.Resources.resources 13 | C:\Users\TCS Ideapad 110\Desktop\MobilePhoneRecords-main\MobilePhoneRecords\MobilePhoneRecords\obj\Debug\MobilePhoneRecords.vbproj.GenerateResource.Cache 14 | C:\Users\TCS Ideapad 110\Desktop\MobilePhoneRecords-main\MobilePhoneRecords\MobilePhoneRecords\obj\Debug\MobilePhoneRecords.vbproj.CoreCompileInputs.cache 15 | C:\Users\TCS Ideapad 110\Desktop\MobilePhoneRecords-main\MobilePhoneRecords\MobilePhoneRecords\obj\Debug\MobilePhoneRecords.exe 16 | C:\Users\TCS Ideapad 110\Desktop\MobilePhoneRecords-main\MobilePhoneRecords\MobilePhoneRecords\obj\Debug\MobilePhoneRecords.xml 17 | C:\Users\TCS Ideapad 110\Desktop\MobilePhoneRecords-main\MobilePhoneRecords\MobilePhoneRecords\obj\Debug\MobilePhoneRecords.pdb 18 | C:\Users\TCS Ideapad 110\Desktop\MobilePhoneRecords-main\MobilePhoneRecords\MobilePhoneRecords\bin\Debug\MobilePhoneRecords.exe.config 19 | C:\Users\TCS Ideapad 110\Desktop\MobilePhoneRecords-main\MobilePhoneRecords\MobilePhoneRecords\bin\Debug\MobilePhoneRecords.exe 20 | C:\Users\TCS Ideapad 110\Desktop\MobilePhoneRecords-main\MobilePhoneRecords\MobilePhoneRecords\bin\Debug\MobilePhoneRecords.pdb 21 | C:\Users\TCS Ideapad 110\Desktop\MobilePhoneRecords-main\MobilePhoneRecords\MobilePhoneRecords\bin\Debug\MobilePhoneRecords.xml 22 | C:\Users\TCS Ideapad 110\Desktop\MobilePhoneRecords-main\MobilePhoneRecords\MobilePhoneRecords\obj\Debug\MobilePhoneRecords.Submit.resources 23 | C:\Users\TCS Ideapad 110\Desktop\vb\MobilePhoneRecords-main\MobilePhoneRecords\MobilePhoneRecords\bin\Debug\MPRdb.accdb 24 | C:\Users\TCS Ideapad 110\Desktop\vb\MobilePhoneRecords-main\MobilePhoneRecords\MobilePhoneRecords\bin\Debug\MobilePhoneRecords.exe.config 25 | C:\Users\TCS Ideapad 110\Desktop\vb\MobilePhoneRecords-main\MobilePhoneRecords\MobilePhoneRecords\bin\Debug\MobilePhoneRecords.exe 26 | C:\Users\TCS Ideapad 110\Desktop\vb\MobilePhoneRecords-main\MobilePhoneRecords\MobilePhoneRecords\bin\Debug\MobilePhoneRecords.pdb 27 | C:\Users\TCS Ideapad 110\Desktop\vb\MobilePhoneRecords-main\MobilePhoneRecords\MobilePhoneRecords\bin\Debug\MobilePhoneRecords.xml 28 | C:\Users\TCS Ideapad 110\Desktop\vb\MobilePhoneRecords-main\MobilePhoneRecords\MobilePhoneRecords\obj\Debug\MobilePhoneRecords.vbprojResolveAssemblyReference.cache 29 | C:\Users\TCS Ideapad 110\Desktop\vb\MobilePhoneRecords-main\MobilePhoneRecords\MobilePhoneRecords\obj\Debug\MobilePhoneRecords.Resources.resources 30 | C:\Users\TCS Ideapad 110\Desktop\vb\MobilePhoneRecords-main\MobilePhoneRecords\MobilePhoneRecords\obj\Debug\MobilePhoneRecords.vbproj.GenerateResource.Cache 31 | C:\Users\TCS Ideapad 110\Desktop\vb\MobilePhoneRecords-main\MobilePhoneRecords\MobilePhoneRecords\obj\Debug\MobilePhoneRecords.vbproj.CoreCompileInputs.cache 32 | C:\Users\TCS Ideapad 110\Desktop\vb\MobilePhoneRecords-main\MobilePhoneRecords\MobilePhoneRecords\obj\Debug\MobilePhoneRecords.exe 33 | C:\Users\TCS Ideapad 110\Desktop\vb\MobilePhoneRecords-main\MobilePhoneRecords\MobilePhoneRecords\obj\Debug\MobilePhoneRecords.xml 34 | C:\Users\TCS Ideapad 110\Desktop\vb\MobilePhoneRecords-main\MobilePhoneRecords\MobilePhoneRecords\obj\Debug\MobilePhoneRecords.pdb 35 | C:\Users\TCS Ideapad 110\Desktop\vb\MobilePhoneRecords-main\MobilePhoneRecords\MobilePhoneRecords\obj\Debug\MobilePhoneRecords.dashboard.resources 36 | C:\Users\TCS Ideapad 110\Desktop\vb\MobilePhoneRecords-main\MobilePhoneRecords\MobilePhoneRecords\obj\Debug\MobilePhoneRecords.Submit.resources 37 | C:\Users\TCS Ideapad 110\Desktop\vb\MobilePhoneRecords-main\MobilePhoneRecords\MobilePhoneRecords\obj\Debug\MobilePhoneRecords.LoginAdmin.resources 38 | C:\Users\TCS Ideapad 110\Desktop\vb\MobilePhoneRecords-main\MobilePhoneRecords\MobilePhoneRecords\obj\Debug\MobilePhoneRecords.Supplier.resources 39 | C:\Users\TCS Ideapad 110\Desktop\vb\MobilePhoneRecords-main\MobilePhoneRecords\MobilePhoneRecords\obj\Debug\MobilePhoneRecords.Customer.resources 40 | C:\Users\TCS Ideapad 110\Desktop\vb\MobilePhoneRecords-main\MobilePhoneRecords\MobilePhoneRecords\obj\Debug\MobilePhoneRecords.cellphone.resources 41 | -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/Form1.resx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/Cellphone.resx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/My Project/Resources.resx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | 122 | ..\Resources\IMG_20210713_070323~3.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 123 | 124 | -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/bin/Debug/MobilePhoneRecords.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | MobilePhoneRecords 6 | 7 | 8 | 9 | 10 | 11 | A strongly-typed resource class, for looking up localized strings, etc. 12 | 13 | 14 | 15 | 16 | Returns the cached ResourceManager instance used by this class. 17 | 18 | 19 | 20 | 21 | Overrides the current thread's CurrentUICulture property for all 22 | resource lookups using this strongly typed resource class. 23 | 24 | 25 | 26 | 27 | Looks up a localized resource of type System.Drawing.Bitmap. 28 | 29 | 30 | 31 | 32 | Represents a strongly typed in-memory cache of data. 33 | 34 | 35 | 36 | 37 | Represents the strongly named DataTable class. 38 | 39 | 40 | 41 | 42 | Represents the strongly named DataTable class. 43 | 44 | 45 | 46 | 47 | Represents the strongly named DataTable class. 48 | 49 | 50 | 51 | 52 | Represents the strongly named DataTable class. 53 | 54 | 55 | 56 | 57 | Represents the strongly named DataTable class. 58 | 59 | 60 | 61 | 62 | Represents strongly named DataRow class. 63 | 64 | 65 | 66 | 67 | Represents strongly named DataRow class. 68 | 69 | 70 | 71 | 72 | Represents strongly named DataRow class. 73 | 74 | 75 | 76 | 77 | Represents strongly named DataRow class. 78 | 79 | 80 | 81 | 82 | Represents strongly named DataRow class. 83 | 84 | 85 | 86 | 87 | Row event argument class 88 | 89 | 90 | 91 | 92 | Row event argument class 93 | 94 | 95 | 96 | 97 | Row event argument class 98 | 99 | 100 | 101 | 102 | Row event argument class 103 | 104 | 105 | 106 | 107 | Row event argument class 108 | 109 | 110 | 111 | 112 | Represents the connection and commands used to retrieve and save data. 113 | 114 | 115 | 116 | 117 | Represents the connection and commands used to retrieve and save data. 118 | 119 | 120 | 121 | 122 | Represents the connection and commands used to retrieve and save data. 123 | 124 | 125 | 126 | 127 | Represents the connection and commands used to retrieve and save data. 128 | 129 | 130 | 131 | 132 | Represents the connection and commands used to retrieve and save data. 133 | 134 | 135 | 136 | 137 | TableAdapterManager is used to coordinate TableAdapters in the dataset to enable Hierarchical Update scenarios 138 | 139 | 140 | 141 | 142 | Update rows in top-down order. 143 | 144 | 145 | 146 | 147 | Insert rows in top-down order. 148 | 149 | 150 | 151 | 152 | Delete rows in bottom-up order. 153 | 154 | 155 | 156 | 157 | Remove inserted rows that become updated rows after calling TableAdapter.Update(inserted rows) first 158 | 159 | 160 | 161 | 162 | Update all changes to the dataset. 163 | 164 | 165 | 166 | 167 | Update Order Option 168 | 169 | 170 | 171 | 172 | Used to sort self-referenced table's rows 173 | 174 | 175 | 176 | 177 | -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/obj/Debug/MobilePhoneRecords.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | MobilePhoneRecords 6 | 7 | 8 | 9 | 10 | 11 | A strongly-typed resource class, for looking up localized strings, etc. 12 | 13 | 14 | 15 | 16 | Returns the cached ResourceManager instance used by this class. 17 | 18 | 19 | 20 | 21 | Overrides the current thread's CurrentUICulture property for all 22 | resource lookups using this strongly typed resource class. 23 | 24 | 25 | 26 | 27 | Looks up a localized resource of type System.Drawing.Bitmap. 28 | 29 | 30 | 31 | 32 | Represents a strongly typed in-memory cache of data. 33 | 34 | 35 | 36 | 37 | Represents the strongly named DataTable class. 38 | 39 | 40 | 41 | 42 | Represents the strongly named DataTable class. 43 | 44 | 45 | 46 | 47 | Represents the strongly named DataTable class. 48 | 49 | 50 | 51 | 52 | Represents the strongly named DataTable class. 53 | 54 | 55 | 56 | 57 | Represents the strongly named DataTable class. 58 | 59 | 60 | 61 | 62 | Represents strongly named DataRow class. 63 | 64 | 65 | 66 | 67 | Represents strongly named DataRow class. 68 | 69 | 70 | 71 | 72 | Represents strongly named DataRow class. 73 | 74 | 75 | 76 | 77 | Represents strongly named DataRow class. 78 | 79 | 80 | 81 | 82 | Represents strongly named DataRow class. 83 | 84 | 85 | 86 | 87 | Row event argument class 88 | 89 | 90 | 91 | 92 | Row event argument class 93 | 94 | 95 | 96 | 97 | Row event argument class 98 | 99 | 100 | 101 | 102 | Row event argument class 103 | 104 | 105 | 106 | 107 | Row event argument class 108 | 109 | 110 | 111 | 112 | Represents the connection and commands used to retrieve and save data. 113 | 114 | 115 | 116 | 117 | Represents the connection and commands used to retrieve and save data. 118 | 119 | 120 | 121 | 122 | Represents the connection and commands used to retrieve and save data. 123 | 124 | 125 | 126 | 127 | Represents the connection and commands used to retrieve and save data. 128 | 129 | 130 | 131 | 132 | Represents the connection and commands used to retrieve and save data. 133 | 134 | 135 | 136 | 137 | TableAdapterManager is used to coordinate TableAdapters in the dataset to enable Hierarchical Update scenarios 138 | 139 | 140 | 141 | 142 | Update rows in top-down order. 143 | 144 | 145 | 146 | 147 | Insert rows in top-down order. 148 | 149 | 150 | 151 | 152 | Delete rows in bottom-up order. 153 | 154 | 155 | 156 | 157 | Remove inserted rows that become updated rows after calling TableAdapter.Update(inserted rows) first 158 | 159 | 160 | 161 | 162 | Update all changes to the dataset. 163 | 164 | 165 | 166 | 167 | Update Order Option 168 | 169 | 170 | 171 | 172 | Used to sort self-referenced table's rows 173 | 174 | 175 | 176 | 177 | -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/LoginAdmin.Designer.vb: -------------------------------------------------------------------------------- 1 | _ 2 | Partial Class LoginAdmin 3 | Inherits System.Windows.Forms.Form 4 | 5 | 'Form overrides dispose to clean up the component list. 6 | _ 7 | Protected Overrides Sub Dispose(ByVal disposing As Boolean) 8 | Try 9 | If disposing AndAlso components IsNot Nothing Then 10 | components.Dispose() 11 | End If 12 | Finally 13 | MyBase.Dispose(disposing) 14 | End Try 15 | End Sub 16 | 17 | 'Required by the Windows Form Designer 18 | Private components As System.ComponentModel.IContainer 19 | 20 | 'NOTE: The following procedure is required by the Windows Form Designer 21 | 'It can be modified using the Windows Form Designer. 22 | 'Do not modify it using the code editor. 23 | _ 24 | Private Sub InitializeComponent() 25 | Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(LoginAdmin)) 26 | Me.Panel1 = New System.Windows.Forms.Panel() 27 | Me.LogoPictureBox = New System.Windows.Forms.PictureBox() 28 | Me.Panel2 = New System.Windows.Forms.Panel() 29 | Me.lblHeading = New System.Windows.Forms.Label() 30 | Me.btnSubmitt = New System.Windows.Forms.Button() 31 | Me.btnCancell = New System.Windows.Forms.Button() 32 | Me.Label1 = New System.Windows.Forms.Label() 33 | Me.txtPass = New System.Windows.Forms.TextBox() 34 | Me.txtName = New System.Windows.Forms.TextBox() 35 | Me.Label2 = New System.Windows.Forms.Label() 36 | Me.Panel1.SuspendLayout() 37 | CType(Me.LogoPictureBox, System.ComponentModel.ISupportInitialize).BeginInit() 38 | Me.Panel2.SuspendLayout() 39 | Me.SuspendLayout() 40 | ' 41 | 'Panel1 42 | ' 43 | Me.Panel1.Controls.Add(Me.LogoPictureBox) 44 | Me.Panel1.Location = New System.Drawing.Point(12, 12) 45 | Me.Panel1.Name = "Panel1" 46 | Me.Panel1.Size = New System.Drawing.Size(200, 228) 47 | Me.Panel1.TabIndex = 0 48 | ' 49 | 'LogoPictureBox 50 | ' 51 | Me.LogoPictureBox.Image = CType(resources.GetObject("LogoPictureBox.Image"), System.Drawing.Image) 52 | Me.LogoPictureBox.Location = New System.Drawing.Point(0, 0) 53 | Me.LogoPictureBox.Name = "LogoPictureBox" 54 | Me.LogoPictureBox.Size = New System.Drawing.Size(201, 229) 55 | Me.LogoPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage 56 | Me.LogoPictureBox.TabIndex = 16 57 | Me.LogoPictureBox.TabStop = False 58 | ' 59 | 'Panel2 60 | ' 61 | Me.Panel2.BackColor = System.Drawing.SystemColors.Control 62 | Me.Panel2.Controls.Add(Me.lblHeading) 63 | Me.Panel2.Controls.Add(Me.btnSubmitt) 64 | Me.Panel2.Controls.Add(Me.btnCancell) 65 | Me.Panel2.Controls.Add(Me.Label1) 66 | Me.Panel2.Controls.Add(Me.txtPass) 67 | Me.Panel2.Controls.Add(Me.txtName) 68 | Me.Panel2.Controls.Add(Me.Label2) 69 | Me.Panel2.Location = New System.Drawing.Point(218, 12) 70 | Me.Panel2.Name = "Panel2" 71 | Me.Panel2.Size = New System.Drawing.Size(271, 228) 72 | Me.Panel2.TabIndex = 1 73 | ' 74 | 'lblHeading 75 | ' 76 | Me.lblHeading.AutoSize = True 77 | Me.lblHeading.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D 78 | Me.lblHeading.Font = New System.Drawing.Font("Wide Latin", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) 79 | Me.lblHeading.ForeColor = System.Drawing.SystemColors.HotTrack 80 | Me.lblHeading.Location = New System.Drawing.Point(13, 22) 81 | Me.lblHeading.Name = "lblHeading" 82 | Me.lblHeading.Size = New System.Drawing.Size(225, 18) 83 | Me.lblHeading.TabIndex = 10 84 | Me.lblHeading.Text = " LOGIN PAGE " 85 | Me.lblHeading.TextAlign = System.Drawing.ContentAlignment.TopCenter 86 | ' 87 | 'btnSubmitt 88 | ' 89 | Me.btnSubmitt.BackColor = System.Drawing.Color.Green 90 | Me.btnSubmitt.Location = New System.Drawing.Point(13, 153) 91 | Me.btnSubmitt.Name = "btnSubmitt" 92 | Me.btnSubmitt.Size = New System.Drawing.Size(95, 35) 93 | Me.btnSubmitt.TabIndex = 6 94 | Me.btnSubmitt.Text = "SUBMIT" 95 | Me.btnSubmitt.UseVisualStyleBackColor = False 96 | ' 97 | 'btnCancell 98 | ' 99 | Me.btnCancell.BackColor = System.Drawing.Color.Red 100 | Me.btnCancell.Location = New System.Drawing.Point(139, 153) 101 | Me.btnCancell.Name = "btnCancell" 102 | Me.btnCancell.Size = New System.Drawing.Size(99, 35) 103 | Me.btnCancell.TabIndex = 5 104 | Me.btnCancell.Text = "CANCEL" 105 | Me.btnCancell.UseVisualStyleBackColor = False 106 | ' 107 | 'Label1 108 | ' 109 | Me.Label1.AutoSize = True 110 | Me.Label1.Font = New System.Drawing.Font("SimSun-ExtB", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) 111 | Me.Label1.Location = New System.Drawing.Point(15, 70) 112 | Me.Label1.Name = "Label1" 113 | Me.Label1.Size = New System.Drawing.Size(63, 13) 114 | Me.Label1.TabIndex = 4 115 | Me.Label1.Text = "USERNAME" 116 | ' 117 | 'txtPass 118 | ' 119 | Me.txtPass.Location = New System.Drawing.Point(92, 110) 120 | Me.txtPass.Name = "txtPass" 121 | Me.txtPass.Size = New System.Drawing.Size(146, 20) 122 | Me.txtPass.TabIndex = 3 123 | ' 124 | 'txtName 125 | ' 126 | Me.txtName.Location = New System.Drawing.Point(92, 70) 127 | Me.txtName.Name = "txtName" 128 | Me.txtName.Size = New System.Drawing.Size(146, 20) 129 | Me.txtName.TabIndex = 2 130 | ' 131 | 'Label2 132 | ' 133 | Me.Label2.AutoSize = True 134 | Me.Label2.Font = New System.Drawing.Font("SimSun-ExtB", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) 135 | Me.Label2.Location = New System.Drawing.Point(15, 110) 136 | Me.Label2.Name = "Label2" 137 | Me.Label2.Size = New System.Drawing.Size(63, 13) 138 | Me.Label2.TabIndex = 1 139 | Me.Label2.Text = "PASSWORD" 140 | ' 141 | 'LoginAdmin 142 | ' 143 | Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) 144 | Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font 145 | Me.BackColor = System.Drawing.SystemColors.ControlLight 146 | Me.ClientSize = New System.Drawing.Size(527, 299) 147 | Me.Controls.Add(Me.Panel2) 148 | Me.Controls.Add(Me.Panel1) 149 | Me.Name = "LoginAdmin" 150 | Me.Text = "LoginAdmin" 151 | Me.Panel1.ResumeLayout(False) 152 | CType(Me.LogoPictureBox, System.ComponentModel.ISupportInitialize).EndInit() 153 | Me.Panel2.ResumeLayout(False) 154 | Me.Panel2.PerformLayout() 155 | Me.ResumeLayout(False) 156 | 157 | End Sub 158 | 159 | Friend WithEvents Panel1 As Panel 160 | Friend WithEvents Panel2 As Panel 161 | Friend WithEvents txtPass As TextBox 162 | Friend WithEvents txtName As TextBox 163 | Friend WithEvents Label2 As Label 164 | Friend WithEvents btnSubmitt As Button 165 | Friend WithEvents btnCancell As Button 166 | Friend WithEvents Label1 As Label 167 | Friend WithEvents lblHeading As Label 168 | Friend WithEvents LogoPictureBox As PictureBox 169 | End Class 170 | -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/MobilePhoneRecords.vbproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {3B4586F4-F87D-4EF2-8D29-042007FB3C34} 8 | WinExe 9 | MobilePhoneRecords.My.MyApplication 10 | MobilePhoneRecords 11 | MobilePhoneRecords 12 | 512 13 | WindowsForms 14 | v4.5.2 15 | true 16 | 17 | 18 | AnyCPU 19 | true 20 | full 21 | true 22 | true 23 | bin\Debug\ 24 | MobilePhoneRecords.xml 25 | 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022 26 | 27 | 28 | AnyCPU 29 | pdbonly 30 | false 31 | true 32 | true 33 | bin\Release\ 34 | MobilePhoneRecords.xml 35 | 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022 36 | 37 | 38 | On 39 | 40 | 41 | Binary 42 | 43 | 44 | Off 45 | 46 | 47 | On 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | cellphone.vb 77 | 78 | 79 | Form 80 | 81 | 82 | Customer.vb 83 | 84 | 85 | Form 86 | 87 | 88 | dashboard.vb 89 | 90 | 91 | Form 92 | 93 | 94 | Form 95 | 96 | 97 | Form1.vb 98 | Form 99 | 100 | 101 | LoginAdmin.vb 102 | 103 | 104 | Form 105 | 106 | 107 | True 108 | True 109 | MPRdbDataSet.xsd 110 | 111 | 112 | 113 | True 114 | Application.myapp 115 | 116 | 117 | True 118 | True 119 | Resources.resx 120 | 121 | 122 | True 123 | Settings.settings 124 | True 125 | 126 | 127 | Supplier.vb 128 | 129 | 130 | Form 131 | 132 | 133 | 134 | 135 | cellphone.vb 136 | 137 | 138 | Customer.vb 139 | 140 | 141 | dashboard.vb 142 | 143 | 144 | Form1.vb 145 | 146 | 147 | LoginAdmin.vb 148 | 149 | 150 | VbMyResourcesResXFileCodeGenerator 151 | Resources.Designer.vb 152 | My.Resources 153 | Designer 154 | 155 | 156 | Supplier.vb 157 | 158 | 159 | 160 | 161 | MPRdbDataSet.xsd 162 | 163 | 164 | MSDataSetGenerator 165 | MPRdbDataSet.Designer.vb 166 | Designer 167 | 168 | 169 | MPRdbDataSet.xsd 170 | 171 | 172 | MyApplicationCodeGenerator 173 | Application.Designer.vb 174 | 175 | 176 | SettingsSingleFileGenerator 177 | My 178 | Settings.Designer.vb 179 | 180 | 181 | 182 | 183 | 184 | Always 185 | 186 | 187 | 188 | 189 | 196 | -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/dashboard.Designer.vb: -------------------------------------------------------------------------------- 1 | _ 2 | Partial Class dashboard 3 | Inherits System.Windows.Forms.Form 4 | 5 | 'Form overrides dispose to clean up the component list. 6 | _ 7 | Protected Overrides Sub Dispose(ByVal disposing As Boolean) 8 | Try 9 | If disposing AndAlso components IsNot Nothing Then 10 | components.Dispose() 11 | End If 12 | Finally 13 | MyBase.Dispose(disposing) 14 | End Try 15 | End Sub 16 | 17 | 'Required by the Windows Form Designer 18 | Private components As System.ComponentModel.IContainer 19 | 20 | 'NOTE: The following procedure is required by the Windows Form Designer 21 | 'It can be modified using the Windows Form Designer. 22 | 'Do not modify it using the code editor. 23 | _ 24 | Private Sub InitializeComponent() 25 | Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(dashboard)) 26 | Me.Panel1 = New System.Windows.Forms.Panel() 27 | Me.Button5 = New System.Windows.Forms.Button() 28 | Me.Button6 = New System.Windows.Forms.Button() 29 | Me.Button3 = New System.Windows.Forms.Button() 30 | Me.Button4 = New System.Windows.Forms.Button() 31 | Me.Button2 = New System.Windows.Forms.Button() 32 | Me.Button1 = New System.Windows.Forms.Button() 33 | Me.Panel3 = New System.Windows.Forms.Panel() 34 | Me.ToolStrip1 = New System.Windows.Forms.ToolStrip() 35 | Me.PictureBox1 = New System.Windows.Forms.PictureBox() 36 | Me.Cellphone = New System.Windows.Forms.ToolStripButton() 37 | Me.ToolStripButton1 = New System.Windows.Forms.ToolStripButton() 38 | Me.btnReceipts = New System.Windows.Forms.ToolStripButton() 39 | Me.btnServiceProvider = New System.Windows.Forms.ToolStripButton() 40 | Me.Manufacturer = New System.Windows.Forms.ToolStripButton() 41 | Me.Panel1.SuspendLayout() 42 | Me.Panel3.SuspendLayout() 43 | Me.ToolStrip1.SuspendLayout() 44 | CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).BeginInit() 45 | Me.SuspendLayout() 46 | ' 47 | 'Panel1 48 | ' 49 | Me.Panel1.Controls.Add(Me.Button5) 50 | Me.Panel1.Controls.Add(Me.Button6) 51 | Me.Panel1.Controls.Add(Me.Button3) 52 | Me.Panel1.Controls.Add(Me.Button4) 53 | Me.Panel1.Controls.Add(Me.Button2) 54 | Me.Panel1.Controls.Add(Me.Button1) 55 | Me.Panel1.Location = New System.Drawing.Point(15, 410) 56 | Me.Panel1.Name = "Panel1" 57 | Me.Panel1.Size = New System.Drawing.Size(1019, 59) 58 | Me.Panel1.TabIndex = 0 59 | ' 60 | 'Button5 61 | ' 62 | Me.Button5.Location = New System.Drawing.Point(600, 19) 63 | Me.Button5.Name = "Button5" 64 | Me.Button5.Size = New System.Drawing.Size(75, 23) 65 | Me.Button5.TabIndex = 5 66 | Me.Button5.Text = "Button5" 67 | Me.Button5.UseVisualStyleBackColor = True 68 | ' 69 | 'Button6 70 | ' 71 | Me.Button6.Location = New System.Drawing.Point(519, 19) 72 | Me.Button6.Name = "Button6" 73 | Me.Button6.Size = New System.Drawing.Size(75, 23) 74 | Me.Button6.TabIndex = 4 75 | Me.Button6.Text = "Button6" 76 | Me.Button6.UseVisualStyleBackColor = True 77 | ' 78 | 'Button3 79 | ' 80 | Me.Button3.Location = New System.Drawing.Point(431, 19) 81 | Me.Button3.Name = "Button3" 82 | Me.Button3.Size = New System.Drawing.Size(75, 23) 83 | Me.Button3.TabIndex = 3 84 | Me.Button3.Text = "Button3" 85 | Me.Button3.UseVisualStyleBackColor = True 86 | ' 87 | 'Button4 88 | ' 89 | Me.Button4.Location = New System.Drawing.Point(350, 19) 90 | Me.Button4.Name = "Button4" 91 | Me.Button4.Size = New System.Drawing.Size(75, 23) 92 | Me.Button4.TabIndex = 2 93 | Me.Button4.Text = "Button4" 94 | Me.Button4.UseVisualStyleBackColor = True 95 | ' 96 | 'Button2 97 | ' 98 | Me.Button2.Location = New System.Drawing.Point(269, 19) 99 | Me.Button2.Name = "Button2" 100 | Me.Button2.Size = New System.Drawing.Size(75, 23) 101 | Me.Button2.TabIndex = 1 102 | Me.Button2.Text = "Button2" 103 | Me.Button2.UseVisualStyleBackColor = True 104 | ' 105 | 'Button1 106 | ' 107 | Me.Button1.Location = New System.Drawing.Point(188, 19) 108 | Me.Button1.Name = "Button1" 109 | Me.Button1.Size = New System.Drawing.Size(75, 23) 110 | Me.Button1.TabIndex = 0 111 | Me.Button1.Text = "Button1" 112 | Me.Button1.UseVisualStyleBackColor = True 113 | ' 114 | 'Panel3 115 | ' 116 | Me.Panel3.BackColor = System.Drawing.Color.GhostWhite 117 | Me.Panel3.Controls.Add(Me.PictureBox1) 118 | Me.Panel3.Controls.Add(Me.ToolStrip1) 119 | Me.Panel3.Location = New System.Drawing.Point(12, 12) 120 | Me.Panel3.Name = "Panel3" 121 | Me.Panel3.Size = New System.Drawing.Size(1022, 392) 122 | Me.Panel3.TabIndex = 1 123 | ' 124 | 'ToolStrip1 125 | ' 126 | Me.ToolStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.Cellphone, Me.ToolStripButton1, Me.btnReceipts, Me.btnServiceProvider, Me.Manufacturer}) 127 | Me.ToolStrip1.Location = New System.Drawing.Point(0, 0) 128 | Me.ToolStrip1.Name = "ToolStrip1" 129 | Me.ToolStrip1.Size = New System.Drawing.Size(1022, 25) 130 | Me.ToolStrip1.TabIndex = 3 131 | Me.ToolStrip1.Text = "ToolStrip1" 132 | ' 133 | 'PictureBox1 134 | ' 135 | Me.PictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D 136 | Me.PictureBox1.Image = CType(resources.GetObject("PictureBox1.Image"), System.Drawing.Image) 137 | Me.PictureBox1.Location = New System.Drawing.Point(3, 51) 138 | Me.PictureBox1.Name = "PictureBox1" 139 | Me.PictureBox1.Size = New System.Drawing.Size(1010, 338) 140 | Me.PictureBox1.TabIndex = 2 141 | Me.PictureBox1.TabStop = False 142 | ' 143 | 'Cellphone 144 | ' 145 | Me.Cellphone.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text 146 | Me.Cellphone.Image = CType(resources.GetObject("Cellphone.Image"), System.Drawing.Image) 147 | Me.Cellphone.ImageTransparentColor = System.Drawing.Color.Magenta 148 | Me.Cellphone.Name = "Cellphone" 149 | Me.Cellphone.Size = New System.Drawing.Size(65, 22) 150 | Me.Cellphone.Text = "Cellphone" 151 | ' 152 | 'ToolStripButton1 153 | ' 154 | Me.ToolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text 155 | Me.ToolStripButton1.Image = CType(resources.GetObject("ToolStripButton1.Image"), System.Drawing.Image) 156 | Me.ToolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta 157 | Me.ToolStripButton1.Name = "ToolStripButton1" 158 | Me.ToolStripButton1.Size = New System.Drawing.Size(58, 22) 159 | Me.ToolStripButton1.Text = "Cutomer" 160 | ' 161 | 'btnReceipts 162 | ' 163 | Me.btnReceipts.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text 164 | Me.btnReceipts.Image = CType(resources.GetObject("btnReceipts.Image"), System.Drawing.Image) 165 | Me.btnReceipts.ImageTransparentColor = System.Drawing.Color.Magenta 166 | Me.btnReceipts.Name = "btnReceipts" 167 | Me.btnReceipts.Size = New System.Drawing.Size(55, 22) 168 | Me.btnReceipts.Text = "Receipts" 169 | ' 170 | 'btnServiceProvider 171 | ' 172 | Me.btnServiceProvider.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text 173 | Me.btnServiceProvider.Image = CType(resources.GetObject("btnServiceProvider.Image"), System.Drawing.Image) 174 | Me.btnServiceProvider.ImageTransparentColor = System.Drawing.Color.Magenta 175 | Me.btnServiceProvider.Name = "btnServiceProvider" 176 | Me.btnServiceProvider.Size = New System.Drawing.Size(95, 22) 177 | Me.btnServiceProvider.Text = "Service Provider" 178 | ' 179 | 'Manufacturer 180 | ' 181 | Me.Manufacturer.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text 182 | Me.Manufacturer.Image = CType(resources.GetObject("Manufacturer.Image"), System.Drawing.Image) 183 | Me.Manufacturer.ImageTransparentColor = System.Drawing.Color.Magenta 184 | Me.Manufacturer.Name = "Manufacturer" 185 | Me.Manufacturer.Size = New System.Drawing.Size(83, 22) 186 | Me.Manufacturer.Text = "Manufacturer" 187 | ' 188 | 'dashboard 189 | ' 190 | Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) 191 | Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font 192 | Me.ClientSize = New System.Drawing.Size(1037, 481) 193 | Me.Controls.Add(Me.Panel3) 194 | Me.Controls.Add(Me.Panel1) 195 | Me.Name = "dashboard" 196 | Me.Text = "dashboard" 197 | Me.Panel1.ResumeLayout(False) 198 | Me.Panel3.ResumeLayout(False) 199 | Me.Panel3.PerformLayout() 200 | Me.ToolStrip1.ResumeLayout(False) 201 | Me.ToolStrip1.PerformLayout() 202 | CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).EndInit() 203 | Me.ResumeLayout(False) 204 | 205 | End Sub 206 | 207 | Friend WithEvents Panel1 As Panel 208 | Friend WithEvents Panel3 As Panel 209 | Friend WithEvents Button5 As Button 210 | Friend WithEvents Button6 As Button 211 | Friend WithEvents Button3 As Button 212 | Friend WithEvents Button4 As Button 213 | Friend WithEvents Button2 As Button 214 | Friend WithEvents Button1 As Button 215 | Friend WithEvents PictureBox1 As PictureBox 216 | Friend WithEvents ToolStrip1 As ToolStrip 217 | Friend WithEvents Cellphone As ToolStripButton 218 | Friend WithEvents ToolStripButton1 As ToolStripButton 219 | Friend WithEvents btnReceipts As ToolStripButton 220 | Friend WithEvents btnServiceProvider As ToolStripButton 221 | Friend WithEvents Manufacturer As ToolStripButton 222 | End Class 223 | -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/Supplier.resx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | True 122 | 123 | 124 | True 125 | 126 | 127 | True 128 | 129 | 130 | True 131 | 132 | 133 | True 134 | 135 | 136 | True 137 | 138 | 139 | True 140 | 141 | 142 | True 143 | 144 | 145 | True 146 | 147 | 148 | True 149 | 150 | 151 | True 152 | 153 | 154 | True 155 | 156 | 157 | True 158 | 159 | 160 | True 161 | 162 | 163 | True 164 | 165 | 166 | True 167 | 168 | 169 | True 170 | 171 | 172 | True 173 | 174 | 175 | True 176 | 177 | 178 | True 179 | 180 | 181 | True 182 | 183 | 184 | True 185 | 186 | 187 | True 188 | 189 | 190 | True 191 | 192 | 193 | True 194 | 195 | 196 | True 197 | 198 | 199 | True 200 | 201 | 202 | True 203 | 204 | 205 | True 206 | 207 | 208 | True 209 | 210 | 211 | True 212 | 213 | 214 | True 215 | 216 | 217 | True 218 | 219 | 220 | True 221 | 222 | 223 | True 224 | 225 | 226 | True 227 | 228 | 229 | True 230 | 231 | -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/Customer.resx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | 17, 17 122 | 123 | 124 | 151, 17 125 | 126 | 127 | 336, 17 128 | 129 | 130 | 516, 17 131 | 132 | 133 | 689, 17 134 | 135 | 136 | 137 | 138 | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO 139 | wwAADsMBx2+oZAAAAUpJREFUOE9jGLzg7gL2/7fmcf6/Oofr/8UZvP+hwsSD60CNfx41/v/zsOH/yckC 140 | pBtwfjov3ICDPSKkG3B8kiBQc93/Pw+q/u9oFydswKWZPP/PTuX7fxKo8Ui/0P993SJAzeX//94r+r++ 141 | Qeb/qhq5/0srFf/PL1X+P6tIFdPAU0B//nlYD9RUC8SV///cKwHivP9/72b+/3sn+f/f23H//92MAOKQ 142 | /5NyNDENONQrDHbu3/ulQI0FQI3ZQI2pQI0J///digZqDPv/70bQ/3/X/f53peliGrCzXeL/lmap/+vA 143 | zpX/v6RC8f/fWzFAjeH/p+Zp/J+QpfW/O0P3f3uq/v/mREPCYTIb6E+Qc//dCPjfk6FDWAM6APnz3w1/ 144 | IPb735qsT7oB3em6YP+CcH2cEekGtCQZ/G+IN/xfE2v8vzLahHQD6AQYGAAkI9iedfyIaQAAAABJRU5E 145 | rkJggg== 146 | 147 | 148 | 149 | 150 | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO 151 | wwAADsMBx2+oZAAAAW9JREFUOE+1kE0ow2Ecx3dV3krt4oJaOSCTvIRkMqSxyITIzCQHDouEdnFwIOVC 152 | DrhIDiQl5UTiNG/z2ppafy1S2gX/uDwfY6i1v7Hie3nqeb7fz+/7/FR/Ilwn0G0Exw4fV5GJlXlEZxXC 153 | rIet9bAQvB5Ymgn2sLYAvSZEux7RUQFzE4qQt4bCXAYjPaHvnDoCkLpsRGMB2JqCTGLIijDlwqQ9bEMV 154 | i9OIytR3EMNWcJ/BWH8A6j8/bOGFxwXNxYEvGbMQ9XnQ1/K78KfY3/VXzkMY0qFGG2H4RoLGQshJQNbG 155 | 86CNhdrsX9a/uQZTPhQl4rMY4OLofbl3aX7I8uwPC7y/g1YdjyVJuEvT8e1tfwUYteHUxCCfHChDeHmG 156 | QQvokjlOU+PbWA0x3pZnILVVI3uvQyHsbiLnqnGmRCF1NYD8pDhpRxOH7HQoAKZGkFKjceszQbpSrumX 157 | bO+G80MFwKUTxgfgcO/b8D9IpXoFiiMDHIQm0skAAAAASUVORK5CYII= 158 | 159 | 160 | 161 | 162 | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO 163 | wwAADsMBx2+oZAAAASpJREFUOE9jGDygcNbz/00Lnv/PnPj4P1QIA4S3P8Apx5A789n/VUfe/8elKL77 164 | wf/ghmu4DciY8vT/wn0fsCqK73n4f+n+///9qy/gNiCh58n/aVveYyiKaL8P1pw56/9/r9ITuA2I7Hr0 165 | v3f1BxRFoa33wJpb1wFt7/z73yX/AG4DApsf/q+b/w6uKLjl7v9Fe///7wBqzpjz879d3c//9hnbcRvg 166 | UXX/f/60NyiK7Ipv/0+f8/u/f9e3/zqF7/5bJKzHbYB96d3/2ZNfYyjSTzn/36ToxX+VrE//jSOX4TbA 167 | Iu/O/9T+11gVGSSd+C+b9vW/bvA83AYYZt3+H9byEqci/dTL/zV8p+E2QCftxn+/6od4Fal4TMBtgFPu 168 | lf8gBXgVDULAwAAA8HbAq6XlmnAAAAAASUVORK5CYII= 169 | 170 | 171 | 172 | 173 | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO 174 | wwAADsMBx2+oZAAAALZJREFUOE9jGDogvP3BfyiTdBDf/eB/cMM18gyI73n4f+n+///9qy+QbkBE+32w 175 | 5sxZ//97lZ4gzYDQ1ntgza3rgLZ3/v3vkn+AeAOCW+7+X7T3//8OoOaMOT//29X9/G+fsZ00F9gV3/6f 176 | Puf3f/+ub/91Ct/9t0hYT3oY6Kec/29S9OK/Stan/8aRy0g3AAQMkk78l037+l83eB55BoCAfurl/xq+ 177 | 08g3AARUPCZQZsBgBQwMANAUYJgEulBVAAAAAElFTkSuQmCC 178 | 179 | 180 | 181 | 182 | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO 183 | wwAADsMBx2+oZAAAAKNJREFUOE9jGHygcNbz/1AmeSB35rP/Cd33yDckY8rT//P2//6f0HWHPEMSep78 184 | n73v1//OrX//u5VeJt2QyK5H/6ds+/W/ZOnf/wnT//63yT1LmiGBzQ//t659D9ZsXPLlv3T0tf/GkcuI 185 | N8Sj6v7/krnv4JoVXXpIc4F96d3/gS3PyNMMAhZ5d/7bFFwhTzMIGGbdJl8zCOik3SBf81AEDAwAoH5f 186 | oAc0QjgAAAAASUVORK5CYII= 187 | 188 | 189 | 190 | 191 | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO 192 | wwAADsMBx2+oZAAAASxJREFUOE9jGFygcNbz/1AmBgDJNS14/j9z4mOcahhyZz77n9B9D6sCkNyqI+// 193 | h7c/wG1AxpSn/+ft//0/oesOhiKQ3MJ9H/4HN1zDbUBCz5P/s/f9+t+59e9/t9LLKApBctO2vP/vX30B 194 | twGRXY/+T9n263/J0r//E6b//W+TexauGCTXu/rDf6/SE7gNCGx++L917XuwZuOSL/+lo6/9N45cBtYA 195 | kqub/+6/S/4B3AZ4VN3/XzL3HVyzoksPXDFILn/am//2GdtxG2Bfevd/YMszDM0gAJLLnvz6v0XCetwG 196 | WOTd+W9TcAVDMwiA5FL7X8O9hBUYZt3GqhkEQHJhLS//6wbPw22ATtoNnJIgOb/qh/81fKfhNgAfcMq9 197 | 8l/FYwIYQ4UGBWBgAAC+0b+zuQxOnAAAAABJRU5ErkJggg== 198 | 199 | 200 | 201 | 202 | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO 203 | wwAADsMBx2+oZAAAAExJREFUOE9joAr49u3bf1IxVCsEgAWC58Dxh/cf4RhZDETHTNiHaQgpBoAwzBCo 204 | dtINAGGiDUDGyGpoawAxeNSAQWkAORiqnRLAwAAA9EMMU8Daa3MAAAAASUVORK5CYII= 205 | 206 | 207 | 208 | 209 | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 210 | YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIDSURBVDhPpZLrS5NhGMb3j4SWh0oRQVExD4gonkDpg4hG 211 | YKxG6WBogkMZKgPNCEVJFBGdGETEvgwyO9DJE5syZw3PIlPEE9pgBCLZ5XvdMB8Ew8gXbl54nuf63dd9 212 | 0OGSnwCahxbPRNPAPMw9Xpg6ZmF46kZZ0xSKzJPIrhpDWsVnpBhGkKx3nAX8Pv7z1zg8OoY/cITdn4fw 213 | bf/C0kYAN3Ma/w3gWfZL5kzTKBxjWyK2DftwI9tyMYCZKXbNHaD91bLYJrDXsYbrWfUKwJrPE9M2M1Oc 214 | VzOOpHI7Jr376Hi9ogHqFIANO0/MmmmbmSmm9a8ze+I4MrNWAdjtoJgWcx+PSzg166yZZ8xM8XvXDix9 215 | c4jIqFYAjoriBV9AhEPv1mH/sonogha0afbZMMZz+yreTGyhpusHwtNNCsA5U1zS4BLxzJIfg299qO32 216 | Ir7UJtZfftyATqeT+8o2D8JSjQrAJblrncYL7ZJ2+bfaFnC/1S1NjL3diRat7qrO7wLRP3HjWsojBeCo 217 | mDEo5mNjuweFGvjWg2EBhCbpkW78htSHHwRyNdmgAFzPEee2iFkzayy2OLXzT4gr6UdUnlXrullsxxQ+ 218 | kx0g8BTA3aZlButjSTyjODq/WcQcW/B/Je4OQhLvKQDnzN1mp0nnkvAhR8VuMzNrpm1mpjgkoVwB/v8D 219 | TgDQASA1MVpwzwAAAABJRU5ErkJggg== 220 | 221 | 222 | 223 | 17, 56 224 | 225 | 226 | 146, 56 227 | 228 | 229 | 77 230 | 231 | -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/Supplier.Designer.vb: -------------------------------------------------------------------------------- 1 | _ 2 | Partial Class Supplier 3 | Inherits System.Windows.Forms.Form 4 | 5 | 'Form overrides dispose to clean up the component list. 6 | _ 7 | Protected Overrides Sub Dispose(ByVal disposing As Boolean) 8 | Try 9 | If disposing AndAlso components IsNot Nothing Then 10 | components.Dispose() 11 | End If 12 | Finally 13 | MyBase.Dispose(disposing) 14 | End Try 15 | End Sub 16 | 17 | 'Required by the Windows Form Designer 18 | Private components As System.ComponentModel.IContainer 19 | 20 | 'NOTE: The following procedure is required by the Windows Form Designer 21 | 'It can be modified using the Windows Form Designer. 22 | 'Do not modify it using the code editor. 23 | _ 24 | Private Sub InitializeComponent() 25 | Me.lstDescription = New System.Windows.Forms.Panel() 26 | Me.txtDescription = New System.Windows.Forms.RichTextBox() 27 | Me.TextBox17 = New System.Windows.Forms.TextBox() 28 | Me.Label26 = New System.Windows.Forms.Label() 29 | Me.TextBox13 = New System.Windows.Forms.TextBox() 30 | Me.Label20 = New System.Windows.Forms.Label() 31 | Me.TextBox14 = New System.Windows.Forms.TextBox() 32 | Me.Label21 = New System.Windows.Forms.Label() 33 | Me.TextBox15 = New System.Windows.Forms.TextBox() 34 | Me.Label22 = New System.Windows.Forms.Label() 35 | Me.Label23 = New System.Windows.Forms.Label() 36 | Me.ComboBox3 = New System.Windows.Forms.ComboBox() 37 | Me.TextBox16 = New System.Windows.Forms.TextBox() 38 | Me.Label24 = New System.Windows.Forms.Label() 39 | Me.Label25 = New System.Windows.Forms.Label() 40 | Me.Panel2 = New System.Windows.Forms.Panel() 41 | Me.btnSubmit = New System.Windows.Forms.Button() 42 | Me.btnCancel = New System.Windows.Forms.Button() 43 | Me.DateTimePicker1 = New System.Windows.Forms.DateTimePicker() 44 | Me.Panel1 = New System.Windows.Forms.Panel() 45 | Me.txtAddress = New System.Windows.Forms.RichTextBox() 46 | Me.TextBox4 = New System.Windows.Forms.TextBox() 47 | Me.TextBox3 = New System.Windows.Forms.TextBox() 48 | Me.TextBox2 = New System.Windows.Forms.TextBox() 49 | Me.TextBox1 = New System.Windows.Forms.TextBox() 50 | Me.Label8 = New System.Windows.Forms.Label() 51 | Me.Label7 = New System.Windows.Forms.Label() 52 | Me.Label6 = New System.Windows.Forms.Label() 53 | Me.Label5 = New System.Windows.Forms.Label() 54 | Me.Label1 = New System.Windows.Forms.Label() 55 | Me.Panel4 = New System.Windows.Forms.Panel() 56 | Me.NumericUpDown2 = New System.Windows.Forms.NumericUpDown() 57 | Me.NumericUpDown1 = New System.Windows.Forms.NumericUpDown() 58 | Me.Label3 = New System.Windows.Forms.Label() 59 | Me.Label2 = New System.Windows.Forms.Label() 60 | Me.Label4 = New System.Windows.Forms.Label() 61 | Me.lstDescription.SuspendLayout() 62 | Me.Panel2.SuspendLayout() 63 | Me.Panel1.SuspendLayout() 64 | Me.Panel4.SuspendLayout() 65 | CType(Me.NumericUpDown2, System.ComponentModel.ISupportInitialize).BeginInit() 66 | CType(Me.NumericUpDown1, System.ComponentModel.ISupportInitialize).BeginInit() 67 | Me.SuspendLayout() 68 | ' 69 | 'lstDescription 70 | ' 71 | Me.lstDescription.BackColor = System.Drawing.Color.BurlyWood 72 | Me.lstDescription.Controls.Add(Me.txtDescription) 73 | Me.lstDescription.Controls.Add(Me.TextBox17) 74 | Me.lstDescription.Controls.Add(Me.Label26) 75 | Me.lstDescription.Controls.Add(Me.TextBox13) 76 | Me.lstDescription.Controls.Add(Me.Label20) 77 | Me.lstDescription.Controls.Add(Me.TextBox14) 78 | Me.lstDescription.Controls.Add(Me.Label21) 79 | Me.lstDescription.Controls.Add(Me.TextBox15) 80 | Me.lstDescription.Controls.Add(Me.Label22) 81 | Me.lstDescription.Controls.Add(Me.Label23) 82 | Me.lstDescription.Controls.Add(Me.ComboBox3) 83 | Me.lstDescription.Controls.Add(Me.TextBox16) 84 | Me.lstDescription.Controls.Add(Me.Label24) 85 | Me.lstDescription.Controls.Add(Me.Label25) 86 | Me.lstDescription.Location = New System.Drawing.Point(207, 197) 87 | Me.lstDescription.Name = "lstDescription" 88 | Me.lstDescription.Size = New System.Drawing.Size(881, 204) 89 | Me.lstDescription.TabIndex = 13 90 | ' 91 | 'txtDescription 92 | ' 93 | Me.txtDescription.Location = New System.Drawing.Point(607, 48) 94 | Me.txtDescription.Name = "txtDescription" 95 | Me.txtDescription.Size = New System.Drawing.Size(239, 110) 96 | Me.txtDescription.TabIndex = 12 97 | Me.txtDescription.Text = "" 98 | ' 99 | 'TextBox17 100 | ' 101 | Me.TextBox17.Location = New System.Drawing.Point(410, 134) 102 | Me.TextBox17.Name = "TextBox17" 103 | Me.TextBox17.Size = New System.Drawing.Size(176, 20) 104 | Me.TextBox17.TabIndex = 11 105 | ' 106 | 'Label26 107 | ' 108 | Me.Label26.AutoSize = True 109 | Me.Label26.Location = New System.Drawing.Point(306, 141) 110 | Me.Label26.Name = "Label26" 111 | Me.Label26.Size = New System.Drawing.Size(66, 13) 112 | Me.Label26.TabIndex = 10 113 | Me.Label26.Text = "Brand Name" 114 | ' 115 | 'TextBox13 116 | ' 117 | Me.TextBox13.Location = New System.Drawing.Point(410, 90) 118 | Me.TextBox13.Name = "TextBox13" 119 | Me.TextBox13.Size = New System.Drawing.Size(176, 20) 120 | Me.TextBox13.TabIndex = 9 121 | ' 122 | 'Label20 123 | ' 124 | Me.Label20.AutoSize = True 125 | Me.Label20.Location = New System.Drawing.Point(306, 97) 126 | Me.Label20.Name = "Label20" 127 | Me.Label20.Size = New System.Drawing.Size(88, 13) 128 | Me.Label20.TabIndex = 8 129 | Me.Label20.Text = "Number Sim slots" 130 | ' 131 | 'TextBox14 132 | ' 133 | Me.TextBox14.Location = New System.Drawing.Point(410, 44) 134 | Me.TextBox14.Name = "TextBox14" 135 | Me.TextBox14.Size = New System.Drawing.Size(176, 20) 136 | Me.TextBox14.TabIndex = 7 137 | ' 138 | 'Label21 139 | ' 140 | Me.Label21.AutoSize = True 141 | Me.Label21.Location = New System.Drawing.Point(306, 51) 142 | Me.Label21.Name = "Label21" 143 | Me.Label21.Size = New System.Drawing.Size(90, 13) 144 | Me.Label21.TabIndex = 6 145 | Me.Label21.Text = "Operating System" 146 | ' 147 | 'TextBox15 148 | ' 149 | Me.TextBox15.Location = New System.Drawing.Point(115, 136) 150 | Me.TextBox15.Name = "TextBox15" 151 | Me.TextBox15.Size = New System.Drawing.Size(159, 20) 152 | Me.TextBox15.TabIndex = 5 153 | ' 154 | 'Label22 155 | ' 156 | Me.Label22.AutoSize = True 157 | Me.Label22.Location = New System.Drawing.Point(24, 143) 158 | Me.Label22.Name = "Label22" 159 | Me.Label22.Size = New System.Drawing.Size(73, 13) 160 | Me.Label22.TabIndex = 4 161 | Me.Label22.Text = "Serial Number" 162 | ' 163 | 'Label23 164 | ' 165 | Me.Label23.AutoSize = True 166 | Me.Label23.Location = New System.Drawing.Point(20, 97) 167 | Me.Label23.Name = "Label23" 168 | Me.Label23.Size = New System.Drawing.Size(70, 13) 169 | Me.Label23.TabIndex = 3 170 | Me.Label23.Text = "Device name" 171 | ' 172 | 'ComboBox3 173 | ' 174 | Me.ComboBox3.FormattingEnabled = True 175 | Me.ComboBox3.Items.AddRange(New Object() {"Iphone", "Samsunge", "Nokia", "Itel", "ZTE", "Huawei"}) 176 | Me.ComboBox3.Location = New System.Drawing.Point(115, 89) 177 | Me.ComboBox3.Name = "ComboBox3" 178 | Me.ComboBox3.Size = New System.Drawing.Size(159, 21) 179 | Me.ComboBox3.TabIndex = 1 180 | ' 181 | 'TextBox16 182 | ' 183 | Me.TextBox16.Location = New System.Drawing.Point(115, 44) 184 | Me.TextBox16.Name = "TextBox16" 185 | Me.TextBox16.Size = New System.Drawing.Size(159, 20) 186 | Me.TextBox16.TabIndex = 2 187 | ' 188 | 'Label24 189 | ' 190 | Me.Label24.AutoSize = True 191 | Me.Label24.Location = New System.Drawing.Point(20, 51) 192 | Me.Label24.Name = "Label24" 193 | Me.Label24.Size = New System.Drawing.Size(36, 13) 194 | Me.Label24.TabIndex = 1 195 | Me.Label24.Text = "Model" 196 | ' 197 | 'Label25 198 | ' 199 | Me.Label25.AutoSize = True 200 | Me.Label25.BackColor = System.Drawing.Color.DarkGoldenrod 201 | Me.Label25.Font = New System.Drawing.Font("Microsoft Sans Serif", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) 202 | Me.Label25.Location = New System.Drawing.Point(12, 0) 203 | Me.Label25.Name = "Label25" 204 | Me.Label25.Size = New System.Drawing.Size(145, 20) 205 | Me.Label25.TabIndex = 0 206 | Me.Label25.Text = "Product description" 207 | ' 208 | 'Panel2 209 | ' 210 | Me.Panel2.BackColor = System.Drawing.Color.Gainsboro 211 | Me.Panel2.Controls.Add(Me.btnSubmit) 212 | Me.Panel2.Controls.Add(Me.btnCancel) 213 | Me.Panel2.Location = New System.Drawing.Point(546, 77) 214 | Me.Panel2.Name = "Panel2" 215 | Me.Panel2.Size = New System.Drawing.Size(315, 54) 216 | Me.Panel2.TabIndex = 6 217 | ' 218 | 'btnSubmit 219 | ' 220 | Me.btnSubmit.BackColor = System.Drawing.Color.DarkOliveGreen 221 | Me.btnSubmit.Location = New System.Drawing.Point(61, 14) 222 | Me.btnSubmit.Name = "btnSubmit" 223 | Me.btnSubmit.Size = New System.Drawing.Size(108, 37) 224 | Me.btnSubmit.TabIndex = 1 225 | Me.btnSubmit.Text = "Submit" 226 | Me.btnSubmit.UseVisualStyleBackColor = False 227 | ' 228 | 'btnCancel 229 | ' 230 | Me.btnCancel.BackColor = System.Drawing.Color.Red 231 | Me.btnCancel.Location = New System.Drawing.Point(189, 14) 232 | Me.btnCancel.Name = "btnCancel" 233 | Me.btnCancel.Size = New System.Drawing.Size(111, 37) 234 | Me.btnCancel.TabIndex = 0 235 | Me.btnCancel.Text = "Cancel" 236 | Me.btnCancel.UseVisualStyleBackColor = False 237 | ' 238 | 'DateTimePicker1 239 | ' 240 | Me.DateTimePicker1.Location = New System.Drawing.Point(27, 111) 241 | Me.DateTimePicker1.Name = "DateTimePicker1" 242 | Me.DateTimePicker1.Size = New System.Drawing.Size(247, 20) 243 | Me.DateTimePicker1.TabIndex = 5 244 | ' 245 | 'Panel1 246 | ' 247 | Me.Panel1.BackColor = System.Drawing.Color.FloralWhite 248 | Me.Panel1.Controls.Add(Me.txtAddress) 249 | Me.Panel1.Controls.Add(Me.TextBox4) 250 | Me.Panel1.Controls.Add(Me.TextBox3) 251 | Me.Panel1.Controls.Add(Me.TextBox2) 252 | Me.Panel1.Controls.Add(Me.TextBox1) 253 | Me.Panel1.Controls.Add(Me.Label8) 254 | Me.Panel1.Controls.Add(Me.Label7) 255 | Me.Panel1.Controls.Add(Me.Label6) 256 | Me.Panel1.Controls.Add(Me.Label5) 257 | Me.Panel1.Controls.Add(Me.Label1) 258 | Me.Panel1.Location = New System.Drawing.Point(207, 29) 259 | Me.Panel1.Name = "Panel1" 260 | Me.Panel1.Size = New System.Drawing.Size(881, 155) 261 | Me.Panel1.TabIndex = 11 262 | ' 263 | 'txtAddress 264 | ' 265 | Me.txtAddress.Location = New System.Drawing.Point(607, 17) 266 | Me.txtAddress.Name = "txtAddress" 267 | Me.txtAddress.Size = New System.Drawing.Size(239, 110) 268 | Me.txtAddress.TabIndex = 13 269 | Me.txtAddress.Text = "" 270 | ' 271 | 'TextBox4 272 | ' 273 | Me.TextBox4.Location = New System.Drawing.Point(96, 89) 274 | Me.TextBox4.Name = "TextBox4" 275 | Me.TextBox4.Size = New System.Drawing.Size(178, 20) 276 | Me.TextBox4.TabIndex = 8 277 | ' 278 | 'TextBox3 279 | ' 280 | Me.TextBox3.Location = New System.Drawing.Point(390, 84) 281 | Me.TextBox3.Name = "TextBox3" 282 | Me.TextBox3.Size = New System.Drawing.Size(196, 20) 283 | Me.TextBox3.TabIndex = 7 284 | ' 285 | 'TextBox2 286 | ' 287 | Me.TextBox2.Location = New System.Drawing.Point(390, 43) 288 | Me.TextBox2.Name = "TextBox2" 289 | Me.TextBox2.Size = New System.Drawing.Size(196, 20) 290 | Me.TextBox2.TabIndex = 6 291 | ' 292 | 'TextBox1 293 | ' 294 | Me.TextBox1.Location = New System.Drawing.Point(104, 39) 295 | Me.TextBox1.Name = "TextBox1" 296 | Me.TextBox1.Size = New System.Drawing.Size(170, 20) 297 | Me.TextBox1.TabIndex = 5 298 | ' 299 | 'Label8 300 | ' 301 | Me.Label8.AutoSize = True 302 | Me.Label8.Location = New System.Drawing.Point(306, 91) 303 | Me.Label8.Name = "Label8" 304 | Me.Label8.Size = New System.Drawing.Size(58, 13) 305 | Me.Label8.TabIndex = 4 306 | Me.Label8.Text = "ID Number" 307 | ' 308 | 'Label7 309 | ' 310 | Me.Label7.AutoSize = True 311 | Me.Label7.Location = New System.Drawing.Point(306, 46) 312 | Me.Label7.Name = "Label7" 313 | Me.Label7.Size = New System.Drawing.Size(78, 13) 314 | Me.Label7.TabIndex = 3 315 | Me.Label7.Text = "Phone Number" 316 | ' 317 | 'Label6 318 | ' 319 | Me.Label6.AutoSize = True 320 | Me.Label6.Location = New System.Drawing.Point(20, 91) 321 | Me.Label6.Name = "Label6" 322 | Me.Label6.Size = New System.Drawing.Size(32, 13) 323 | Me.Label6.TabIndex = 2 324 | Me.Label6.Text = "Email" 325 | ' 326 | 'Label5 327 | ' 328 | Me.Label5.AutoSize = True 329 | Me.Label5.Location = New System.Drawing.Point(20, 43) 330 | Me.Label5.Name = "Label5" 331 | Me.Label5.Size = New System.Drawing.Size(78, 13) 332 | Me.Label5.TabIndex = 1 333 | Me.Label5.Text = "Supplier' Name" 334 | ' 335 | 'Label1 336 | ' 337 | Me.Label1.AutoSize = True 338 | Me.Label1.BackColor = System.Drawing.Color.Gainsboro 339 | Me.Label1.Font = New System.Drawing.Font("Microsoft Sans Serif", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) 340 | Me.Label1.Location = New System.Drawing.Point(12, 0) 341 | Me.Label1.Name = "Label1" 342 | Me.Label1.Size = New System.Drawing.Size(123, 20) 343 | Me.Label1.TabIndex = 0 344 | Me.Label1.Text = "Supplier' Details" 345 | ' 346 | 'Panel4 347 | ' 348 | Me.Panel4.BackColor = System.Drawing.SystemColors.ControlLightLight 349 | Me.Panel4.Controls.Add(Me.NumericUpDown2) 350 | Me.Panel4.Controls.Add(Me.NumericUpDown1) 351 | Me.Panel4.Controls.Add(Me.Panel2) 352 | Me.Panel4.Controls.Add(Me.DateTimePicker1) 353 | Me.Panel4.Controls.Add(Me.Label3) 354 | Me.Panel4.Controls.Add(Me.Label2) 355 | Me.Panel4.Controls.Add(Me.Label4) 356 | Me.Panel4.Location = New System.Drawing.Point(207, 407) 357 | Me.Panel4.Name = "Panel4" 358 | Me.Panel4.Size = New System.Drawing.Size(881, 165) 359 | Me.Panel4.TabIndex = 12 360 | ' 361 | 'NumericUpDown2 362 | ' 363 | Me.NumericUpDown2.Location = New System.Drawing.Point(115, 70) 364 | Me.NumericUpDown2.Name = "NumericUpDown2" 365 | Me.NumericUpDown2.Size = New System.Drawing.Size(159, 20) 366 | Me.NumericUpDown2.TabIndex = 8 367 | ' 368 | 'NumericUpDown1 369 | ' 370 | Me.NumericUpDown1.Location = New System.Drawing.Point(115, 38) 371 | Me.NumericUpDown1.Name = "NumericUpDown1" 372 | Me.NumericUpDown1.Size = New System.Drawing.Size(159, 20) 373 | Me.NumericUpDown1.TabIndex = 7 374 | ' 375 | 'Label3 376 | ' 377 | Me.Label3.AutoSize = True 378 | Me.Label3.Location = New System.Drawing.Point(24, 77) 379 | Me.Label3.Name = "Label3" 380 | Me.Label3.Size = New System.Drawing.Size(71, 13) 381 | Me.Label3.TabIndex = 2 382 | Me.Label3.Text = "Price per Unit" 383 | ' 384 | 'Label2 385 | ' 386 | Me.Label2.AutoSize = True 387 | Me.Label2.Location = New System.Drawing.Point(24, 40) 388 | Me.Label2.Name = "Label2" 389 | Me.Label2.Size = New System.Drawing.Size(46, 13) 390 | Me.Label2.TabIndex = 1 391 | Me.Label2.Text = "Quantity" 392 | ' 393 | 'Label4 394 | ' 395 | Me.Label4.AutoSize = True 396 | Me.Label4.BackColor = System.Drawing.Color.DarkKhaki 397 | Me.Label4.Font = New System.Drawing.Font("Microsoft Sans Serif", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) 398 | Me.Label4.Location = New System.Drawing.Point(12, 0) 399 | Me.Label4.Name = "Label4" 400 | Me.Label4.Size = New System.Drawing.Size(92, 20) 401 | Me.Label4.TabIndex = 0 402 | Me.Label4.Text = "Transaction" 403 | ' 404 | 'Supplier 405 | ' 406 | Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) 407 | Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font 408 | Me.BackColor = System.Drawing.SystemColors.ActiveBorder 409 | Me.ClientSize = New System.Drawing.Size(1302, 606) 410 | Me.Controls.Add(Me.lstDescription) 411 | Me.Controls.Add(Me.Panel1) 412 | Me.Controls.Add(Me.Panel4) 413 | Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D 414 | Me.Name = "Supplier" 415 | Me.Text = "Supplier" 416 | Me.lstDescription.ResumeLayout(False) 417 | Me.lstDescription.PerformLayout() 418 | Me.Panel2.ResumeLayout(False) 419 | Me.Panel1.ResumeLayout(False) 420 | Me.Panel1.PerformLayout() 421 | Me.Panel4.ResumeLayout(False) 422 | Me.Panel4.PerformLayout() 423 | CType(Me.NumericUpDown2, System.ComponentModel.ISupportInitialize).EndInit() 424 | CType(Me.NumericUpDown1, System.ComponentModel.ISupportInitialize).EndInit() 425 | Me.ResumeLayout(False) 426 | 427 | End Sub 428 | Friend WithEvents lstDescription As Panel 429 | Friend WithEvents TextBox17 As TextBox 430 | Friend WithEvents Label26 As Label 431 | Friend WithEvents TextBox13 As TextBox 432 | Friend WithEvents Label20 As Label 433 | Friend WithEvents TextBox14 As TextBox 434 | Friend WithEvents Label21 As Label 435 | Friend WithEvents TextBox15 As TextBox 436 | Friend WithEvents Label22 As Label 437 | Friend WithEvents Label23 As Label 438 | Friend WithEvents ComboBox3 As ComboBox 439 | Friend WithEvents TextBox16 As TextBox 440 | Friend WithEvents Label24 As Label 441 | Friend WithEvents Label25 As Label 442 | Friend WithEvents Panel2 As Panel 443 | Friend WithEvents btnSubmit As Button 444 | Friend WithEvents btnCancel As Button 445 | Friend WithEvents DateTimePicker1 As DateTimePicker 446 | Friend WithEvents Panel1 As Panel 447 | Friend WithEvents TextBox4 As TextBox 448 | Friend WithEvents TextBox3 As TextBox 449 | Friend WithEvents TextBox2 As TextBox 450 | Friend WithEvents TextBox1 As TextBox 451 | Friend WithEvents Label8 As Label 452 | Friend WithEvents Label7 As Label 453 | Friend WithEvents Label6 As Label 454 | Friend WithEvents Label5 As Label 455 | Friend WithEvents Label1 As Label 456 | Friend WithEvents Panel4 As Panel 457 | Friend WithEvents Label3 As Label 458 | Friend WithEvents Label2 As Label 459 | Friend WithEvents Label4 As Label 460 | Friend WithEvents txtDescription As RichTextBox 461 | Friend WithEvents txtAddress As RichTextBox 462 | Friend WithEvents NumericUpDown2 As NumericUpDown 463 | Friend WithEvents NumericUpDown1 As NumericUpDown 464 | End Class 465 | -------------------------------------------------------------------------------- /vb/MobilePhoneRecords-main/MobilePhoneRecords/MobilePhoneRecords/Customer.Designer.vb: -------------------------------------------------------------------------------- 1 | _ 2 | Partial Class Customer 3 | Inherits System.Windows.Forms.Form 4 | 5 | 'Form overrides dispose to clean up the component list. 6 | _ 7 | Protected Overrides Sub Dispose(ByVal disposing As Boolean) 8 | Try 9 | If disposing AndAlso components IsNot Nothing Then 10 | components.Dispose() 11 | End If 12 | Finally 13 | MyBase.Dispose(disposing) 14 | End Try 15 | End Sub 16 | 17 | 'Required by the Windows Form Designer 18 | Private components As System.ComponentModel.IContainer 19 | 20 | 'NOTE: The following procedure is required by the Windows Form Designer 21 | 'It can be modified using the Windows Form Designer. 22 | 'Do not modify it using the code editor. 23 | _ 24 | Private Sub InitializeComponent() 25 | Me.components = New System.ComponentModel.Container() 26 | Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(Customer)) 27 | Me.MPRdbDataSet = New MobilePhoneRecords.MPRdbDataSet() 28 | Me.CellphoneBindingSource = New System.Windows.Forms.BindingSource(Me.components) 29 | Me.CellphoneTableAdapter = New MobilePhoneRecords.MPRdbDataSetTableAdapters.cellphoneTableAdapter() 30 | Me.TableAdapterManager = New MobilePhoneRecords.MPRdbDataSetTableAdapters.TableAdapterManager() 31 | Me.CellphoneBindingNavigator = New System.Windows.Forms.BindingNavigator(Me.components) 32 | Me.BindingNavigatorAddNewItem = New System.Windows.Forms.ToolStripButton() 33 | Me.BindingNavigatorCountItem = New System.Windows.Forms.ToolStripLabel() 34 | Me.BindingNavigatorDeleteItem = New System.Windows.Forms.ToolStripButton() 35 | Me.BindingNavigatorMoveFirstItem = New System.Windows.Forms.ToolStripButton() 36 | Me.BindingNavigatorMovePreviousItem = New System.Windows.Forms.ToolStripButton() 37 | Me.BindingNavigatorSeparator = New System.Windows.Forms.ToolStripSeparator() 38 | Me.BindingNavigatorPositionItem = New System.Windows.Forms.ToolStripTextBox() 39 | Me.BindingNavigatorSeparator1 = New System.Windows.Forms.ToolStripSeparator() 40 | Me.BindingNavigatorMoveNextItem = New System.Windows.Forms.ToolStripButton() 41 | Me.BindingNavigatorMoveLastItem = New System.Windows.Forms.ToolStripButton() 42 | Me.BindingNavigatorSeparator2 = New System.Windows.Forms.ToolStripSeparator() 43 | Me.CellphoneBindingNavigatorSaveItem = New System.Windows.Forms.ToolStripButton() 44 | Me.ToolStripButton1 = New System.Windows.Forms.ToolStripButton() 45 | Me.CellphoneDataGridView = New System.Windows.Forms.DataGridView() 46 | Me.DataGridViewTextBoxColumn1 = New System.Windows.Forms.DataGridViewTextBoxColumn() 47 | Me.DataGridViewTextBoxColumn2 = New System.Windows.Forms.DataGridViewTextBoxColumn() 48 | Me.DataGridViewTextBoxColumn3 = New System.Windows.Forms.DataGridViewTextBoxColumn() 49 | Me.DataGridViewTextBoxColumn4 = New System.Windows.Forms.DataGridViewTextBoxColumn() 50 | Me.DataGridViewTextBoxColumn5 = New System.Windows.Forms.DataGridViewTextBoxColumn() 51 | Me.DataGridViewTextBoxColumn6 = New System.Windows.Forms.DataGridViewTextBoxColumn() 52 | Me.DataGridViewTextBoxColumn7 = New System.Windows.Forms.DataGridViewTextBoxColumn() 53 | Me.DataGridViewTextBoxColumn8 = New System.Windows.Forms.DataGridViewTextBoxColumn() 54 | Me.Label1 = New System.Windows.Forms.Label() 55 | Me.Panel1 = New System.Windows.Forms.Panel() 56 | Me.NumericUpDown1 = New System.Windows.Forms.NumericUpDown() 57 | Me.Label9 = New System.Windows.Forms.Label() 58 | Me.ComboBox3 = New System.Windows.Forms.ComboBox() 59 | Me.ComboBox2 = New System.Windows.Forms.ComboBox() 60 | Me.ComboBox1 = New System.Windows.Forms.ComboBox() 61 | Me.Label8 = New System.Windows.Forms.Label() 62 | Me.Label7 = New System.Windows.Forms.Label() 63 | Me.Label6 = New System.Windows.Forms.Label() 64 | Me.methodOfPayment = New System.Windows.Forms.ComboBox() 65 | Me.RichTextBox1 = New System.Windows.Forms.RichTextBox() 66 | Me.Label4 = New System.Windows.Forms.Label() 67 | Me.Label5 = New System.Windows.Forms.Label() 68 | Me.TextBox1 = New System.Windows.Forms.TextBox() 69 | Me.Label3 = New System.Windows.Forms.Label() 70 | Me.Label2 = New System.Windows.Forms.Label() 71 | Me.btnCancel = New System.Windows.Forms.Button() 72 | Me.btnBuy = New System.Windows.Forms.Button() 73 | Me.FillByToolStrip = New System.Windows.Forms.ToolStrip() 74 | Me.FillByToolStripButton = New System.Windows.Forms.ToolStripButton() 75 | Me.FillBy1ToolStrip = New System.Windows.Forms.ToolStrip() 76 | Me.FillBy1ToolStripButton = New System.Windows.Forms.ToolStripButton() 77 | CType(Me.MPRdbDataSet, System.ComponentModel.ISupportInitialize).BeginInit() 78 | CType(Me.CellphoneBindingSource, System.ComponentModel.ISupportInitialize).BeginInit() 79 | CType(Me.CellphoneBindingNavigator, System.ComponentModel.ISupportInitialize).BeginInit() 80 | Me.CellphoneBindingNavigator.SuspendLayout() 81 | CType(Me.CellphoneDataGridView, System.ComponentModel.ISupportInitialize).BeginInit() 82 | Me.Panel1.SuspendLayout() 83 | CType(Me.NumericUpDown1, System.ComponentModel.ISupportInitialize).BeginInit() 84 | Me.FillByToolStrip.SuspendLayout() 85 | Me.FillBy1ToolStrip.SuspendLayout() 86 | Me.SuspendLayout() 87 | ' 88 | 'MPRdbDataSet 89 | ' 90 | Me.MPRdbDataSet.DataSetName = "MPRdbDataSet" 91 | Me.MPRdbDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema 92 | ' 93 | 'CellphoneBindingSource 94 | ' 95 | Me.CellphoneBindingSource.DataMember = "cellphone" 96 | Me.CellphoneBindingSource.DataSource = Me.MPRdbDataSet 97 | ' 98 | 'CellphoneTableAdapter 99 | ' 100 | Me.CellphoneTableAdapter.ClearBeforeFill = True 101 | ' 102 | 'TableAdapterManager 103 | ' 104 | Me.TableAdapterManager.BackupDataSetBeforeUpdate = False 105 | Me.TableAdapterManager.cellphoneTableAdapter = Me.CellphoneTableAdapter 106 | Me.TableAdapterManager.CustomerTableAdapter = Nothing 107 | Me.TableAdapterManager.ManufacturerTableAdapter = Nothing 108 | Me.TableAdapterManager.ReceiptTableAdapter = Nothing 109 | Me.TableAdapterManager.ServiceProviderTableAdapter = Nothing 110 | Me.TableAdapterManager.UpdateOrder = MobilePhoneRecords.MPRdbDataSetTableAdapters.TableAdapterManager.UpdateOrderOption.InsertUpdateDelete 111 | ' 112 | 'CellphoneBindingNavigator 113 | ' 114 | Me.CellphoneBindingNavigator.AddNewItem = Me.BindingNavigatorAddNewItem 115 | Me.CellphoneBindingNavigator.BindingSource = Me.CellphoneBindingSource 116 | Me.CellphoneBindingNavigator.CountItem = Me.BindingNavigatorCountItem 117 | Me.CellphoneBindingNavigator.DeleteItem = Me.BindingNavigatorDeleteItem 118 | Me.CellphoneBindingNavigator.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.BindingNavigatorMoveFirstItem, Me.BindingNavigatorMovePreviousItem, Me.BindingNavigatorSeparator, Me.BindingNavigatorPositionItem, Me.BindingNavigatorCountItem, Me.BindingNavigatorSeparator1, Me.BindingNavigatorMoveNextItem, Me.BindingNavigatorMoveLastItem, Me.BindingNavigatorSeparator2, Me.BindingNavigatorAddNewItem, Me.BindingNavigatorDeleteItem, Me.CellphoneBindingNavigatorSaveItem, Me.ToolStripButton1}) 119 | Me.CellphoneBindingNavigator.Location = New System.Drawing.Point(0, 0) 120 | Me.CellphoneBindingNavigator.MoveFirstItem = Me.BindingNavigatorMoveFirstItem 121 | Me.CellphoneBindingNavigator.MoveLastItem = Me.BindingNavigatorMoveLastItem 122 | Me.CellphoneBindingNavigator.MoveNextItem = Me.BindingNavigatorMoveNextItem 123 | Me.CellphoneBindingNavigator.MovePreviousItem = Me.BindingNavigatorMovePreviousItem 124 | Me.CellphoneBindingNavigator.Name = "CellphoneBindingNavigator" 125 | Me.CellphoneBindingNavigator.PositionItem = Me.BindingNavigatorPositionItem 126 | Me.CellphoneBindingNavigator.Size = New System.Drawing.Size(896, 25) 127 | Me.CellphoneBindingNavigator.TabIndex = 0 128 | Me.CellphoneBindingNavigator.Text = "BindingNavigator1" 129 | ' 130 | 'BindingNavigatorAddNewItem 131 | ' 132 | Me.BindingNavigatorAddNewItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image 133 | Me.BindingNavigatorAddNewItem.Image = CType(resources.GetObject("BindingNavigatorAddNewItem.Image"), System.Drawing.Image) 134 | Me.BindingNavigatorAddNewItem.Name = "BindingNavigatorAddNewItem" 135 | Me.BindingNavigatorAddNewItem.RightToLeftAutoMirrorImage = True 136 | Me.BindingNavigatorAddNewItem.Size = New System.Drawing.Size(23, 22) 137 | Me.BindingNavigatorAddNewItem.Text = "Add new" 138 | ' 139 | 'BindingNavigatorCountItem 140 | ' 141 | Me.BindingNavigatorCountItem.Name = "BindingNavigatorCountItem" 142 | Me.BindingNavigatorCountItem.Size = New System.Drawing.Size(35, 22) 143 | Me.BindingNavigatorCountItem.Text = "of {0}" 144 | Me.BindingNavigatorCountItem.ToolTipText = "Total number of items" 145 | ' 146 | 'BindingNavigatorDeleteItem 147 | ' 148 | Me.BindingNavigatorDeleteItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image 149 | Me.BindingNavigatorDeleteItem.Image = CType(resources.GetObject("BindingNavigatorDeleteItem.Image"), System.Drawing.Image) 150 | Me.BindingNavigatorDeleteItem.Name = "BindingNavigatorDeleteItem" 151 | Me.BindingNavigatorDeleteItem.RightToLeftAutoMirrorImage = True 152 | Me.BindingNavigatorDeleteItem.Size = New System.Drawing.Size(23, 22) 153 | Me.BindingNavigatorDeleteItem.Text = "Delete" 154 | ' 155 | 'BindingNavigatorMoveFirstItem 156 | ' 157 | Me.BindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image 158 | Me.BindingNavigatorMoveFirstItem.Image = CType(resources.GetObject("BindingNavigatorMoveFirstItem.Image"), System.Drawing.Image) 159 | Me.BindingNavigatorMoveFirstItem.Name = "BindingNavigatorMoveFirstItem" 160 | Me.BindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = True 161 | Me.BindingNavigatorMoveFirstItem.Size = New System.Drawing.Size(23, 22) 162 | Me.BindingNavigatorMoveFirstItem.Text = "Move first" 163 | ' 164 | 'BindingNavigatorMovePreviousItem 165 | ' 166 | Me.BindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image 167 | Me.BindingNavigatorMovePreviousItem.Image = CType(resources.GetObject("BindingNavigatorMovePreviousItem.Image"), System.Drawing.Image) 168 | Me.BindingNavigatorMovePreviousItem.Name = "BindingNavigatorMovePreviousItem" 169 | Me.BindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = True 170 | Me.BindingNavigatorMovePreviousItem.Size = New System.Drawing.Size(23, 22) 171 | Me.BindingNavigatorMovePreviousItem.Text = "Move previous" 172 | ' 173 | 'BindingNavigatorSeparator 174 | ' 175 | Me.BindingNavigatorSeparator.Name = "BindingNavigatorSeparator" 176 | Me.BindingNavigatorSeparator.Size = New System.Drawing.Size(6, 25) 177 | ' 178 | 'BindingNavigatorPositionItem 179 | ' 180 | Me.BindingNavigatorPositionItem.AccessibleName = "Position" 181 | Me.BindingNavigatorPositionItem.AutoSize = False 182 | Me.BindingNavigatorPositionItem.Name = "BindingNavigatorPositionItem" 183 | Me.BindingNavigatorPositionItem.Size = New System.Drawing.Size(50, 23) 184 | Me.BindingNavigatorPositionItem.Text = "0" 185 | Me.BindingNavigatorPositionItem.ToolTipText = "Current position" 186 | ' 187 | 'BindingNavigatorSeparator1 188 | ' 189 | Me.BindingNavigatorSeparator1.Name = "BindingNavigatorSeparator1" 190 | Me.BindingNavigatorSeparator1.Size = New System.Drawing.Size(6, 25) 191 | ' 192 | 'BindingNavigatorMoveNextItem 193 | ' 194 | Me.BindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image 195 | Me.BindingNavigatorMoveNextItem.Image = CType(resources.GetObject("BindingNavigatorMoveNextItem.Image"), System.Drawing.Image) 196 | Me.BindingNavigatorMoveNextItem.Name = "BindingNavigatorMoveNextItem" 197 | Me.BindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = True 198 | Me.BindingNavigatorMoveNextItem.Size = New System.Drawing.Size(23, 22) 199 | Me.BindingNavigatorMoveNextItem.Text = "Move next" 200 | ' 201 | 'BindingNavigatorMoveLastItem 202 | ' 203 | Me.BindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image 204 | Me.BindingNavigatorMoveLastItem.Image = CType(resources.GetObject("BindingNavigatorMoveLastItem.Image"), System.Drawing.Image) 205 | Me.BindingNavigatorMoveLastItem.Name = "BindingNavigatorMoveLastItem" 206 | Me.BindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = True 207 | Me.BindingNavigatorMoveLastItem.Size = New System.Drawing.Size(23, 22) 208 | Me.BindingNavigatorMoveLastItem.Text = "Move last" 209 | ' 210 | 'BindingNavigatorSeparator2 211 | ' 212 | Me.BindingNavigatorSeparator2.Name = "BindingNavigatorSeparator2" 213 | Me.BindingNavigatorSeparator2.Size = New System.Drawing.Size(6, 25) 214 | ' 215 | 'CellphoneBindingNavigatorSaveItem 216 | ' 217 | Me.CellphoneBindingNavigatorSaveItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image 218 | Me.CellphoneBindingNavigatorSaveItem.Image = CType(resources.GetObject("CellphoneBindingNavigatorSaveItem.Image"), System.Drawing.Image) 219 | Me.CellphoneBindingNavigatorSaveItem.Name = "CellphoneBindingNavigatorSaveItem" 220 | Me.CellphoneBindingNavigatorSaveItem.Size = New System.Drawing.Size(23, 22) 221 | Me.CellphoneBindingNavigatorSaveItem.Text = "Save Data" 222 | ' 223 | 'ToolStripButton1 224 | ' 225 | Me.ToolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image 226 | Me.ToolStripButton1.Image = CType(resources.GetObject("ToolStripButton1.Image"), System.Drawing.Image) 227 | Me.ToolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta 228 | Me.ToolStripButton1.Name = "ToolStripButton1" 229 | Me.ToolStripButton1.Size = New System.Drawing.Size(23, 22) 230 | Me.ToolStripButton1.Text = "ToolStripButton1" 231 | ' 232 | 'CellphoneDataGridView 233 | ' 234 | Me.CellphoneDataGridView.AllowDrop = True 235 | Me.CellphoneDataGridView.AllowUserToAddRows = False 236 | Me.CellphoneDataGridView.AllowUserToDeleteRows = False 237 | Me.CellphoneDataGridView.AllowUserToResizeColumns = False 238 | Me.CellphoneDataGridView.AllowUserToResizeRows = False 239 | Me.CellphoneDataGridView.AutoGenerateColumns = False 240 | Me.CellphoneDataGridView.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D 241 | Me.CellphoneDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize 242 | Me.CellphoneDataGridView.Columns.AddRange(New System.Windows.Forms.DataGridViewColumn() {Me.DataGridViewTextBoxColumn1, Me.DataGridViewTextBoxColumn2, Me.DataGridViewTextBoxColumn3, Me.DataGridViewTextBoxColumn4, Me.DataGridViewTextBoxColumn5, Me.DataGridViewTextBoxColumn6, Me.DataGridViewTextBoxColumn7, Me.DataGridViewTextBoxColumn8}) 243 | Me.CellphoneDataGridView.DataSource = Me.CellphoneBindingSource 244 | Me.CellphoneDataGridView.Location = New System.Drawing.Point(35, 82) 245 | Me.CellphoneDataGridView.Name = "CellphoneDataGridView" 246 | Me.CellphoneDataGridView.ReadOnly = True 247 | Me.CellphoneDataGridView.Size = New System.Drawing.Size(839, 235) 248 | Me.CellphoneDataGridView.TabIndex = 1 249 | ' 250 | 'DataGridViewTextBoxColumn1 251 | ' 252 | Me.DataGridViewTextBoxColumn1.DataPropertyName = "CellphoneID" 253 | Me.DataGridViewTextBoxColumn1.HeaderText = "CellphoneID" 254 | Me.DataGridViewTextBoxColumn1.Name = "DataGridViewTextBoxColumn1" 255 | Me.DataGridViewTextBoxColumn1.ReadOnly = True 256 | ' 257 | 'DataGridViewTextBoxColumn2 258 | ' 259 | Me.DataGridViewTextBoxColumn2.DataPropertyName = "Model" 260 | Me.DataGridViewTextBoxColumn2.HeaderText = "Model" 261 | Me.DataGridViewTextBoxColumn2.Name = "DataGridViewTextBoxColumn2" 262 | Me.DataGridViewTextBoxColumn2.ReadOnly = True 263 | ' 264 | 'DataGridViewTextBoxColumn3 265 | ' 266 | Me.DataGridViewTextBoxColumn3.DataPropertyName = "Serial Number" 267 | Me.DataGridViewTextBoxColumn3.HeaderText = "Serial Number" 268 | Me.DataGridViewTextBoxColumn3.Name = "DataGridViewTextBoxColumn3" 269 | Me.DataGridViewTextBoxColumn3.ReadOnly = True 270 | ' 271 | 'DataGridViewTextBoxColumn4 272 | ' 273 | Me.DataGridViewTextBoxColumn4.DataPropertyName = "Brand" 274 | Me.DataGridViewTextBoxColumn4.HeaderText = "Brand" 275 | Me.DataGridViewTextBoxColumn4.Name = "DataGridViewTextBoxColumn4" 276 | Me.DataGridViewTextBoxColumn4.ReadOnly = True 277 | ' 278 | 'DataGridViewTextBoxColumn5 279 | ' 280 | Me.DataGridViewTextBoxColumn5.DataPropertyName = "Number of Sim Cards" 281 | Me.DataGridViewTextBoxColumn5.HeaderText = "Number of Sim Cards" 282 | Me.DataGridViewTextBoxColumn5.Name = "DataGridViewTextBoxColumn5" 283 | Me.DataGridViewTextBoxColumn5.ReadOnly = True 284 | ' 285 | 'DataGridViewTextBoxColumn6 286 | ' 287 | Me.DataGridViewTextBoxColumn6.DataPropertyName = "Operating System" 288 | Me.DataGridViewTextBoxColumn6.HeaderText = "Operating System" 289 | Me.DataGridViewTextBoxColumn6.Name = "DataGridViewTextBoxColumn6" 290 | Me.DataGridViewTextBoxColumn6.ReadOnly = True 291 | ' 292 | 'DataGridViewTextBoxColumn7 293 | ' 294 | Me.DataGridViewTextBoxColumn7.DataPropertyName = "Description" 295 | Me.DataGridViewTextBoxColumn7.HeaderText = "Description" 296 | Me.DataGridViewTextBoxColumn7.Name = "DataGridViewTextBoxColumn7" 297 | Me.DataGridViewTextBoxColumn7.ReadOnly = True 298 | ' 299 | 'DataGridViewTextBoxColumn8 300 | ' 301 | Me.DataGridViewTextBoxColumn8.DataPropertyName = "CellphoneDate" 302 | Me.DataGridViewTextBoxColumn8.HeaderText = "CellphoneDate" 303 | Me.DataGridViewTextBoxColumn8.Name = "DataGridViewTextBoxColumn8" 304 | Me.DataGridViewTextBoxColumn8.ReadOnly = True 305 | ' 306 | 'Label1 307 | ' 308 | Me.Label1.AutoSize = True 309 | Me.Label1.Font = New System.Drawing.Font("Viner Hand ITC", 20.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) 310 | Me.Label1.Location = New System.Drawing.Point(39, 35) 311 | Me.Label1.Name = "Label1" 312 | Me.Label1.Size = New System.Drawing.Size(230, 44) 313 | Me.Label1.TabIndex = 2 314 | Me.Label1.Text = "Products in stock" 315 | ' 316 | 'Panel1 317 | ' 318 | Me.Panel1.BackColor = System.Drawing.Color.FloralWhite 319 | Me.Panel1.Controls.Add(Me.NumericUpDown1) 320 | Me.Panel1.Controls.Add(Me.Label9) 321 | Me.Panel1.Controls.Add(Me.ComboBox3) 322 | Me.Panel1.Controls.Add(Me.ComboBox2) 323 | Me.Panel1.Controls.Add(Me.ComboBox1) 324 | Me.Panel1.Controls.Add(Me.Label8) 325 | Me.Panel1.Controls.Add(Me.Label7) 326 | Me.Panel1.Controls.Add(Me.Label6) 327 | Me.Panel1.Controls.Add(Me.methodOfPayment) 328 | Me.Panel1.Controls.Add(Me.RichTextBox1) 329 | Me.Panel1.Controls.Add(Me.Label4) 330 | Me.Panel1.Controls.Add(Me.Label5) 331 | Me.Panel1.Controls.Add(Me.TextBox1) 332 | Me.Panel1.Controls.Add(Me.Label3) 333 | Me.Panel1.Controls.Add(Me.Label2) 334 | Me.Panel1.Location = New System.Drawing.Point(35, 347) 335 | Me.Panel1.Name = "Panel1" 336 | Me.Panel1.Size = New System.Drawing.Size(839, 271) 337 | Me.Panel1.TabIndex = 3 338 | ' 339 | 'NumericUpDown1 340 | ' 341 | Me.NumericUpDown1.Location = New System.Drawing.Point(572, 205) 342 | Me.NumericUpDown1.Name = "NumericUpDown1" 343 | Me.NumericUpDown1.Size = New System.Drawing.Size(227, 20) 344 | Me.NumericUpDown1.TabIndex = 21 345 | ' 346 | 'Label9 347 | ' 348 | Me.Label9.AutoSize = True 349 | Me.Label9.Location = New System.Drawing.Point(474, 114) 350 | Me.Label9.Name = "Label9" 351 | Me.Label9.Size = New System.Drawing.Size(73, 13) 352 | Me.Label9.TabIndex = 19 353 | Me.Label9.Text = "Serial Number" 354 | ' 355 | 'ComboBox3 356 | ' 357 | Me.ComboBox3.DataBindings.Add(New System.Windows.Forms.Binding("SelectedValue", Me.CellphoneBindingSource, "Serial Number", True)) 358 | Me.ComboBox3.DataSource = Me.CellphoneBindingSource 359 | Me.ComboBox3.DisplayMember = "Serial Number" 360 | Me.ComboBox3.FormattingEnabled = True 361 | Me.ComboBox3.Location = New System.Drawing.Point(572, 106) 362 | Me.ComboBox3.Name = "ComboBox3" 363 | Me.ComboBox3.Size = New System.Drawing.Size(227, 21) 364 | Me.ComboBox3.TabIndex = 18 365 | Me.ComboBox3.ValueMember = "Serial Number" 366 | ' 367 | 'ComboBox2 368 | ' 369 | Me.ComboBox2.DataBindings.Add(New System.Windows.Forms.Binding("SelectedValue", Me.CellphoneBindingSource, "Brand", True)) 370 | Me.ComboBox2.DataSource = Me.CellphoneBindingSource 371 | Me.ComboBox2.DisplayMember = "Brand" 372 | Me.ComboBox2.FormattingEnabled = True 373 | Me.ComboBox2.Location = New System.Drawing.Point(572, 52) 374 | Me.ComboBox2.Name = "ComboBox2" 375 | Me.ComboBox2.Size = New System.Drawing.Size(227, 21) 376 | Me.ComboBox2.TabIndex = 17 377 | Me.ComboBox2.ValueMember = "Brand" 378 | ' 379 | 'ComboBox1 380 | ' 381 | Me.ComboBox1.FormattingEnabled = True 382 | Me.ComboBox1.Items.AddRange(New Object() {"Black", "White", "Blue", "Orange", "Pink", "Silver", "Grey"}) 383 | Me.ComboBox1.Location = New System.Drawing.Point(572, 155) 384 | Me.ComboBox1.Name = "ComboBox1" 385 | Me.ComboBox1.Size = New System.Drawing.Size(227, 21) 386 | Me.ComboBox1.TabIndex = 16 387 | ' 388 | 'Label8 389 | ' 390 | Me.Label8.AutoSize = True 391 | Me.Label8.Location = New System.Drawing.Point(474, 212) 392 | Me.Label8.Name = "Label8" 393 | Me.Label8.Size = New System.Drawing.Size(46, 13) 394 | Me.Label8.TabIndex = 14 395 | Me.Label8.Text = "Quantity" 396 | ' 397 | 'Label7 398 | ' 399 | Me.Label7.AutoSize = True 400 | Me.Label7.Location = New System.Drawing.Point(474, 163) 401 | Me.Label7.Name = "Label7" 402 | Me.Label7.Size = New System.Drawing.Size(76, 13) 403 | Me.Label7.TabIndex = 12 404 | Me.Label7.Text = "Preferred color" 405 | ' 406 | 'Label6 407 | ' 408 | Me.Label6.AutoSize = True 409 | Me.Label6.Location = New System.Drawing.Point(474, 63) 410 | Me.Label6.Name = "Label6" 411 | Me.Label6.Size = New System.Drawing.Size(75, 13) 412 | Me.Label6.TabIndex = 10 413 | Me.Label6.Text = "Product Name" 414 | ' 415 | 'methodOfPayment 416 | ' 417 | Me.methodOfPayment.FormattingEnabled = True 418 | Me.methodOfPayment.Items.AddRange(New Object() {"Bank transfer", "EcoCash", "ZipIt"}) 419 | Me.methodOfPayment.Location = New System.Drawing.Point(119, 98) 420 | Me.methodOfPayment.Name = "methodOfPayment" 421 | Me.methodOfPayment.Size = New System.Drawing.Size(194, 21) 422 | Me.methodOfPayment.TabIndex = 9 423 | ' 424 | 'RichTextBox1 425 | ' 426 | Me.RichTextBox1.Location = New System.Drawing.Point(114, 155) 427 | Me.RichTextBox1.Name = "RichTextBox1" 428 | Me.RichTextBox1.Size = New System.Drawing.Size(199, 96) 429 | Me.RichTextBox1.TabIndex = 8 430 | Me.RichTextBox1.Text = "" 431 | ' 432 | 'Label4 433 | ' 434 | Me.Label4.AutoSize = True 435 | Me.Label4.Location = New System.Drawing.Point(21, 155) 436 | Me.Label4.Name = "Label4" 437 | Me.Label4.Size = New System.Drawing.Size(87, 13) 438 | Me.Label4.TabIndex = 7 439 | Me.Label4.Text = "Cutomer Address" 440 | ' 441 | 'Label5 442 | ' 443 | Me.Label5.AutoSize = True 444 | Me.Label5.Location = New System.Drawing.Point(21, 106) 445 | Me.Label5.Name = "Label5" 446 | Me.Label5.Size = New System.Drawing.Size(96, 13) 447 | Me.Label5.TabIndex = 5 448 | Me.Label5.Text = "Method ofPayment" 449 | ' 450 | 'TextBox1 451 | ' 452 | Me.TextBox1.Location = New System.Drawing.Point(119, 60) 453 | Me.TextBox1.Name = "TextBox1" 454 | Me.TextBox1.Size = New System.Drawing.Size(194, 20) 455 | Me.TextBox1.TabIndex = 3 456 | ' 457 | 'Label3 458 | ' 459 | Me.Label3.AutoSize = True 460 | Me.Label3.Location = New System.Drawing.Point(21, 60) 461 | Me.Label3.Name = "Label3" 462 | Me.Label3.Size = New System.Drawing.Size(82, 13) 463 | Me.Label3.TabIndex = 1 464 | Me.Label3.Text = "Customer Name" 465 | ' 466 | 'Label2 467 | ' 468 | Me.Label2.AutoSize = True 469 | Me.Label2.BackColor = System.Drawing.Color.DarkGoldenrod 470 | Me.Label2.Font = New System.Drawing.Font("Engravers MT", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) 471 | Me.Label2.Location = New System.Drawing.Point(0, 0) 472 | Me.Label2.Name = "Label2" 473 | Me.Label2.Size = New System.Drawing.Size(231, 22) 474 | Me.Label2.TabIndex = 0 475 | Me.Label2.Text = "Buy A product" 476 | ' 477 | 'btnCancel 478 | ' 479 | Me.btnCancel.BackColor = System.Drawing.Color.Crimson 480 | Me.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel 481 | Me.btnCancel.Location = New System.Drawing.Point(700, 624) 482 | Me.btnCancel.Name = "btnCancel" 483 | Me.btnCancel.Size = New System.Drawing.Size(174, 52) 484 | Me.btnCancel.TabIndex = 0 485 | Me.btnCancel.Text = "Cancel" 486 | Me.btnCancel.UseVisualStyleBackColor = False 487 | ' 488 | 'btnBuy 489 | ' 490 | Me.btnBuy.BackColor = System.Drawing.Color.Green 491 | Me.btnBuy.Location = New System.Drawing.Point(520, 624) 492 | Me.btnBuy.Name = "btnBuy" 493 | Me.btnBuy.Size = New System.Drawing.Size(174, 52) 494 | Me.btnBuy.TabIndex = 5 495 | Me.btnBuy.Text = "Buy" 496 | Me.btnBuy.UseVisualStyleBackColor = False 497 | ' 498 | 'FillByToolStrip 499 | ' 500 | Me.FillByToolStrip.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.FillByToolStripButton}) 501 | Me.FillByToolStrip.Location = New System.Drawing.Point(0, 25) 502 | Me.FillByToolStrip.Name = "FillByToolStrip" 503 | Me.FillByToolStrip.Size = New System.Drawing.Size(896, 25) 504 | Me.FillByToolStrip.TabIndex = 6 505 | Me.FillByToolStrip.Text = "FillByToolStrip" 506 | ' 507 | 'FillByToolStripButton 508 | ' 509 | Me.FillByToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text 510 | Me.FillByToolStripButton.Name = "FillByToolStripButton" 511 | Me.FillByToolStripButton.Size = New System.Drawing.Size(39, 22) 512 | Me.FillByToolStripButton.Text = "FillBy" 513 | ' 514 | 'FillBy1ToolStrip 515 | ' 516 | Me.FillBy1ToolStrip.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.FillBy1ToolStripButton}) 517 | Me.FillBy1ToolStrip.Location = New System.Drawing.Point(0, 50) 518 | Me.FillBy1ToolStrip.Name = "FillBy1ToolStrip" 519 | Me.FillBy1ToolStrip.Size = New System.Drawing.Size(896, 25) 520 | Me.FillBy1ToolStrip.TabIndex = 7 521 | Me.FillBy1ToolStrip.Text = "FillBy1ToolStrip" 522 | ' 523 | 'FillBy1ToolStripButton 524 | ' 525 | Me.FillBy1ToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text 526 | Me.FillBy1ToolStripButton.Name = "FillBy1ToolStripButton" 527 | Me.FillBy1ToolStripButton.Size = New System.Drawing.Size(45, 22) 528 | Me.FillBy1ToolStripButton.Text = "FillBy1" 529 | ' 530 | 'Customer 531 | ' 532 | Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) 533 | Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font 534 | Me.AutoScroll = True 535 | Me.AutoSize = True 536 | Me.CancelButton = Me.btnCancel 537 | Me.ClientSize = New System.Drawing.Size(896, 696) 538 | Me.Controls.Add(Me.FillBy1ToolStrip) 539 | Me.Controls.Add(Me.FillByToolStrip) 540 | Me.Controls.Add(Me.btnCancel) 541 | Me.Controls.Add(Me.btnBuy) 542 | Me.Controls.Add(Me.Panel1) 543 | Me.Controls.Add(Me.Label1) 544 | Me.Controls.Add(Me.CellphoneDataGridView) 545 | Me.Controls.Add(Me.CellphoneBindingNavigator) 546 | Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D 547 | Me.Name = "Customer" 548 | Me.Text = "Customer" 549 | CType(Me.MPRdbDataSet, System.ComponentModel.ISupportInitialize).EndInit() 550 | CType(Me.CellphoneBindingSource, System.ComponentModel.ISupportInitialize).EndInit() 551 | CType(Me.CellphoneBindingNavigator, System.ComponentModel.ISupportInitialize).EndInit() 552 | Me.CellphoneBindingNavigator.ResumeLayout(False) 553 | Me.CellphoneBindingNavigator.PerformLayout() 554 | CType(Me.CellphoneDataGridView, System.ComponentModel.ISupportInitialize).EndInit() 555 | Me.Panel1.ResumeLayout(False) 556 | Me.Panel1.PerformLayout() 557 | CType(Me.NumericUpDown1, System.ComponentModel.ISupportInitialize).EndInit() 558 | Me.FillByToolStrip.ResumeLayout(False) 559 | Me.FillByToolStrip.PerformLayout() 560 | Me.FillBy1ToolStrip.ResumeLayout(False) 561 | Me.FillBy1ToolStrip.PerformLayout() 562 | Me.ResumeLayout(False) 563 | Me.PerformLayout() 564 | 565 | End Sub 566 | 567 | Friend WithEvents MPRdbDataSet As MPRdbDataSet 568 | Friend WithEvents CellphoneBindingSource As BindingSource 569 | Friend WithEvents CellphoneTableAdapter As MPRdbDataSetTableAdapters.cellphoneTableAdapter 570 | Friend WithEvents TableAdapterManager As MPRdbDataSetTableAdapters.TableAdapterManager 571 | Friend WithEvents CellphoneBindingNavigator As BindingNavigator 572 | Friend WithEvents BindingNavigatorAddNewItem As ToolStripButton 573 | Friend WithEvents BindingNavigatorCountItem As ToolStripLabel 574 | Friend WithEvents BindingNavigatorDeleteItem As ToolStripButton 575 | Friend WithEvents BindingNavigatorMoveFirstItem As ToolStripButton 576 | Friend WithEvents BindingNavigatorMovePreviousItem As ToolStripButton 577 | Friend WithEvents BindingNavigatorSeparator As ToolStripSeparator 578 | Friend WithEvents BindingNavigatorPositionItem As ToolStripTextBox 579 | Friend WithEvents BindingNavigatorSeparator1 As ToolStripSeparator 580 | Friend WithEvents BindingNavigatorMoveNextItem As ToolStripButton 581 | Friend WithEvents BindingNavigatorMoveLastItem As ToolStripButton 582 | Friend WithEvents BindingNavigatorSeparator2 As ToolStripSeparator 583 | Friend WithEvents CellphoneBindingNavigatorSaveItem As ToolStripButton 584 | Friend WithEvents DataGridViewTextBoxColumn1 As DataGridViewTextBoxColumn 585 | Friend WithEvents DataGridViewTextBoxColumn2 As DataGridViewTextBoxColumn 586 | Friend WithEvents DataGridViewTextBoxColumn3 As DataGridViewTextBoxColumn 587 | Friend WithEvents DataGridViewTextBoxColumn4 As DataGridViewTextBoxColumn 588 | Friend WithEvents DataGridViewTextBoxColumn5 As DataGridViewTextBoxColumn 589 | Friend WithEvents DataGridViewTextBoxColumn6 As DataGridViewTextBoxColumn 590 | Friend WithEvents DataGridViewTextBoxColumn7 As DataGridViewTextBoxColumn 591 | Friend WithEvents DataGridViewTextBoxColumn8 As DataGridViewTextBoxColumn 592 | Friend WithEvents ToolStripButton1 As ToolStripButton 593 | Private WithEvents CellphoneDataGridView As DataGridView 594 | Friend WithEvents Label1 As Label 595 | Friend WithEvents Panel1 As Panel 596 | Friend WithEvents Label2 As Label 597 | Friend WithEvents btnCancel As Button 598 | Friend WithEvents btnBuy As Button 599 | Friend WithEvents Label5 As Label 600 | Friend WithEvents TextBox1 As TextBox 601 | Friend WithEvents Label3 As Label 602 | Friend WithEvents RichTextBox1 As RichTextBox 603 | Friend WithEvents Label4 As Label 604 | Friend WithEvents ComboBox2 As ComboBox 605 | Friend WithEvents ComboBox1 As ComboBox 606 | Friend WithEvents Label8 As Label 607 | Friend WithEvents Label7 As Label 608 | Friend WithEvents Label6 As Label 609 | Friend WithEvents methodOfPayment As ComboBox 610 | Friend WithEvents FillByToolStrip As ToolStrip 611 | Friend WithEvents FillByToolStripButton As ToolStripButton 612 | Friend WithEvents Label9 As Label 613 | Friend WithEvents ComboBox3 As ComboBox 614 | Friend WithEvents FillBy1ToolStrip As ToolStrip 615 | Friend WithEvents FillBy1ToolStripButton As ToolStripButton 616 | Friend WithEvents NumericUpDown1 As NumericUpDown 617 | End Class 618 | --------------------------------------------------------------------------------