Download the code.
Important: You must add the ADO .NET objects using the database in your own environment and bind them to the form components as described in the article. Database objects are not included in the download.
Public Class Form1
Inherits System.Windows.Forms.Form
#Region " Windows Form Designer generated code "
Private Sub Form1_Load( _
ByVal sender As System.Object, _
ByVal e As System.EventArgs) _
Handles MyBase.Load
Me.OleDbDataAdapter1.Fill(Me.DataSet11)
lblDesc_TextChanged(sender, e)
End Sub
Private Sub lblDesc_TextChanged( _
ByVal sender As Object, _
ByVal e As System.EventArgs) _
Handles lblDesc.TextChanged
lblDate.Text = _
Microsoft.VisualBasic.Left( _
lblDate.Text, InStr(1, lblDate.Text, " "))
lblURL.Text = _
System.Web.RegularExpressions.TextRegex.Replace( _
lblURL.Text, "#", "")
End Sub
End Class
First page >
Put Wizards On Your Side > Page
1,
2,
3,
4,
5,
6