转至繁体中文版     | 网站首页 | 图文教程 | 资源下载 | 站长博客 | 图片素材 | 武汉seo | 武汉网站优化 | 
最新公告:     敏韬网|教学资源学习资料永久免费分享站!  [mintao  2008年9月2日]        
您现在的位置: 学习笔记 >> 图文教程 >> 软件开发 >> VB.NET程序 >> 正文
用VB.NET写的一个简易的RSS阅读器         ★★★★

用VB.NET写的一个简易的RSS阅读器

作者:闵涛 文章来源:闵涛的学习笔记 点击数:2345 更新时间:2009/4/23 19:00:29

源代码如下:

Imports System.Xml
Imports System.Threading

Public
Class Form1
Inherits System.Windows.Forms.Form
#Region
" Windows 窗体设计器生成的代码 "

Public
Sub New()
MyBase.New()

''''该调用是 Windows 窗体设计器所必需的。
InitializeComponent()

''''在 InitializeComponent() 调用之后添加任何初始化

End Sub

''''窗体重写 dispose 以清理组件列表。
Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
If disposing Then
If Not (components Is Nothing) Then
components.Dispose()
End If
End If
MyBase.Dispose(disposing)
End Sub

''''Windows 窗体设计器所必需的
Private components As System.ComponentModel.IContainer

''''注意: 以下过程是 Windows 窗体设计器所必需的
''''可以使用 Windows 窗体设计器修改此过程。
''''不要使用代码编辑器修改它。
Friend WithEvents ListBox1 As System.Windows.Forms.ListBox
Friend WithEvents Button1 As System.Windows.Forms.Button
Friend WithEvents AxWebBrowser1 As AxSHDocVw.AxWebBrowser
Friend WithEvents Label1 As System.Windows.Forms.Label
Friend WithEvents Label2 As System.Windows.Forms.Label
Friend WithEvents TextBox1 As System.Windows.Forms.TextBox
Friend WithEvents StatusBar1 As System.Windows.Forms.StatusBar
Friend WithEvents Label4 As System.Windows.Forms.Label
<System.Diagnostics.DebuggerStepThrough()>
Private Sub InitializeComponent()
Dim resources As System.Resources.ResourceManager = New System.Resources.ResourceManager(GetType(Form1))
Me.ListBox1 = New System.Windows.Forms.ListBox
Me.Button1 = New System.Windows.Forms.Button
Me.AxWebBrowser1 = New AxSHDocVw.AxWebBrowser
Me.Label1 = New System.Windows.Forms.Label
Me.Label2 = New System.Windows.Forms.Label
Me.TextBox1 = New System.Windows.Forms.TextBox
Me.StatusBar1 = New System.Windows.Forms.StatusBar
Me.Label4 = New System.Windows.Forms.Label
CType(Me.AxWebBrowser1, System.ComponentModel.ISupportInitialize).BeginInit()
Me.SuspendLayout()
''''
''''ListBox1
''''
Me.ListBox1.Location = New System.Drawing.Point(0, 67)
Me.ListBox1.Name =
"ListBox1"
Me.ListBox1.Size = New System.Drawing.Size(727, 108)
Me.ListBox1.TabIndex = 0
''''
''''Button1
''''
Me.Button1.Location = New System.Drawing.Point(633, 5)
Me.Button1.Name =
"Button1"
Me.Button1.Size = New System.Drawing.Size(94, 56)
Me.Button1.TabIndex = 1
Me.Button1.Text =
"读取"
''''
''''AxWebBrowser1
''''
Me.AxWebBrowser1.Enabled = True
Me.AxWebBrowser1.Location = New System.Drawing.Point(0, 193)
Me.AxWebBrowser1.OcxState = CType(resources.GetObject(
"AxWebBrowser1.OcxState"), System.Windows.Forms.AxHost.State)
Me.AxWebBrowser1.Size = New System.Drawing.Size(727, 476)
Me.AxWebBrowser1.TabIndex = 2
''''
''''Label1
''''
Me.Label1.Location = New System.Drawing.Point(8, 26)
Me.Label1.Name =
"Label1"
Me.Label1.Size = New System.Drawing.Size(616, 15)
Me.Label1.TabIndex = 3
Me.Label1.Text =
"网站地址:"
''''
''''Label2
''''
Me.Label2.Location = New System.Drawing.Point(8, 45)
Me.Label2.Name =
"Label2"
Me.Label2.Size = New System.Drawing.Size(616, 14)
Me.Label2.TabIndex = 4
Me.Label2.Text =
"网站描述:"
''''
''''TextBox1
''''
Me.TextBox1.Location = New System.Drawing.Point(88, 0)
Me.TextBox1.Name =
"TextBox1"
Me.TextBox1.Size = New System.Drawing.Size(536, 20)
Me.TextBox1.TabIndex = 6
Me.TextBox1.Text =
"Http://Blog.CSDN.Net/AppleBBS/Rss.aspx"
''''
''''StatusBar1
''''
Me.StatusBar1.Location = New System.Drawing.Point(0, 495)
Me.StatusBar1.Name =
"StatusBar1"
Me.StatusBar1.Size = New System.Drawing.Size(726, 22)
Me.StatusBar1.TabIndex = 7
Me.StatusBar1.Text =
"StatusBar1"
''''
''''Label4
''''
Me.Label4.Location = New System.Drawing.Point(9, 6)
Me.Label4.Name =
"Label4"
Me.Label4.Size = New System.Drawing.Size(70, 12)
Me.Label4.TabIndex = 8
Me.Label4.Text =
"RSS地址:"
Me.Label4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft
''''
''''Form1
''''
Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13)
Me.ClientSize = New System.Drawing.Size(726, 517)
Me.Controls.Add(Me.Label4)
Me.Controls.Add(Me.StatusBar1)
Me.Controls.Add(Me.TextBox1)
Me.Controls.Add(Me.Label2)
Me.Controls.Add(Me.Label1)
Me.Controls.Add(Me.AxWebBrowser1)
Me.Controls.Add(Me.Button1)
Me.Controls.Add(Me.ListBox1)
Me.Name =
"Form1"
Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
Me.Text =
"Easy RSS Reader"
CType(Me.AxWebBrowser1, System.ComponentModel.ISupportInitialize).EndInit()
Me.ResumeLayout(
False)

End Sub

#
End Region
Private thread As Thread ''''定义一个线程
Private Sub loadrss() ''''读取RSS文件并取出内容标题的过程
StatusBar1.Text = "正在读取" & TextBox1.Text & "并效验"
Me.loadxmltocache(TextBox1.Text)
StatusBar1.Text =
"正在读取相关网站信息"
Me.loadtitle()
StatusBar1.Text =
"正在读取相RSS内容项"
Me.loaditem()
StatusBar1.Text =
"完成"
End Sub

[1] [2] [3]  下一页


[聊天工具]RSS阅读器FeedDemon图解教程  [聊天工具]动画教程:学用Foxmail 6.0的RSS功能__天极Yesky
[聊天工具]Foxmail 6.0 Beta1发布!加入RSS阅读器  [常用软件]省事省心,看我BT、RSS双剑合璧
[常用软件]IE7 Build 5299 RSS新功能抢先看  [Delphi程序]RSS 与 blog 阅读器:什么是 RSS 与 Atom ?
[Delphi程序]Delphi的RSS开源项目正式启动了!  [网页制作]RSS 开发教程
[网页制作]RSS 2.0 规范[翻译]  [Web开发]用 Ajax 和 RSS 攒个首页新闻
教程录入:mintao    责任编辑:mintao 
  • 上一篇教程:

  • 下一篇教程:
  • 【字体: 】【发表评论】【加入收藏】【告诉好友】【打印此文】【关闭窗口
      注:本站部分文章源于互联网,版权归原作者所有!如有侵权,请原作者与本站联系,本站将立即删除! 本站文章除特别注明外均可转载,但需注明出处! [MinTao学以致用网]
      网友评论:(只显示最新10条。评论内容只代表网友观点,与本站立场无关!)

    同类栏目
    · C语言系列  · VB.NET程序
    · JAVA开发  · Delphi程序
    · 脚本语言
    更多内容
    热门推荐 更多内容
  • 没有教程
  • 赞助链接
    更多内容
    闵涛博文 更多关于武汉SEO的内容
    500 - 内部服务器错误。

    500 - 内部服务器错误。

    您查找的资源存在问题,因而无法显示。

    | 设为首页 |加入收藏 | 联系站长 | 友情链接 | 版权申明 | 广告服务
    MinTao学以致用网

    Copyright @ 2007-2012 敏韬网(敏而好学,文韬武略--MinTao.Net)(学习笔记) Inc All Rights Reserved.
    闵涛 投放广告、内容合作请Q我! E_mail:admin@mintao.net(欢迎提供学习资源)

    站长:MinTao ICP备案号:鄂ICP备11006601号-18

    闵涛站盟:医药大全-武穴网A打造BCD……
    咸宁网络警察报警平台