<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ru">
		<id>http://www.vbex.ru/index.php?action=history&amp;feed=atom&amp;title=VB.Net_Tutorial%2FGUI%2FDateTimePicker</id>
		<title>VB.Net Tutorial/GUI/DateTimePicker - История изменений</title>
		<link rel="self" type="application/atom+xml" href="http://www.vbex.ru/index.php?action=history&amp;feed=atom&amp;title=VB.Net_Tutorial%2FGUI%2FDateTimePicker"/>
		<link rel="alternate" type="text/html" href="http://www.vbex.ru/index.php?title=VB.Net_Tutorial/GUI/DateTimePicker&amp;action=history"/>
		<updated>2026-04-05T22:05:12Z</updated>
		<subtitle>История изменений этой страницы в вики</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>http://www.vbex.ru/index.php?title=VB.Net_Tutorial/GUI/DateTimePicker&amp;diff=3874&amp;oldid=prev</id>
		<title> в 16:40, 26 мая 2010</title>
		<link rel="alternate" type="text/html" href="http://www.vbex.ru/index.php?title=VB.Net_Tutorial/GUI/DateTimePicker&amp;diff=3874&amp;oldid=prev"/>
				<updated>2010-05-26T16:40:30Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr style=&quot;vertical-align: top;&quot; lang=&quot;ru&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;← Предыдущая&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;Версия 16:40, 26 мая 2010&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; style=&quot;text-align: center;&quot; lang=&quot;ru&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(нет различий)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
			</entry>

	<entry>
		<id>http://www.vbex.ru/index.php?title=VB.Net_Tutorial/GUI/DateTimePicker&amp;diff=3875&amp;oldid=prev</id>
		<title>Admin: 1 версия</title>
		<link rel="alternate" type="text/html" href="http://www.vbex.ru/index.php?title=VB.Net_Tutorial/GUI/DateTimePicker&amp;diff=3875&amp;oldid=prev"/>
				<updated>2010-05-26T12:57:17Z</updated>
		
		<summary type="html">&lt;p&gt;1 версия&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Новая страница&lt;/b&gt;&lt;/p&gt;&lt;div&gt;==DataTimePicker format==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;vbnet&amp;quot;&amp;gt;Imports System.Windows.Forms&lt;br /&gt;
public class DataTimePickerFormat&lt;br /&gt;
   public Shared Sub Main&lt;br /&gt;
        Application.Run(New Form1)&lt;br /&gt;
   End Sub&lt;br /&gt;
End class&lt;br /&gt;
Public Class Form1&lt;br /&gt;
    Inherits System.Windows.Forms.Form&lt;br /&gt;
    Public Sub New()&lt;br /&gt;
        MyBase.New()&lt;br /&gt;
        InitializeComponent()&lt;br /&gt;
    End Sub&lt;br /&gt;
    Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)&lt;br /&gt;
        If disposing Then&lt;br /&gt;
            If Not (components Is Nothing) Then&lt;br /&gt;
                components.Dispose()&lt;br /&gt;
            End If&lt;br /&gt;
        End If&lt;br /&gt;
        MyBase.Dispose(disposing)&lt;br /&gt;
    End Sub&lt;br /&gt;
    Private components As System.ruponentModel.IContainer&lt;br /&gt;
    Friend WithEvents DateTimePicker1 As System.Windows.Forms.DateTimePicker&lt;br /&gt;
    Friend WithEvents ComboBox1 As System.Windows.Forms.ruboBox&lt;br /&gt;
    Friend WithEvents Label1 As System.Windows.Forms.Label&lt;br /&gt;
    &amp;lt;System.Diagnostics.DebuggerStepThrough()&amp;gt; Private Sub InitializeComponent()&lt;br /&gt;
        Me.DateTimePicker1 = New System.Windows.Forms.DateTimePicker&lt;br /&gt;
        Me.ruboBox1 = New System.Windows.Forms.ruboBox&lt;br /&gt;
        Me.Label1 = New System.Windows.Forms.Label&lt;br /&gt;
        Me.SuspendLayout()&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;DateTimePicker1&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.DateTimePicker1.Location = New System.Drawing.Point(40, 24)&lt;br /&gt;
        Me.DateTimePicker1.Name = &amp;quot;DateTimePicker1&amp;quot;&lt;br /&gt;
        Me.DateTimePicker1.Size = New System.Drawing.Size(120, 20)&lt;br /&gt;
        Me.DateTimePicker1.TabIndex = 0&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;ComboBox1&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.ruboBox1.Items.AddRange(New Object() {&amp;quot;Long&amp;quot;, &amp;quot;Short&amp;quot;, &amp;quot;Custom&amp;quot;, &amp;quot;Time&amp;quot;})&lt;br /&gt;
        Me.ruboBox1.Location = New System.Drawing.Point(40, 200)&lt;br /&gt;
        Me.ruboBox1.Name = &amp;quot;ComboBox1&amp;quot;&lt;br /&gt;
        Me.ruboBox1.Size = New System.Drawing.Size(120, 21)&lt;br /&gt;
        Me.ruboBox1.TabIndex = 1&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;Label1&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.Label1.Location = New System.Drawing.Point(40, 160)&lt;br /&gt;
        Me.Label1.Name = &amp;quot;Label1&amp;quot;&lt;br /&gt;
        Me.Label1.Size = New System.Drawing.Size(80, 24)&lt;br /&gt;
        Me.Label1.TabIndex = 2&lt;br /&gt;
        Me.Label1.Text = &amp;quot;Format&amp;quot;&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;Form1&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13)&lt;br /&gt;
        Me.ClientSize = New System.Drawing.Size(292, 266)&lt;br /&gt;
        Me.Controls.Add(Me.Label1)&lt;br /&gt;
        Me.Controls.Add(Me.ruboBox1)&lt;br /&gt;
        Me.Controls.Add(Me.DateTimePicker1)&lt;br /&gt;
        Me.Name = &amp;quot;Form1&amp;quot;&lt;br /&gt;
        Me.Text = &amp;quot;DateTimePicker&amp;quot;&lt;br /&gt;
        Me.ResumeLayout(False)&lt;br /&gt;
    End Sub&lt;br /&gt;
    Private Sub ComboBox1_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ComboBox1.SelectedIndexChanged&lt;br /&gt;
        If ComboBox1.SelectedIndex &amp;lt; 0 Then&lt;br /&gt;
            Return&lt;br /&gt;
        End If&lt;br /&gt;
        Dim caption As String = ComboBox1.SelectedItem.ToString().Chars(0)&lt;br /&gt;
        Dim format As DateTimePickerFormat&lt;br /&gt;
        Select Case caption&lt;br /&gt;
            Case &amp;quot;S&amp;quot;c&lt;br /&gt;
                format = DateTimePickerFormat.Short&lt;br /&gt;
            Case &amp;quot;T&amp;quot;c&lt;br /&gt;
                format = DateTimePickerFormat.Time&lt;br /&gt;
            Case &amp;quot;C&amp;quot;c&lt;br /&gt;
                format = DateTimePickerFormat.Custom&lt;br /&gt;
            Case Else&lt;br /&gt;
                format = DateTimePickerFormat.Long&lt;br /&gt;
        End Select&lt;br /&gt;
        DateTimePicker1.Format = format&lt;br /&gt;
    End Sub&lt;br /&gt;
End Class&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==DateTimePicker format: LongDate, LongTime, ShortDate, ShortTime==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;vbnet&amp;quot;&amp;gt;Option Strict On&lt;br /&gt;
imports System&lt;br /&gt;
imports System.Drawing&lt;br /&gt;
imports System.Windows.Forms&lt;br /&gt;
public class DTPicker : inherits Form&lt;br /&gt;
  dim dtp as DateTimePicker&lt;br /&gt;
  public sub New()&lt;br /&gt;
    Size = new Size(400,300)&lt;br /&gt;
    AddHandler me.Load, AddressOf me_Load&lt;br /&gt;
    dtp = new DateTimePicker()&lt;br /&gt;
    dtp.Parent = me&lt;br /&gt;
    dtp.Location = new Point(20,20)&lt;br /&gt;
    dtp.Size = new Size(ClientSize.Width - 40, dtp.PreferredHeight)&lt;br /&gt;
    dtp.Anchor = AnchorStyles.Top or AnchorStyles.Left or AnchorStyles.Right&lt;br /&gt;
    dim fnt as new Font(&amp;quot;Times New Roman&amp;quot;, 16)&lt;br /&gt;
    dtp.CalendarFont = new Font(fnt, FontStyle.Bold or FontStyle.Italic)&lt;br /&gt;
    dtp.CalendarForeColor = Color.Red&lt;br /&gt;
    dtp.CalendarMonthBackground = Color.Yellow&lt;br /&gt;
    dtp.CalendarTitleBackColor = Color.Lime&lt;br /&gt;
    dtp.CalendarTitleForeColor = Color.Blue&lt;br /&gt;
    dtp.CalendarTrailingForeColor = Color.FromArgb(255,192,192)&lt;br /&gt;
    dtp.CustomFormat = &amp;quot;dddd,MMMM d, yyyy &amp;quot;at&amp;quot; h:mm:ss tt&amp;quot;&lt;br /&gt;
    dtp.Format = DateTimePickerFormat.Custom&lt;br /&gt;
    dtp.DropDownAlign = LeftRightAlignment.Right&lt;br /&gt;
    dtp.ShowUpDown = false      &amp;quot; default&lt;br /&gt;
    AddHandler dtp.ValueChanged, AddressOf dtp_ValueChanged&lt;br /&gt;
  end sub&lt;br /&gt;
  public shared sub Main() &lt;br /&gt;
    Application.Run(new DTPicker())&lt;br /&gt;
  end sub&lt;br /&gt;
  private sub UpdateLabels()&lt;br /&gt;
    Console.WriteLine(dtp.Value.ToString())&lt;br /&gt;
    Console.WriteLine(dtp.Value.ToLongDateString())&lt;br /&gt;
    Console.WriteLine(dtp.Value.ToLongTimeString())&lt;br /&gt;
    Console.WriteLine(dtp.Value.ToShortDateString())&lt;br /&gt;
    Console.WriteLine(dtp.Value.ToShortTimeString())&lt;br /&gt;
  end sub&lt;br /&gt;
  private sub me_Load(ByVal sender as object,ByVal e as EventArgs)&lt;br /&gt;
    UpdateLabels()&lt;br /&gt;
  end sub&lt;br /&gt;
  private sub dtp_ValueChanged(ByVal sender as object,ByVal e as EventArgs)&lt;br /&gt;
    UpdateLabels()&lt;br /&gt;
  end sub&lt;br /&gt;
  private sub txtCustomString_TextChanged(ByVal sender as object,ByVal e as EventArgs)&lt;br /&gt;
    UpdateLabels()&lt;br /&gt;
  end sub&lt;br /&gt;
end class&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Get value from DateTimePicker==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;vbnet&amp;quot;&amp;gt;Imports System.Windows.Forms&lt;br /&gt;
public class UseMonthCalendarAndDateTimePicker&lt;br /&gt;
   public Shared Sub Main&lt;br /&gt;
        Application.Run(New Form1)&lt;br /&gt;
   End Sub&lt;br /&gt;
End class&lt;br /&gt;
Public Class Form1&lt;br /&gt;
    Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged&lt;br /&gt;
        &amp;quot; ----- Check and display only valid dates.&lt;br /&gt;
        If (IsDate(TextBox1.Text) = True) Then&lt;br /&gt;
            Label1.Text = Date.Parse(TextBox1.Text).ToShortDateString&lt;br /&gt;
        Else&lt;br /&gt;
            Label1.Text = &amp;quot;&amp;quot;&lt;br /&gt;
        End If&lt;br /&gt;
    End Sub&lt;br /&gt;
    Private Sub DateTimePicker1_ValueChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles DateTimePicker1.ValueChanged&lt;br /&gt;
        &amp;quot; ----- Show the selected date.&lt;br /&gt;
        Label2.Text = DateTimePicker1.Value.ToShortDateString&lt;br /&gt;
    End Sub&lt;br /&gt;
    Private Sub MonthCalendar1_DateChanged(ByVal sender As System.Object, ByVal e As System.Windows.Forms.DateRangeEventArgs) Handles MonthCalendar1.DateChanged&lt;br /&gt;
        &amp;quot; ---- Show the slected date.&lt;br /&gt;
        Label3.Text = MonthCalendar1.SelectionStart.ToShortDateString&lt;br /&gt;
    End Sub&lt;br /&gt;
End Class&lt;br /&gt;
&lt;br /&gt;
&amp;lt;Global.Microsoft.VisualBasic.rupilerServices.DesignerGenerated()&amp;gt; _&lt;br /&gt;
Partial Class Form1&lt;br /&gt;
    Inherits System.Windows.Forms.Form&lt;br /&gt;
    &amp;quot;Form overrides dispose to clean up the component list.&lt;br /&gt;
    &amp;lt;System.Diagnostics.DebuggerNonUserCode()&amp;gt; _&lt;br /&gt;
    Protected Overrides Sub Dispose(ByVal disposing As Boolean)&lt;br /&gt;
        If disposing AndAlso components IsNot Nothing Then&lt;br /&gt;
            components.Dispose()&lt;br /&gt;
        End If&lt;br /&gt;
        MyBase.Dispose(disposing)&lt;br /&gt;
    End Sub&lt;br /&gt;
    &amp;quot;Required by the Windows Form Designer&lt;br /&gt;
    Private components As System.ruponentModel.IContainer&lt;br /&gt;
    &amp;quot;NOTE: The following procedure is required by the Windows Form Designer&lt;br /&gt;
    &amp;quot;It can be modified using the Windows Form Designer.  &lt;br /&gt;
    &amp;quot;Do not modify it using the code editor.&lt;br /&gt;
    &amp;lt;System.Diagnostics.DebuggerStepThrough()&amp;gt; _&lt;br /&gt;
    Private Sub InitializeComponent()&lt;br /&gt;
        Me.TextBox1 = New System.Windows.Forms.TextBox&lt;br /&gt;
        Me.DateTimePicker1 = New System.Windows.Forms.DateTimePicker&lt;br /&gt;
        Me.MonthCalendar1 = New System.Windows.Forms.MonthCalendar&lt;br /&gt;
        Me.Label1 = New System.Windows.Forms.Label&lt;br /&gt;
        Me.Label2 = New System.Windows.Forms.Label&lt;br /&gt;
        Me.Label3 = New System.Windows.Forms.Label&lt;br /&gt;
        Me.Label4 = New System.Windows.Forms.Label&lt;br /&gt;
        Me.Label5 = New System.Windows.Forms.Label&lt;br /&gt;
        Me.Label6 = New System.Windows.Forms.Label&lt;br /&gt;
        Me.SuspendLayout()&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;TextBox1&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.TextBox1.Location = New System.Drawing.Point(72, 8)&lt;br /&gt;
        Me.TextBox1.Name = &amp;quot;TextBox1&amp;quot;&lt;br /&gt;
        Me.TextBox1.Size = New System.Drawing.Size(120, 20)&lt;br /&gt;
        Me.TextBox1.TabIndex = 0&lt;br /&gt;
        Me.TextBox1.Text = &amp;quot;2007-12-07&amp;quot;&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;DateTimePicker1&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.DateTimePicker1.Location = New System.Drawing.Point(72, 48)&lt;br /&gt;
        Me.DateTimePicker1.Name = &amp;quot;DateTimePicker1&amp;quot;&lt;br /&gt;
        Me.DateTimePicker1.Size = New System.Drawing.Size(200, 20)&lt;br /&gt;
        Me.DateTimePicker1.TabIndex = 1&lt;br /&gt;
        Me.DateTimePicker1.Value = New Date(2007, 12, 7, 0, 0, 0, 0)&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;MonthCalendar1&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.MonthCalendar1.Location = New System.Drawing.Point(72, 88)&lt;br /&gt;
        Me.MonthCalendar1.Name = &amp;quot;MonthCalendar1&amp;quot;&lt;br /&gt;
        Me.MonthCalendar1.TabIndex = 2&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;Label1&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.Label1.AutoSize = True&lt;br /&gt;
        Me.Label1.Location = New System.Drawing.Point(296, 16)&lt;br /&gt;
        Me.Label1.Name = &amp;quot;Label1&amp;quot;&lt;br /&gt;
        Me.Label1.Size = New System.Drawing.Size(39, 13)&lt;br /&gt;
        Me.Label1.TabIndex = 3&lt;br /&gt;
        Me.Label1.Text = &amp;quot;Label1&amp;quot;&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;Label2&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.Label2.AutoSize = True&lt;br /&gt;
        Me.Label2.Location = New System.Drawing.Point(296, 48)&lt;br /&gt;
        Me.Label2.Name = &amp;quot;Label2&amp;quot;&lt;br /&gt;
        Me.Label2.Size = New System.Drawing.Size(39, 13)&lt;br /&gt;
        Me.Label2.TabIndex = 4&lt;br /&gt;
        Me.Label2.Text = &amp;quot;Label2&amp;quot;&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;Label3&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.Label3.AutoSize = True&lt;br /&gt;
        Me.Label3.Location = New System.Drawing.Point(296, 88)&lt;br /&gt;
        Me.Label3.Name = &amp;quot;Label3&amp;quot;&lt;br /&gt;
        Me.Label3.Size = New System.Drawing.Size(39, 13)&lt;br /&gt;
        Me.Label3.TabIndex = 5&lt;br /&gt;
        Me.Label3.Text = &amp;quot;Label3&amp;quot;&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;Label4&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.Label4.AutoSize = True&lt;br /&gt;
        Me.Label4.Location = New System.Drawing.Point(8, 10)&lt;br /&gt;
        Me.Label4.Name = &amp;quot;Label4&amp;quot;&lt;br /&gt;
        Me.Label4.Size = New System.Drawing.Size(57, 13)&lt;br /&gt;
        Me.Label4.TabIndex = 6&lt;br /&gt;
        Me.Label4.Text = &amp;quot;Plain Text:&amp;quot;&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;Label5&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.Label5.AutoSize = True&lt;br /&gt;
        Me.Label5.Location = New System.Drawing.Point(8, 50)&lt;br /&gt;
        Me.Label5.Name = &amp;quot;Label5&amp;quot;&lt;br /&gt;
        Me.Label5.Size = New System.Drawing.Size(40, 13)&lt;br /&gt;
        Me.Label5.TabIndex = 7&lt;br /&gt;
        Me.Label5.Text = &amp;quot;Picker:&amp;quot;&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;Label6&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.Label6.AutoSize = True&lt;br /&gt;
        Me.Label6.Location = New System.Drawing.Point(8, 88)&lt;br /&gt;
        Me.Label6.Name = &amp;quot;Label6&amp;quot;&lt;br /&gt;
        Me.Label6.Size = New System.Drawing.Size(52, 13)&lt;br /&gt;
        Me.Label6.TabIndex = 8&lt;br /&gt;
        Me.Label6.Text = &amp;quot;Calendar:&amp;quot;&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;Form1&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)&lt;br /&gt;
        Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font&lt;br /&gt;
        Me.ClientSize = New System.Drawing.Size(510, 258)&lt;br /&gt;
        Me.Controls.Add(Me.Label6)&lt;br /&gt;
        Me.Controls.Add(Me.Label5)&lt;br /&gt;
        Me.Controls.Add(Me.Label4)&lt;br /&gt;
        Me.Controls.Add(Me.Label3)&lt;br /&gt;
        Me.Controls.Add(Me.Label2)&lt;br /&gt;
        Me.Controls.Add(Me.Label1)&lt;br /&gt;
        Me.Controls.Add(Me.MonthCalendar1)&lt;br /&gt;
        Me.Controls.Add(Me.DateTimePicker1)&lt;br /&gt;
        Me.Controls.Add(Me.TextBox1)&lt;br /&gt;
        Me.Name = &amp;quot;Form1&amp;quot;&lt;br /&gt;
        Me.Text = &amp;quot;Using Controls to Enter or Select a Date&amp;quot;&lt;br /&gt;
        Me.ResumeLayout(False)&lt;br /&gt;
        Me.PerformLayout()&lt;br /&gt;
    End Sub&lt;br /&gt;
    Friend WithEvents TextBox1 As System.Windows.Forms.TextBox&lt;br /&gt;
    Friend WithEvents DateTimePicker1 As System.Windows.Forms.DateTimePicker&lt;br /&gt;
    Friend WithEvents MonthCalendar1 As System.Windows.Forms.MonthCalendar&lt;br /&gt;
    Friend WithEvents Label1 As System.Windows.Forms.Label&lt;br /&gt;
    Friend WithEvents Label2 As System.Windows.Forms.Label&lt;br /&gt;
    Friend WithEvents Label3 As System.Windows.Forms.Label&lt;br /&gt;
    Friend WithEvents Label4 As System.Windows.Forms.Label&lt;br /&gt;
    Friend WithEvents Label5 As System.Windows.Forms.Label&lt;br /&gt;
    Friend WithEvents Label6 As System.Windows.Forms.Label&lt;br /&gt;
End Class&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>	</entry>

	</feed>