Type | Description |
The BeginUpdate method prevents the control from painting until the EndUpdate method is called.
The following sample prevents control from painting while user adds a new item:
With Rollist1 .BeginUpdate With .Add("New <b>item</b>", 1) .BackColor = vbBlue .ForeColor = vbWhite End With .EndUpdate End With