A
Anil Gupte
I am using the following code:
URLListBox.BeginUpdate()
URLListBox.DataSource = DSContent '.Tables("ContentSites")
URLListBox.DisplayMember = "ContentSites.SiteName"
URLListBox.ValueMember = "ContentSites.URL"
URLListBox.EndUpdate()
The program execution insistis on going to the Sub
URLListBox_SelectedIndexChanged after the 2nd line (URLListBox.DataSource
=...) It does this for each item in the DataSet. Isn't this exactly what
BeginUpdate is supposed to prevent?
Thanx,
URLListBox.BeginUpdate()
URLListBox.DataSource = DSContent '.Tables("ContentSites")
URLListBox.DisplayMember = "ContentSites.SiteName"
URLListBox.ValueMember = "ContentSites.URL"
URLListBox.EndUpdate()
The program execution insistis on going to the Sub
URLListBox_SelectedIndexChanged after the 2nd line (URLListBox.DataSource
=...) It does this for each item in the DataSet. Isn't this exactly what
BeginUpdate is supposed to prevent?
Thanx,