<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ru">
		<id>http://nfex.ru/index.php?action=history&amp;feed=atom&amp;title=Csharp%2FCSharp_Tutorial%2FWindows%2FRegistry_Read</id>
		<title>Csharp/CSharp Tutorial/Windows/Registry Read - История изменений</title>
		<link rel="self" type="application/atom+xml" href="http://nfex.ru/index.php?action=history&amp;feed=atom&amp;title=Csharp%2FCSharp_Tutorial%2FWindows%2FRegistry_Read"/>
		<link rel="alternate" type="text/html" href="http://nfex.ru/index.php?title=Csharp/CSharp_Tutorial/Windows/Registry_Read&amp;action=history"/>
		<updated>2026-04-29T17:46:57Z</updated>
		<subtitle>История изменений этой страницы в вики</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>http://nfex.ru/index.php?title=Csharp/CSharp_Tutorial/Windows/Registry_Read&amp;diff=6702&amp;oldid=prev</id>
		<title> в 15:31, 26 мая 2010</title>
		<link rel="alternate" type="text/html" href="http://nfex.ru/index.php?title=Csharp/CSharp_Tutorial/Windows/Registry_Read&amp;diff=6702&amp;oldid=prev"/>
				<updated>2010-05-26T15:31:53Z</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;Версия 15:31, 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://nfex.ru/index.php?title=Csharp/CSharp_Tutorial/Windows/Registry_Read&amp;diff=6703&amp;oldid=prev</id>
		<title>Admin: 1 версия</title>
		<link rel="alternate" type="text/html" href="http://nfex.ru/index.php?title=Csharp/CSharp_Tutorial/Windows/Registry_Read&amp;diff=6703&amp;oldid=prev"/>
				<updated>2010-05-26T12:20:16Z</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;==Get int value from Registry==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt;using System;&lt;br /&gt;
using Microsoft.Win32;&lt;br /&gt;
class MainClass&lt;br /&gt;
{&lt;br /&gt;
    public static void Main(String[] args)&lt;br /&gt;
    {&lt;br /&gt;
        int Count = (Int32)Registry.GetValue(&lt;br /&gt;
                @&amp;quot;HKEY_CURRENT_USER\Software\CompanyName\SoftwareName&amp;quot;,&lt;br /&gt;
                &amp;quot;Count&amp;quot;, 0); // 0 is the default value&lt;br /&gt;
    }&lt;br /&gt;
}&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Get Registry values with default==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt;using System;&lt;br /&gt;
using System.Drawing;&lt;br /&gt;
using System.Collections;&lt;br /&gt;
using System.ruponentModel;&lt;br /&gt;
using System.Windows.Forms;&lt;br /&gt;
using System.Data;&lt;br /&gt;
using Microsoft.Win32;&lt;br /&gt;
using System.Diagnostics;&lt;br /&gt;
public class MainClass{&lt;br /&gt;
   public static void Main(){&lt;br /&gt;
    RegistryKey regKey = Registry.CurrentUser;&lt;br /&gt;
    regKey = regKey.CreateSubKey(&amp;quot;Software\\YourCompanyName\\SubDomainName&amp;quot;);&lt;br /&gt;
    int currFontSize = (int)regKey.GetValue(&amp;quot;CurrSize&amp;quot;, 12);&lt;br /&gt;
    string c = (string)regKey.GetValue(&amp;quot;CurrColor&amp;quot;, &amp;quot;defaultName&amp;quot;);&lt;br /&gt;
    &lt;br /&gt;
   }&lt;br /&gt;
}&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Loop through all subkeys contained in the current key==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt;using System;&lt;br /&gt;
using Microsoft.Win32;&lt;br /&gt;
class MainClass&lt;br /&gt;
{&lt;br /&gt;
    public static void SearchSubKeys(RegistryKey root, String searchKey)&lt;br /&gt;
    {&lt;br /&gt;
        &lt;br /&gt;
        foreach (string keyname in root.GetSubKeyNames())&lt;br /&gt;
        {&lt;br /&gt;
            try&lt;br /&gt;
            {&lt;br /&gt;
                using (RegistryKey key = root.OpenSubKey(keyname))&lt;br /&gt;
                {&lt;br /&gt;
                    if (keyname == searchKey) &lt;br /&gt;
                        Console.WriteLine(&amp;quot;Registry key found : {0} contains {1} values&amp;quot;,&lt;br /&gt;
                            key.Name, key.ValueCount);&lt;br /&gt;
                       &lt;br /&gt;
                    SearchSubKeys(key, searchKey);&lt;br /&gt;
                }&lt;br /&gt;
            }&lt;br /&gt;
            catch (System.Security.SecurityException)&lt;br /&gt;
            {&lt;br /&gt;
            }&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
    public static void Main(String[] args)&lt;br /&gt;
    {&lt;br /&gt;
        using (RegistryKey root = Registry.CurrentUser)&lt;br /&gt;
        {&lt;br /&gt;
            string myKey=&amp;quot;Java&amp;quot;;&lt;br /&gt;
            SearchSubKeys(root, myKey);&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
}&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Loop through the values inside a key and display==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt;using System;&lt;br /&gt;
using Microsoft.Win32;&lt;br /&gt;
class MainClass&lt;br /&gt;
{&lt;br /&gt;
    public static void SearchSubKeys(RegistryKey root, String searchKey)&lt;br /&gt;
    {&lt;br /&gt;
        foreach (string keyname in root.GetSubKeyNames())&lt;br /&gt;
        {&lt;br /&gt;
            try&lt;br /&gt;
            {&lt;br /&gt;
                using (RegistryKey key = root.OpenSubKey(keyname))&lt;br /&gt;
                {&lt;br /&gt;
                    if (keyname == searchKey) {&lt;br /&gt;
                        foreach (string valuename in key.GetValueNames())&lt;br /&gt;
                        {&lt;br /&gt;
                            if (key.GetValue(valuename) is String)&lt;br /&gt;
                            {&lt;br /&gt;
                                Console.WriteLine(&amp;quot;  Value : {0} = {1}&amp;quot;,&lt;br /&gt;
                                    valuename, key.GetValue(valuename));&lt;br /&gt;
                            }&lt;br /&gt;
                        }&lt;br /&gt;
                    }&lt;br /&gt;
                    SearchSubKeys(key, searchKey);&lt;br /&gt;
                }&lt;br /&gt;
            }&lt;br /&gt;
            catch (System.Security.SecurityException)&lt;br /&gt;
            {&lt;br /&gt;
            }&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
    public static void Main(String[] args)&lt;br /&gt;
    {&lt;br /&gt;
        using (RegistryKey root = Registry.CurrentUser)&lt;br /&gt;
        {&lt;br /&gt;
            string myKey=&amp;quot;Java&amp;quot;;&lt;br /&gt;
            SearchSubKeys(root, myKey);&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
}&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Registry Tree==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt;using System;&lt;br /&gt;
using System.Drawing;&lt;br /&gt;
using System.Collections;&lt;br /&gt;
using System.ruponentModel;&lt;br /&gt;
using System.Windows.Forms;&lt;br /&gt;
using System.Data;&lt;br /&gt;
using Microsoft.Win32;&lt;br /&gt;
  public class RegistryBrowser : System.Windows.Forms.Form&lt;br /&gt;
  {&lt;br /&gt;
    private System.Windows.Forms.TreeView tvRegistry;&lt;br /&gt;
    private System.Windows.Forms.ImageList ilTreeImages;&lt;br /&gt;
    public RegistryBrowser()&lt;br /&gt;
    {&lt;br /&gt;
      InitializeComponent();&lt;br /&gt;
      RootNodes();&lt;br /&gt;
    }&lt;br /&gt;
    private void InitializeComponent()&lt;br /&gt;
    {&lt;br /&gt;
      this.tvRegistry = new System.Windows.Forms.TreeView();&lt;br /&gt;
      this.ilTreeImages = new System.Windows.Forms.ImageList();&lt;br /&gt;
      this.SuspendLayout();&lt;br /&gt;
      // &lt;br /&gt;
      // tvRegistry&lt;br /&gt;
      // &lt;br /&gt;
      this.tvRegistry.Dock = System.Windows.Forms.DockStyle.Fill;&lt;br /&gt;
      this.tvRegistry.Name = &amp;quot;tvRegistry&amp;quot;;&lt;br /&gt;
      this.tvRegistry.Size = new System.Drawing.Size(392, 333);&lt;br /&gt;
      this.tvRegistry.TabIndex = 0;&lt;br /&gt;
      this.tvRegistry.BeforeExpand += new System.Windows.Forms.TreeViewCancelEventHandler(this.tvRegistry_BeforeExpand);&lt;br /&gt;
      // &lt;br /&gt;
      // ilTreeImages&lt;br /&gt;
      // &lt;br /&gt;
      this.ilTreeImages.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;&lt;br /&gt;
      this.ilTreeImages.TransparentColor = System.Drawing.Color.Transparent;&lt;br /&gt;
      // &lt;br /&gt;
      // RegistryBrowser&lt;br /&gt;
      // &lt;br /&gt;
      this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);&lt;br /&gt;
      this.ClientSize = new System.Drawing.Size(392, 333);&lt;br /&gt;
      this.Controls.AddRange(new System.Windows.Forms.Control[] {&lt;br /&gt;
                                      this.tvRegistry});&lt;br /&gt;
      this.Name = &amp;quot;RegistryBrowser&amp;quot;;&lt;br /&gt;
      this.Text = &amp;quot;Registry Browser&amp;quot;;&lt;br /&gt;
      this.ResumeLayout(false);&lt;br /&gt;
    }&lt;br /&gt;
    static void Main() &lt;br /&gt;
    {&lt;br /&gt;
      Application.Run(new RegistryBrowser());&lt;br /&gt;
    }&lt;br /&gt;
    private void tvRegistry_BeforeExpand(object sender, System.Windows.Forms.TreeViewCancelEventArgs e)&lt;br /&gt;
    {&lt;br /&gt;
      tvRegistry.BeginUpdate();&lt;br /&gt;
      foreach (TreeNode tn in e.Node.Nodes)&lt;br /&gt;
      {&lt;br /&gt;
        AddBranch(tn);&lt;br /&gt;
      }&lt;br /&gt;
      tvRegistry.EndUpdate();&lt;br /&gt;
    }&lt;br /&gt;
    public void AddBranch(TreeNode tn)&lt;br /&gt;
    {&lt;br /&gt;
      tn.Nodes.Clear();&lt;br /&gt;
      string strRegistryPath = tn.FullPath;&lt;br /&gt;
      RegistryKey regBranch = null;&lt;br /&gt;
      if (strRegistryPath.StartsWith(&amp;quot;HKEY_CLASSES_ROOT&amp;quot;))&lt;br /&gt;
        regBranch = Registry.ClassesRoot;&lt;br /&gt;
      else if (strRegistryPath.StartsWith(&amp;quot;HKEY_CURRENT_USER&amp;quot;))&lt;br /&gt;
        regBranch = Registry.CurrentUser;&lt;br /&gt;
      else if (strRegistryPath.StartsWith(&amp;quot;HKEY_LOCAL_MACHINE&amp;quot;))&lt;br /&gt;
        regBranch = Registry.LocalMachine;&lt;br /&gt;
        else if (strRegistryPath.StartsWith(&amp;quot;HKEY_USERS&amp;quot;))&lt;br /&gt;
        regBranch = Registry.Users;&lt;br /&gt;
      RegistryKey regSubKey = null;&lt;br /&gt;
      try&lt;br /&gt;
      {&lt;br /&gt;
        if (null != tn.Parent)&lt;br /&gt;
        {&lt;br /&gt;
          // we need the path minus the top level tree&lt;br /&gt;
          int nPosPathSeparator = strRegistryPath.IndexOf(this.tvRegistry.PathSeparator);&lt;br /&gt;
          string strSubkey = strRegistryPath.Substring(nPosPathSeparator+1);&lt;br /&gt;
          regSubKey = regBranch.OpenSubKey(strSubkey);&lt;br /&gt;
        }&lt;br /&gt;
        else&lt;br /&gt;
          regSubKey = regBranch;&lt;br /&gt;
      }&lt;br /&gt;
      catch&lt;br /&gt;
      {&lt;br /&gt;
        return;&lt;br /&gt;
      }&lt;br /&gt;
      string[] astrSubkeyNames = regSubKey.GetSubKeyNames();&lt;br /&gt;
      for (int i=0; i &amp;lt; astrSubkeyNames.Length; i++)&lt;br /&gt;
      {&lt;br /&gt;
        TreeNode tnBranch = new TreeNode(astrSubkeyNames[i],0,1);&lt;br /&gt;
        tn.Nodes.Add(tnBranch);&lt;br /&gt;
      }&lt;br /&gt;
    }&lt;br /&gt;
    public void RootNodes()&lt;br /&gt;
    {&lt;br /&gt;
      tvRegistry.BeginUpdate();&lt;br /&gt;
      TreeNode tnHKCR = new TreeNode(&amp;quot;HKEY_CLASSES_ROOT&amp;quot;,0,1);&lt;br /&gt;
      tvRegistry.Nodes.Add(tnHKCR);&lt;br /&gt;
      AddBranch(tnHKCR);&lt;br /&gt;
      TreeNode tnHKCU = new TreeNode(&amp;quot;HKEY_CURRENT_USER&amp;quot;,0,1);&lt;br /&gt;
      tvRegistry.Nodes.Add(tnHKCU);&lt;br /&gt;
      AddBranch(tnHKCU);&lt;br /&gt;
      TreeNode tnHKLM = new TreeNode(&amp;quot;HKEY_LOCAL_MACHINE&amp;quot;,0,1);&lt;br /&gt;
      tvRegistry.Nodes.Add(tnHKLM);&lt;br /&gt;
      AddBranch(tnHKLM);&lt;br /&gt;
      TreeNode tnHKU = new TreeNode(&amp;quot;HKEY_USERS&amp;quot;,0,1);&lt;br /&gt;
      tvRegistry.Nodes.Add(tnHKU);&lt;br /&gt;
      AddBranch(tnHKU);&lt;br /&gt;
      tvRegistry.SelectedNode = tnHKLM;&lt;br /&gt;
      tvRegistry.EndUpdate();&lt;br /&gt;
    }&lt;br /&gt;
  }&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Registry Tree With Class==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt;using System;&lt;br /&gt;
using System.Drawing;&lt;br /&gt;
using System.IO;&lt;br /&gt;
using System.Windows.Forms;&lt;br /&gt;
using Microsoft.Win32;&lt;br /&gt;
  public class RegistryTreeClass: TreeView&lt;br /&gt;
  {&lt;br /&gt;
    public RegistryTreeClass()&lt;br /&gt;
    {&lt;br /&gt;
      ImageList = new ImageList();&lt;br /&gt;
      ImageList.Images.Add(new Bitmap(GetType(), &amp;quot;CLOSED.BMP&amp;quot;));&lt;br /&gt;
      ImageList.Images.Add(new Bitmap(GetType(), &amp;quot;OPEN.BMP&amp;quot;));&lt;br /&gt;
      RootNodes();&lt;br /&gt;
    }&lt;br /&gt;
    protected override void OnBeforeExpand(TreeViewCancelEventArgs e)&lt;br /&gt;
    {&lt;br /&gt;
      base.OnBeforeExpand(e);&lt;br /&gt;
      BeginUpdate();&lt;br /&gt;
      foreach (TreeNode tn in e.Node.Nodes)&lt;br /&gt;
      {&lt;br /&gt;
        AddBranch(tn);&lt;br /&gt;
      }&lt;br /&gt;
      EndUpdate();&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    public void RootNodes()&lt;br /&gt;
    {&lt;br /&gt;
      BeginUpdate();&lt;br /&gt;
      TreeNode tnHKCR = new TreeNode(&amp;quot;HKEY_CLASSES_ROOT&amp;quot;,0,1);&lt;br /&gt;
      Nodes.Add(tnHKCR);&lt;br /&gt;
      AddBranch(tnHKCR);&lt;br /&gt;
      TreeNode tnHKCU = new TreeNode(&amp;quot;HKEY_CURRENT_USER&amp;quot;,0,1);&lt;br /&gt;
      Nodes.Add(tnHKCU);&lt;br /&gt;
      AddBranch(tnHKCU);&lt;br /&gt;
      TreeNode tnHKLM = new TreeNode(&amp;quot;HKEY_LOCAL_MACHINE&amp;quot;,0,1);&lt;br /&gt;
      Nodes.Add(tnHKLM);&lt;br /&gt;
      AddBranch(tnHKLM);&lt;br /&gt;
      TreeNode tnHKU = new TreeNode(&amp;quot;HKEY_USERS&amp;quot;,0,1);&lt;br /&gt;
      Nodes.Add(tnHKU);&lt;br /&gt;
      AddBranch(tnHKU);&lt;br /&gt;
      SelectedNode = tnHKLM;&lt;br /&gt;
      EndUpdate();&lt;br /&gt;
    }&lt;br /&gt;
    public void AddBranch(TreeNode tn)&lt;br /&gt;
    {&lt;br /&gt;
      if (tn.Nodes.Count &amp;gt; 0) return;&lt;br /&gt;
      string strRegistryPath = tn.FullPath;&lt;br /&gt;
      RegistryKey regBranch = null;&lt;br /&gt;
      if (strRegistryPath.StartsWith(&amp;quot;HKEY_CLASSES_ROOT&amp;quot;))&lt;br /&gt;
        regBranch = Registry.ClassesRoot;&lt;br /&gt;
      else if (strRegistryPath.StartsWith(&amp;quot;HKEY_CURRENT_USER&amp;quot;))&lt;br /&gt;
        regBranch = Registry.CurrentUser;&lt;br /&gt;
      else if (strRegistryPath.StartsWith(&amp;quot;HKEY_LOCAL_MACHINE&amp;quot;))&lt;br /&gt;
        regBranch = Registry.LocalMachine;&lt;br /&gt;
      else if (strRegistryPath.StartsWith(&amp;quot;HKEY_USERS&amp;quot;))&lt;br /&gt;
        regBranch = Registry.Users;&lt;br /&gt;
      RegistryKey regSubKey = null;&lt;br /&gt;
      try&lt;br /&gt;
      {&lt;br /&gt;
        if (null != tn.Parent)&lt;br /&gt;
        {&lt;br /&gt;
          // We need the path minus the top level tree.&lt;br /&gt;
          int nPosPathSeparator = strRegistryPath.IndexOf(this.PathSeparator);&lt;br /&gt;
          string strSubkey = strRegistryPath.Substring(nPosPathSeparator+1);&lt;br /&gt;
          regSubKey = regBranch.OpenSubKey(strSubkey);&lt;br /&gt;
        }&lt;br /&gt;
        else&lt;br /&gt;
          regSubKey = regBranch;&lt;br /&gt;
      }&lt;br /&gt;
      catch&lt;br /&gt;
      {&lt;br /&gt;
        return;&lt;br /&gt;
      }&lt;br /&gt;
      string[] astrSubkeyNames = regSubKey.GetSubKeyNames();&lt;br /&gt;
      for (int i=0; i &amp;lt; astrSubkeyNames.Length; i++)&lt;br /&gt;
      {&lt;br /&gt;
        TreeNode tnBranch = new TreeNode(astrSubkeyNames[i],0,1);&lt;br /&gt;
        tn.Nodes.Add(tnBranch);&lt;br /&gt;
      }&lt;br /&gt;
    }&lt;br /&gt;
  }&lt;br /&gt;
  public class MainForm : System.Windows.Forms.Form&lt;br /&gt;
  {&lt;br /&gt;
    private RegistryTreeClass rtvRegistry;&lt;br /&gt;
    public MainForm()&lt;br /&gt;
    {&lt;br /&gt;
      InitializeComponent();&lt;br /&gt;
      this.rtvRegistry = new RegistryTreeClass();&lt;br /&gt;
      this.SuspendLayout();&lt;br /&gt;
      this.rtvRegistry.Dock = System.Windows.Forms.DockStyle.Fill;&lt;br /&gt;
      this.rtvRegistry.ImageIndex = -1;&lt;br /&gt;
      this.rtvRegistry.Name = &amp;quot;rtvRegistry&amp;quot;;&lt;br /&gt;
      this.rtvRegistry.SelectedImageIndex = -1;&lt;br /&gt;
      this.rtvRegistry.Size = new System.Drawing.Size(292, 273);&lt;br /&gt;
      this.rtvRegistry.TabIndex = 0;&lt;br /&gt;
      this.Controls.AddRange(new System.Windows.Forms.Control[] {&lt;br /&gt;
                                      this.rtvRegistry});&lt;br /&gt;
      this.ResumeLayout(false);&lt;br /&gt;
    }&lt;br /&gt;
    private void InitializeComponent()&lt;br /&gt;
    {&lt;br /&gt;
      this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);&lt;br /&gt;
      this.ClientSize = new System.Drawing.Size(292, 273);&lt;br /&gt;
      this.Name = &amp;quot;MainForm&amp;quot;;&lt;br /&gt;
      this.Text = &amp;quot;Registry with class&amp;quot;;&lt;br /&gt;
      this.Load += new System.EventHandler(this.Form1_Load);&lt;br /&gt;
    }&lt;br /&gt;
    static void Main() &lt;br /&gt;
    {&lt;br /&gt;
      Application.Run(new MainForm());&lt;br /&gt;
    }&lt;br /&gt;
    private void Form1_Load(object sender, System.EventArgs e)&lt;br /&gt;
    {&lt;br /&gt;
    &lt;br /&gt;
    }&lt;br /&gt;
  }&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>	</entry>

	</feed>