Hi again.. Today, I'm going to present you a very useful piece of code, using VB6. That is, the code for fast shuffling of an array. The method used in here is called Knuth shuffle Public Sub ShuffleArray(pvarArray As Variant) Dim i As Long Dim iMin As Long Dim iMax As Long Dim lngReplace As Long Dim ...