<?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%2FGUI%2FTooltip</id>
		<title>VB.Net/GUI/Tooltip - История изменений</title>
		<link rel="self" type="application/atom+xml" href="http://www.vbex.ru/index.php?action=history&amp;feed=atom&amp;title=VB.Net%2FGUI%2FTooltip"/>
		<link rel="alternate" type="text/html" href="http://www.vbex.ru/index.php?title=VB.Net/GUI/Tooltip&amp;action=history"/>
		<updated>2026-04-06T00:08:37Z</updated>
		<subtitle>История изменений этой страницы в вики</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>http://www.vbex.ru/index.php?title=VB.Net/GUI/Tooltip&amp;diff=476&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/GUI/Tooltip&amp;diff=476&amp;oldid=prev"/>
				<updated>2010-05-26T16:40:06Z</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/GUI/Tooltip&amp;diff=477&amp;oldid=prev</id>
		<title>Admin: 1 версия</title>
		<link rel="alternate" type="text/html" href="http://www.vbex.ru/index.php?title=VB.Net/GUI/Tooltip&amp;diff=477&amp;oldid=prev"/>
				<updated>2010-05-26T12:43:15Z</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;==Set up the Tooltip==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;vbnet&amp;quot;&amp;gt;&lt;br /&gt;
Imports System&lt;br /&gt;
Imports System.Data&lt;br /&gt;
Imports System.Windows.Forms&lt;br /&gt;
Imports System.Drawing&lt;br /&gt;
Imports System.Data.SqlClient&lt;br /&gt;
public class MainClass&lt;br /&gt;
   Shared Sub Main()&lt;br /&gt;
       Dim form1 As Form = New Form1&lt;br /&gt;
       Application.Run(form1)&lt;br /&gt;
   End Sub&lt;br /&gt;
End Class&lt;br /&gt;
&lt;br /&gt;
Public Class Form1&lt;br /&gt;
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load&lt;br /&gt;
        &amp;quot; Comment these lines out to use the ToolTip valeus set at design time.&lt;br /&gt;
        ttHint.SetToolTip(txtFirstName, &amp;quot;First Name Field&amp;quot;)&lt;br /&gt;
        ttHint.SetToolTip(txtLastName, &amp;quot;Last Name Field&amp;quot;)&lt;br /&gt;
        ttHint.SetToolTip(txtStreet, &amp;quot;Street&amp;quot;)&lt;br /&gt;
        ttHint.SetToolTip(txtCity, &amp;quot;City&amp;quot;)&lt;br /&gt;
        ttHint.SetToolTip(cboState, &amp;quot;State&amp;quot;)&lt;br /&gt;
        ttHint.SetToolTip(txtZip, &amp;quot;ZIP&amp;quot;)&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 Public 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 Overloads 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.ruponents = New System.ruponentModel.Container&lt;br /&gt;
        Me.ttHint = New System.Windows.Forms.ToolTip(Me.ruponents)&lt;br /&gt;
        Me.TableLayoutPanel1 = New System.Windows.Forms.TableLayoutPanel&lt;br /&gt;
        Me.Label1 = New System.Windows.Forms.Label&lt;br /&gt;
        Me.Label7 = New System.Windows.Forms.Label&lt;br /&gt;
        Me.Label2 = New System.Windows.Forms.Label&lt;br /&gt;
        Me.txtFirstName = New System.Windows.Forms.TextBox&lt;br /&gt;
        Me.txtLastName = New System.Windows.Forms.TextBox&lt;br /&gt;
        Me.txtStreet = New System.Windows.Forms.TextBox&lt;br /&gt;
        Me.Label3 = New System.Windows.Forms.Label&lt;br /&gt;
        Me.txtCity = New System.Windows.Forms.TextBox&lt;br /&gt;
        Me.txtZip = New System.Windows.Forms.TextBox&lt;br /&gt;
        Me.Label5 = New System.Windows.Forms.Label&lt;br /&gt;
        Me.Label8 = New System.Windows.Forms.Label&lt;br /&gt;
        Me.Label6 = New System.Windows.Forms.Label&lt;br /&gt;
        Me.cboState = New System.Windows.Forms.ruboBox&lt;br /&gt;
        Me.TableLayoutPanel1.SuspendLayout()&lt;br /&gt;
        Me.SuspendLayout()&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;TableLayoutPanel1&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.TableLayoutPanel1.AutoSize = True&lt;br /&gt;
        Me.TableLayoutPanel1.ColumnCount = 2&lt;br /&gt;
        Me.TableLayoutPanel1.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 80.0!))&lt;br /&gt;
        Me.TableLayoutPanel1.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 136.0!))&lt;br /&gt;
        Me.TableLayoutPanel1.Controls.Add(Me.Label1, 0, 0)&lt;br /&gt;
        Me.TableLayoutPanel1.Controls.Add(Me.Label7, 0, 1)&lt;br /&gt;
        Me.TableLayoutPanel1.Controls.Add(Me.Label2, 0, 2)&lt;br /&gt;
        Me.TableLayoutPanel1.Controls.Add(Me.txtFirstName, 1, 1)&lt;br /&gt;
        Me.TableLayoutPanel1.Controls.Add(Me.txtLastName, 1, 2)&lt;br /&gt;
        Me.TableLayoutPanel1.Controls.Add(Me.txtStreet, 1, 3)&lt;br /&gt;
        Me.TableLayoutPanel1.Controls.Add(Me.Label3, 0, 3)&lt;br /&gt;
        Me.TableLayoutPanel1.Controls.Add(Me.txtCity, 1, 4)&lt;br /&gt;
        Me.TableLayoutPanel1.Controls.Add(Me.txtZip, 1, 6)&lt;br /&gt;
        Me.TableLayoutPanel1.Controls.Add(Me.Label5, 0, 5)&lt;br /&gt;
        Me.TableLayoutPanel1.Controls.Add(Me.Label8, 0, 4)&lt;br /&gt;
        Me.TableLayoutPanel1.Controls.Add(Me.Label6, 0, 6)&lt;br /&gt;
        Me.TableLayoutPanel1.Controls.Add(Me.cboState, 1, 5)&lt;br /&gt;
        Me.TableLayoutPanel1.Location = New System.Drawing.Point(7, 7)&lt;br /&gt;
        Me.TableLayoutPanel1.Name = &amp;quot;TableLayoutPanel1&amp;quot;&lt;br /&gt;
        Me.TableLayoutPanel1.RowCount = 7&lt;br /&gt;
        Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle)&lt;br /&gt;
        Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle)&lt;br /&gt;
        Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle)&lt;br /&gt;
        Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle)&lt;br /&gt;
        Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle)&lt;br /&gt;
        Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle)&lt;br /&gt;
        Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle)&lt;br /&gt;
        Me.TableLayoutPanel1.Size = New System.Drawing.Size(272, 182)&lt;br /&gt;
        Me.TableLayoutPanel1.TabIndex = 1&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;Label1&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.Label1.Anchor = System.Windows.Forms.AnchorStyles.None&lt;br /&gt;
        Me.Label1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D&lt;br /&gt;
        Me.TableLayoutPanel1.SetColumnSpan(Me.Label1, 2)&lt;br /&gt;
        Me.Label1.Location = New System.Drawing.Point(36, 0)&lt;br /&gt;
        Me.Label1.Name = &amp;quot;Label1&amp;quot;&lt;br /&gt;
        Me.Label1.Size = New System.Drawing.Size(200, 20)&lt;br /&gt;
        Me.Label1.TabIndex = 37&lt;br /&gt;
        Me.Label1.Text = &amp;quot;Employee&amp;quot;&lt;br /&gt;
        Me.Label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;Label7&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.Label7.Anchor = System.Windows.Forms.AnchorStyles.None&lt;br /&gt;
        Me.Label7.AutoSize = True&lt;br /&gt;
        Me.Label7.Location = New System.Drawing.Point(13, 26)&lt;br /&gt;
        Me.Label7.Name = &amp;quot;Label7&amp;quot;&lt;br /&gt;
        Me.Label7.Size = New System.Drawing.Size(53, 13)&lt;br /&gt;
        Me.Label7.TabIndex = 38&lt;br /&gt;
        Me.Label7.Text = &amp;quot;First Name&amp;quot;&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;Label2&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.Label2.Anchor = System.Windows.Forms.AnchorStyles.None&lt;br /&gt;
        Me.Label2.AutoSize = True&lt;br /&gt;
        Me.Label2.Location = New System.Drawing.Point(13, 52)&lt;br /&gt;
        Me.Label2.Name = &amp;quot;Label2&amp;quot;&lt;br /&gt;
        Me.Label2.Size = New System.Drawing.Size(54, 13)&lt;br /&gt;
        Me.Label2.TabIndex = 40&lt;br /&gt;
        Me.Label2.Text = &amp;quot;Last Name&amp;quot;&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;txtFirstName&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.txtFirstName.Anchor = CType((System.Windows.Forms.AnchorStyles.Left Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)&lt;br /&gt;
        Me.txtFirstName.Location = New System.Drawing.Point(83, 23)&lt;br /&gt;
        Me.txtFirstName.Name = &amp;quot;txtFirstName&amp;quot;&lt;br /&gt;
        Me.txtFirstName.Size = New System.Drawing.Size(186, 20)&lt;br /&gt;
        Me.txtFirstName.TabIndex = 0&lt;br /&gt;
        Me.ttHint.SetToolTip(Me.txtFirstName, &amp;quot;Enter the customer&amp;quot;s first (given) name.&amp;quot;)&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;txtLastName&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.txtLastName.Anchor = CType((System.Windows.Forms.AnchorStyles.Left Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)&lt;br /&gt;
        Me.txtLastName.Location = New System.Drawing.Point(83, 49)&lt;br /&gt;
        Me.txtLastName.Name = &amp;quot;txtLastName&amp;quot;&lt;br /&gt;
        Me.txtLastName.Size = New System.Drawing.Size(186, 20)&lt;br /&gt;
        Me.txtLastName.TabIndex = 1&lt;br /&gt;
        Me.ttHint.SetToolTip(Me.txtLastName, &amp;quot;Enter the customer&amp;quot;s last (family) name.&amp;quot;)&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;txtStreet&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.txtStreet.Anchor = CType((System.Windows.Forms.AnchorStyles.Left Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)&lt;br /&gt;
        Me.txtStreet.Location = New System.Drawing.Point(83, 75)&lt;br /&gt;
        Me.txtStreet.Name = &amp;quot;txtStreet&amp;quot;&lt;br /&gt;
        Me.txtStreet.Size = New System.Drawing.Size(186, 20)&lt;br /&gt;
        Me.txtStreet.TabIndex = 2&lt;br /&gt;
        Me.ttHint.SetToolTip(Me.txtStreet, &amp;quot;Enter the customer&amp;quot;s stree address including apartment, suite, or other informati&amp;quot; &amp;amp; _&lt;br /&gt;
                &amp;quot;on.&amp;quot;)&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;Label3&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.Label3.Anchor = System.Windows.Forms.AnchorStyles.None&lt;br /&gt;
        Me.Label3.AutoSize = True&lt;br /&gt;
        Me.Label3.Location = New System.Drawing.Point(24, 78)&lt;br /&gt;
        Me.Label3.Name = &amp;quot;Label3&amp;quot;&lt;br /&gt;
        Me.Label3.Size = New System.Drawing.Size(31, 13)&lt;br /&gt;
        Me.Label3.TabIndex = 42&lt;br /&gt;
        Me.Label3.Text = &amp;quot;Street&amp;quot;&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;txtCity&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.txtCity.Anchor = CType((System.Windows.Forms.AnchorStyles.Left Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)&lt;br /&gt;
        Me.txtCity.Location = New System.Drawing.Point(83, 101)&lt;br /&gt;
        Me.txtCity.Name = &amp;quot;txtCity&amp;quot;&lt;br /&gt;
        Me.txtCity.Size = New System.Drawing.Size(186, 20)&lt;br /&gt;
        Me.txtCity.TabIndex = 3&lt;br /&gt;
        Me.ttHint.SetToolTip(Me.txtCity, &amp;quot;Enter the customer&amp;quot;s city.&amp;quot;)&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;txtZip&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.txtZip.Anchor = System.Windows.Forms.AnchorStyles.Left&lt;br /&gt;
        Me.txtZip.Location = New System.Drawing.Point(83, 156)&lt;br /&gt;
        Me.txtZip.Name = &amp;quot;txtZip&amp;quot;&lt;br /&gt;
        Me.txtZip.Size = New System.Drawing.Size(64, 20)&lt;br /&gt;
        Me.txtZip.TabIndex = 5&lt;br /&gt;
        Me.ttHint.SetToolTip(Me.txtZip, &amp;quot;Enter the customer&amp;quot;s ZIP code.&amp;quot;)&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;Label5&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.Label5.Anchor = System.Windows.Forms.AnchorStyles.None&lt;br /&gt;
        Me.Label5.AutoSize = True&lt;br /&gt;
        Me.Label5.Location = New System.Drawing.Point(26, 131)&lt;br /&gt;
        Me.Label5.Name = &amp;quot;Label5&amp;quot;&lt;br /&gt;
        Me.Label5.Size = New System.Drawing.Size(28, 13)&lt;br /&gt;
        Me.Label5.TabIndex = 46&lt;br /&gt;
        Me.Label5.Text = &amp;quot;State&amp;quot;&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;Label8&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.Label8.Anchor = System.Windows.Forms.AnchorStyles.None&lt;br /&gt;
        Me.Label8.AutoSize = True&lt;br /&gt;
        Me.Label8.Location = New System.Drawing.Point(30, 104)&lt;br /&gt;
        Me.Label8.Name = &amp;quot;Label8&amp;quot;&lt;br /&gt;
        Me.Label8.Size = New System.Drawing.Size(20, 13)&lt;br /&gt;
        Me.Label8.TabIndex = 51&lt;br /&gt;
        Me.Label8.Text = &amp;quot;City&amp;quot;&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;Label6&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.Label6.Anchor = System.Windows.Forms.AnchorStyles.None&lt;br /&gt;
        Me.Label6.AutoSize = True&lt;br /&gt;
        Me.Label6.Location = New System.Drawing.Point(31, 160)&lt;br /&gt;
        Me.Label6.Name = &amp;quot;Label6&amp;quot;&lt;br /&gt;
        Me.Label6.Size = New System.Drawing.Size(18, 13)&lt;br /&gt;
        Me.Label6.TabIndex = 52&lt;br /&gt;
        Me.Label6.Text = &amp;quot;Zip&amp;quot;&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        &amp;quot;cboState&lt;br /&gt;
        &amp;quot;&lt;br /&gt;
        Me.cboState.Anchor = System.Windows.Forms.AnchorStyles.Left&lt;br /&gt;
        Me.cboState.FormattingEnabled = True&lt;br /&gt;
        Me.cboState.Location = New System.Drawing.Point(83, 127)&lt;br /&gt;
        Me.cboState.Name = &amp;quot;cboState&amp;quot;&lt;br /&gt;
        Me.cboState.Size = New System.Drawing.Size(48, 21)&lt;br /&gt;
        Me.cboState.TabIndex = 54&lt;br /&gt;
        Me.ttHint.SetToolTip(Me.cboState, &amp;quot;Select the customer&amp;quot;s state.&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(287, 197)&lt;br /&gt;
        Me.Controls.Add(Me.TableLayoutPanel1)&lt;br /&gt;
        Me.Name = &amp;quot;Form1&amp;quot;&lt;br /&gt;
        Me.Text = &amp;quot;UseToolTip&amp;quot;&lt;br /&gt;
        Me.TableLayoutPanel1.ResumeLayout(False)&lt;br /&gt;
        Me.TableLayoutPanel1.PerformLayout()&lt;br /&gt;
        Me.ResumeLayout(False)&lt;br /&gt;
        Me.PerformLayout()&lt;br /&gt;
    End Sub&lt;br /&gt;
    Friend WithEvents ttHint As System.Windows.Forms.ToolTip&lt;br /&gt;
    Friend WithEvents TableLayoutPanel1 As System.Windows.Forms.TableLayoutPanel&lt;br /&gt;
    Friend WithEvents Label1 As System.Windows.Forms.Label&lt;br /&gt;
    Friend WithEvents Label7 As System.Windows.Forms.Label&lt;br /&gt;
    Friend WithEvents Label2 As System.Windows.Forms.Label&lt;br /&gt;
    Friend WithEvents txtFirstName As System.Windows.Forms.TextBox&lt;br /&gt;
    Friend WithEvents txtLastName As System.Windows.Forms.TextBox&lt;br /&gt;
    Friend WithEvents txtStreet As System.Windows.Forms.TextBox&lt;br /&gt;
    Friend WithEvents Label3 As System.Windows.Forms.Label&lt;br /&gt;
    Friend WithEvents txtCity As System.Windows.Forms.TextBox&lt;br /&gt;
    Friend WithEvents txtZip As System.Windows.Forms.TextBox&lt;br /&gt;
    Friend WithEvents Label5 As System.Windows.Forms.Label&lt;br /&gt;
    Friend WithEvents Label8 As System.Windows.Forms.Label&lt;br /&gt;
    Friend WithEvents Label6 As System.Windows.Forms.Label&lt;br /&gt;
    Friend WithEvents cboState As System.Windows.Forms.ruboBox&lt;br /&gt;
End Class&lt;br /&gt;
           &lt;br /&gt;
       &amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>	</entry>

	</feed>