Tuesday, June 28, 2011
Friday, June 24, 2011
Monday, June 20, 2011
Blogger XML Guide
Layouts Data Tags
As mentioned in the Widget Tags for Layouts article, there are many different tags you can use to include specific pieces of data in your template. They will all be formatted as or , where name is the name of the particular piece of data you want to use. In the name1.name2 example, name2 is a particular item within a set of data called name1, e.g. photo.url.
This is a master list of all such available data. It is divided into sections by page element, because different types of widgets use different data.
Saturday, June 11, 2011
Monday, June 06, 2011
Wednesday, June 01, 2011
VBnet Invoke Listbox Threading in Form
Imports System.Threading
Public Class Form1
Delegate Sub SetText(ByVal tx As String)
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim t As New Thread(AddressOf AddList)
t.Start()
End Sub
Public Class Form1
Delegate Sub SetText(ByVal tx As String)
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim t As New Thread(AddressOf AddList)
t.Start()
End Sub