I am using the following code:
URLListBox.Begi nUpdate()
URLListBox.Data Source = DSContent '.Tables("Conte ntSites")
URLListBox.Disp layMember = "ContentSites.S iteName"
URLListBox.Valu eMember = "ContentSites.U RL"
URLListBox.EndU pdate()
The program execution insistis on going to the Sub
URLListBox_Sele ctedIndexChange d after the 2nd line (URLListBox.Dat aSource
=...) It does this for each item in the DataSet. Isn't this exactly what
BeginUpdate is supposed to prevent?
Thanx,
--
Anil Gupte
URLListBox.Begi nUpdate()
URLListBox.Data Source = DSContent '.Tables("Conte ntSites")
URLListBox.Disp layMember = "ContentSites.S iteName"
URLListBox.Valu eMember = "ContentSites.U RL"
URLListBox.EndU pdate()
The program execution insistis on going to the Sub
URLListBox_Sele ctedIndexChange d after the 2nd line (URLListBox.Dat aSource
=...) It does this for each item in the DataSet. Isn't this exactly what
BeginUpdate is supposed to prevent?
Thanx,
--
Anil Gupte
Comment