VB.NET Programming - How to Create User Account Management System (Windows Forms Source Code)

ðŸ‘Ļ‍ðŸŦ Visual Basic .NET (VB.NET) Programming - How to Create User Account Management System (UAMS) Example by iBasskung (Tanin Sangngam).

This is suitable for:
✅ The student who is studying the VB .Net programming language and is doing the project.
✅ The person who starts to practice to write the program that would like the example of Source Code.
✅ The person who is interested in writing the VB .Net program.
✅ The person who is interested in using the VB .Net programming language for connecting to the MS Access Database.

💰 Donate $19 and get the source code of this project: https://paypal.me/CodeAMinute/19USD
📧 Contact the instructor via this email: ibasskung@gmail.com

ðŸ‘Ļ‍ðŸŦ Online Course: Master Visual Basic .NET and Access Database By Building the Point Of Sale System (POS): https://bit.ly/2WcbRhX

[Screenshot 1]


[Screenshot 2]


VB.NET MS Access (UAM Remaster) 1. Add a module to a project in Visual Studio.


VB.NET MS Access (UAM Remaster) 2. Designing a Windows Forms Application.


VB.NET MS Access (UAM Remaster) 3. Connect to Access Database and Generate Custom Auto Numbers (1/2).


VB.NET MS Access (UAM Remaster) 4. Connect to Access Database and Generate Custom Auto Numbers (2/2).


VB.NET MS Access (UAM Remaster) 5. Save Record and Picture to MS Access Database (1/4)


VB.NET MS Access (UAM Remaster) 6. Save Record and Picture to MS Access Database (2/4).


VB.NET MS Access (UAM Remaster) 7. Save Record and Picture to MS Access Database (3/4)


VB.NET MS Access (UAM Remaster) 8. Save Record and Picture to MS Access Database (4/4)


VB.NET MS Access (UAM Remaster) 9. How to Update Record in Access Database.


VB.NET MS Access (UAM Remaster) 10. How to Delete Records from a Table in MS Access.


VB.NET MS Access (UAM Remaster) 11. How to Search Records in an MS Access database.


(Free Source Code by iBasskung)

#BEGIN

Rem - OLEDBConnection.vb : Module

Option Explicit On
Option Strict On

Imports System.Data
Imports System.Data.OleDb
Imports System.Globalization

Module OLEDBConnection

    Public strCon As String = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" & Application.StartupPath + "\AdminDatabase.accdb; JET OLEDB:Database Password=myPassword"
    Public connection As New OleDb.OleDbConnection(strCon)
    Public command As New OleDb.OleDbCommand("", connection)
    Public datast As DataSet
    Public adapter As OleDbDataAdapter
    Public bindingsrc As BindingSource
    Public reader As OleDbDataReader
    Public sql As String
    Public dt As DateTime = DateTime.Now
    Public dtfInfo As DateTimeFormatInfo = DateTimeFormatInfo.InvariantInfo
    Public myDay As String = "dd"
    Public myMonth As String = "MMM"
    Public myYear As String = "yyyy"
    Public dtID As String
    Public accType As Integer
    Public ListToGo As Integer
    Public IsFind As Boolean = False

    Public Sub OpenCon()
        Try
            If connection.State = ConnectionState.Closed Then connection.Open()
        Catch ex As Exception
            MessageBox.Show("Connection Error: " & ex.Message.ToString())
        End Try
    End Sub

    Public Sub CloseCon()
        If connection.State = ConnectionState.Open Then
            connection.Close()
        End If
    End Sub

End Module

///

Rem - Module_CompareDate.vb : Module

Module Module_CompareDate

Public Function Date1GreaterThanDate2(dt1 As DateTime, dt2 As DateTime) As Boolean
        Dim comp As Integer = DateTime.Compare(dt1, dt2)
        If comp = 0 Then
            Return False
        ElseIf comp < 0 Then
            Return False
        Else
            Return True
        End If
End Function

End Module

#END

ðŸŽŊ See more:
ðŸ“ē YouTube: https://www.youtube.com/c/iBasskung
ðŸ“ē Facebook: https://www.facebook.com/CodeAMinute
ðŸ“ē Udemy: https://www.udemy.com/user/tanin-sangngam
ðŸ“ē Vimeo: https://vimeo.com/ibasskungacademy/vod_pages
ðŸ“ē SkillLane: https://www.skilllane.com/instructors/iBasskung

ðŸ’Ŋ THANK YOU SO MUCH ðŸ’Ŋ

#CodeAMinute #VBNet #Programming #IbasskungTutorial #IbasskungCourses 

Comments

  1. āļ‚āļ­āļšāļ„ุāļ“āļ„āļĢัāļšāļžี่ āļ”ีāđƒāļˆāļ—ี่āđ€āļˆāļ­āđāļšāļšāļĨāļ°āđ€āļ­ีāļĒāļ”āđāļšāļšāļ™ี้āļ‚āļ­āļšāļ„ุāļ“āļ„āļĢัāļš

    ReplyDelete
    Replies
    1. āļĒิāļ™āļ”ีāļ„āļĢัāļšāļœāļĄ āļ‚āļ­āļšāļ„ุāļ“āļ„āļĢัāļš.

      Delete
  2. Sir.. can you email me the source code please? my email is rupert2133@gmail.com

    ReplyDelete
  3. Sir.. can you email me the source code please? my email is rupert2133@gmail.com

    ReplyDelete
  4. Sir.. can you email me the source code please? my email is rupert2133@gmail.com

    ReplyDelete
  5. hi ,is it possible to send me the source code ?
    Thanks and hope to learn great thing with your great piece of code.

    ReplyDelete
  6. Sir.. can you email me the source code please? my email is gem88@outlook.com

    āļ•āļ­āļš

    ReplyDelete
  7. āļĢāļšāļāļ§āļ™āļ‚āļ­āļ”้āļ§āļĒāļ„āļĢัāļš kummoolart@gmail.com

    ReplyDelete
  8. āļĢāļšāļāļ§āļ™āļ‚āļ­ code āļ”้āļ§āļĒāļ„āļĢัāļš puupha2521@gmail.com

    ReplyDelete

Post a Comment