Login Dialog : Custom Dialog « GUI « VB.Net Tutorial

Home
VB.Net Tutorial
1.Language Basics
2.Data Type
3.Operator
4.Statements
5.Date Time
6.Class Module
7.Development
8.Collections
9.Generics
10.Attributes
11.Event
12.LINQ
13.Stream File
14.GUI
15.GUI Applications
16.Windows Presentation Foundation
17.2D Graphics
18.I18N Internationlization
19.Reflection
20.Regular Expressions
21.Security
22.Socket Network
23.Thread
24.Windows
25.XML
26.Database ADO.net
27.Design Patterns
VB.Net
VB.Net by API
VB.Net Tutorial » GUI » Custom Dialog 
14.69.4.Login Dialog
Login Dialog
Imports System.Windows.Forms

public class LoginDialog
   public Shared Sub Main
        Application.Run(New Form1)
   End Sub

End class

Public Class Form1
    Inherits System.Windows.Forms.Form

#Region " Windows Form Designer generated code "

    Public Sub New()
        MyBase.New()

        'This call is required by the Windows Form Designer.
        InitializeComponent()

        'Add any initialization after the InitializeComponent() call

    End Sub

    'Form overrides dispose to clean up the component list.
    Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
        If disposing Then
            If Not (components Is NothingThen
                components.Dispose()
            End If
        End If
        MyBase.Dispose(disposing)
    End Sub

    'Required by the Windows Form Designer
    Private components As System.ComponentModel.Container

    'NOTE: The following procedure is required by the Windows Form Designer
    'It can be modified using the Windows Form Designer.  
    'Do not modify it using the code editor.
    <System.Diagnostics.DebuggerStepThrough()Private Sub InitializeComponent()
        components = New System.ComponentModel.Container()
        Me.Text = "Form1"
    End Sub

#End Region

  Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgsHandles MyBase.Load
    Dim frmLogon As New LogonDialog()
    Dim success As Boolean = False
    Dim errorMessage As String

    If frmLogon.ShowDialog() = DialogResult.OK Then
      If frmLogon.txtUserid.Text = "Joe" Then
        If frmLogon.txtPassword.Text = "password" Then
          success = True
        Else
          errorMessage = "Invalid Password!"
        End If
      Else
        errorMessage = "Invalid User ID!"
      End If
    Else
      errorMessage = "Logon Attempt Cancelled"
    End If

    If Not success Then
      MessageBox.Show(errorMessage, "Logon Failed", MessageBoxButtons.OK, MessageBoxIcon.Error)
      Me.Close()
    End If
  End Sub
End Class

Public Class LogonDialog
    Inherits System.Windows.Forms.Form

#Region " Windows Form Designer generated code "

    Public Sub New()
        MyBase.New()

        'This call is required by the Windows Form Designer.
        InitializeComponent()

        'Add any initialization after the InitializeComponent() call

    End Sub

    'Form overrides dispose to clean up the component list.
    Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
        If disposing Then
            If Not (components Is NothingThen
                components.Dispose()
            End If
        End If
        MyBase.Dispose(disposing)
    End Sub
  Friend WithEvents btnOK As System.Windows.Forms.Button
  Friend WithEvents btnCancel As System.Windows.Forms.Button
  Friend WithEvents lblUserid As System.Windows.Forms.Label
  Friend WithEvents lblPassword As System.Windows.Forms.Label
  Friend WithEvents txtUserid As System.Windows.Forms.TextBox
  Friend WithEvents txtPassword As System.Windows.Forms.TextBox

    'Required by the Windows Form Designer
    Private components As System.ComponentModel.Container

    'NOTE: The following procedure is required by the Windows Form Designer
    'It can be modified using the Windows Form Designer.  
    'Do not modify it using the code editor.
    <System.Diagnostics.DebuggerStepThrough()Private Sub InitializeComponent()
    Me.btnOK = New System.Windows.Forms.Button()
    Me.btnCancel = New System.Windows.Forms.Button()
    Me.txtUserid = New System.Windows.Forms.TextBox()
    Me.txtPassword = New System.Windows.Forms.TextBox()
    Me.lblUserid = New System.Windows.Forms.Label()
    Me.lblPassword = New System.Windows.Forms.Label()
    Me.SuspendLayout()
    '
    'btnOK
    '
    Me.btnOK.Location = New System.Drawing.Point(12864)
    Me.btnOK.Name = "btnOK"
    Me.btnOK.TabIndex = 0
    Me.btnOK.Text = "OK"
    '
    'btnCancel
    '
    Me.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel
    Me.btnCancel.Location = New System.Drawing.Point(20564)
    Me.btnCancel.Name = "btnCancel"
    Me.btnCancel.TabIndex = 1
    Me.btnCancel.Text = "Cancel"
    '
    'txtUserid
    '
    Me.txtUserid.Location = New System.Drawing.Point(728)
    Me.txtUserid.Name = "txtUserid"
    Me.txtUserid.Size = New System.Drawing.Size(20820)
    Me.txtUserid.TabIndex = 2
    Me.txtUserid.Text = "Joe"
    '
    'txtPassword
    '
    Me.txtPassword.Location = New System.Drawing.Point(7232)
    Me.txtPassword.Name = "txtPassword"
    Me.txtPassword.PasswordChar = ChrW(42)
    Me.txtPassword.Size = New System.Drawing.Size(20820)
    Me.txtPassword.TabIndex = 3
    Me.txtPassword.Text = "password"
    '
    'lblUserid
    '
    Me.lblUserid.AutoSize = True
    Me.lblUserid.Location = New System.Drawing.Point(812)
    Me.lblUserid.Name = "lblUserid"
    Me.lblUserid.Size = New System.Drawing.Size(4313)
    Me.lblUserid.TabIndex = 4
    Me.lblUserid.Text = "UserID:"
    '
    'lblPassword
    '
    Me.lblPassword.AutoSize = True
    Me.lblPassword.Location = New System.Drawing.Point(836)
    Me.lblPassword.Name = "lblPassword"
    Me.lblPassword.Size = New System.Drawing.Size(5713)
    Me.lblPassword.TabIndex = 5
    Me.lblPassword.Text = "Password:"
    '
    'LogonDialog
    '
    Me.AcceptButton = Me.btnOK
    Me.AutoScaleBaseSize = New System.Drawing.Size(513)
    Me.CancelButton = Me.btnCancel
    Me.ClientSize = New System.Drawing.Size(29095)
    Me.Controls.AddRange(New System.Windows.Forms.Control() {Me.lblPassword, Me.lblUserid, Me.txtPassword, Me.txtUserid, Me.btnCancel, Me.btnOK})
    Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog
    Me.MaximizeBox = False
    Me.MinimizeBox = False
    Me.Name = "LogonDialog"
    Me.Text = "Logon"
    Me.ResumeLayout(False)

  End Sub

#End Region

  Private Sub btnOK_Click(ByVal sender As System.Object, ByVal e As System.EventArgsHandles btnOK.Click
    Dim sUserID As String
    Dim sPassword As String

    sUserID = txtUserid.Text
    sPassword = txtPassword.Text

    If sUserID.Trim() "" Then
      MessageBox.Show("UserID cannot be blank.""Error", MessageBoxButtons.OK, MessageBoxIcon.Error)
      txtUserid.Select()
    Else
      If sPassword.Trim() "" Then
        MessageBox.Show("Password cannot be blank.""Error", MessageBoxButtons.OK, MessageBoxIcon.Error)
        txtPassword.Select()
      Else
        Me.DialogResult = DialogResult.OK
      End If
    End If
  End Sub
End Class
14.69.Custom Dialog
14.69.1.Create Dialog from FormCreate Dialog from Form
14.69.2.User defined DialogUser defined Dialog
14.69.3.Get Custom dialog returning valueGet Custom dialog returning value
14.69.4.Login DialogLogin Dialog
14.69.5.About DialogAbout Dialog
14.69.6.Dialog apply methodDialog apply method
14.69.7.Custom dialog with custom classCustom dialog with custom class
14.69.8.Dialog with propertiesDialog with properties
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.