Quote Originally Posted by oldmcgroin
yeah i tried that and it worked but its more time consuming, . i just wanted to know why it happened and if it had a happened to anyone else and if there was a way to fix it.

If you are adding sequential numbers you can try this:

VB Code:
  1. Private Sub Form_Load()
  2. Dim a as Long
  3.     With Me.List1
  4.         For a = 1 to 100
  5.                .AddItem a
  6.         Next a
  7.     End With
  8. End Sub