Check Control type : Controls « 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 » Controls 
14.73.3.Check Control type
Option Strict On

Imports System.Drawing

Imports System.Windows.Forms

Public Class Form1 : Inherits Form
   ' Instantiate buttons
   Public WithEvents btnOK As New Button()
   Public WithEvents btnCancel As New Button()
   Public WithEvents btnQuit As New Button()
   
   ' Application entry point
   Public Shared Sub Main()
      Dim frm As New Form1()
      frm.ShowDialog()
   End Sub
   
   ' Class constructor
   Public Sub New()
      MyBase.New()
      ' Define button sizes and locations
      Me.btnOK.Location = New Point(10050)
      Me.btnOK.Size = New Size(10050)
      Me.btnOK.Text = "OK"
      Me.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK

      Me.btnCancel.Location = New Point(100125)
      Me.btnCancel.Size = New Size(10050)
      Me.btnCancel.Text = "Cancel"
      Me.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel
      
      Me.btnQuit.Location = New Point(100200)
      Me.btnQuit.Size = New Size(10050)
      Me.btnQuit.Text = "Exit"
      Me.btnQuit.DialogResult = System.Windows.Forms.DialogResult.Abort

      ' Define form controls and caption
      Me.Controls.Add(btnOK)
      Me.Controls.Add(btnCancel)
      Me.Controls.Add(btnQuit)
      Me.Text = "Button Click Events"
   End Sub
   
   ' Event handler for all three buttons
   Private Sub ButtonClicked(ByVal sender As System.Object, _
                             ByVal e As System.EventArgs_
           Handles btnOK.Click, btnCancel.Click, btnQuit.Click
      If TypeOf sender Is Button Then
         Dim btn As Button = DirectCast(sender, Button)

         If btn.Name = "btnOK" Then
            Console.WriteLine("btnOK")
         ElseIf btn.Name = "btnCancel" Then
            Console.WriteLine("Cancel")
            Exit Sub
         Else 
            Me.Close()
         End If
      Else
         Throw New ArgumentException_
               "The event was raised by an invalid object.")
      End If
   End Sub
End Class
14.73.Controls
14.73.1.Add Label to a formAdd Label to a form
14.73.2.Add TextBox to Form in codeAdd TextBox to Form in code
14.73.3.Check Control type
14.73.4.Cast event sender to control
14.73.5.Read and Save controls on a form to a fileRead and Save controls on a form to a file
14.73.6.Set Control ParentSet Control Parent
14.73.7.Add the Button control to the Form Controls collectionAdd the Button control to the Form Controls collection
14.73.8.Use Constrol's TagUse Constrol's Tag
14.73.9.Hide a controlHide a control
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.